diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..0faf6850d6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +{ + "context": "..", + + "build": { + "dockerfile": "../Dockerfile", + "target": "develop" + } +} diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index ab3f7b5432..0000000000 --- a/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "./node_modules/terriajs/.eslintrc" -} diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000000..beb62b35c6 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,5 @@ +"use strict"; + +module.exports = { + extends: "./node_modules/terriajs/.eslintrc.js" +}; diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..af6ae7057d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x, 22.x, 24.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: rm -rf node_modules && yarn install --frozen-lockfile + - run: yarn gulp lint release + env: + NODE_OPTIONS: "--max_old_space_size=4096" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..e717212f76 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,49 @@ +name: Release + +on: + release: + types: [published] + workflow_dispatch: + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +permissions: + packages: write + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to GHCR + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Tag image + id: meta + uses: docker/metadata-action@v3 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=semver,pattern={{version}} + + - name: Build and push + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64,linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + push: true diff --git a/.gitignore b/.gitignore index ca012eda8e..f124f4ef24 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,10 @@ node_modules/ .idea/ wwwroot/build/ wwwroot/doc/ +wwwroot/index.html npm-debug.log version.js +version.json wwwroot/init/nm.json datasources/00_National_Data_Sets.json .DS_Store @@ -21,3 +23,9 @@ wwwroot/privateconfig.json deploy/packages/ deploy/work/ packages/ +pancake/ +yarn-error.log +.npmrc + +package-lock.json +.nvmrc diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000000..0da96d6baa --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npx pretty-quick --staged diff --git a/.prettierignore b/.prettierignore index ca3832430d..ad595cfdd3 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,10 +1,45 @@ -# Ignore everything -* - -# Unignore directories (to all depths) and unignore code and style files -!lib/**/ -!lib/**/*.js -!lib/**/*.jsx -!lib/**/*.ts -!lib/**/*.tsx -!lib/**/*.scss +# ===================== +# From .gitignore. Update this list when .gitignore changes +node_modules/ +.idea/ +wwwroot/build/ +wwwroot/doc/ +wwwroot/index.html +npm-debug.log +version.js +wwwroot/init/nm.json +datasources/00_National_Data_Sets.json +.DS_Store +.localized +.sass-cache +/terriajs.pid +/terriajs-server.log + +/wwwroot/editor/ +/error.log +/error.log +/output.log +privateserverconfig.json +wwwroot/privateconfig.json +deploy/packages/ +deploy/work/ +packages/ +pancake/ +yarn-error.log + +package-lock.json + +# End of .gitignore copy +# ===================== + +# Generated files +yarn.lock +.yarn/releases/ + +# wwwroot +wwwroot/public/ +wwwroot/*.html + + +ckanext-cesiumpreview +deploy/helm/terria/charts/terriamap/templates/ \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000000..36b356317b --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "trailingComma": "none" +} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eba061e77d..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: node_js -node_js: -- '8' -install: -- npm ci -script: -- gulp lint release -env: -- NODE_OPTIONS=--max_old_space_size=2048 diff --git a/.yarn/releases/yarn-1.22.22.js b/.yarn/releases/yarn-1.22.22.js new file mode 100755 index 0000000000..3ff8687a11 --- /dev/null +++ b/.yarn/releases/yarn-1.22.22.js @@ -0,0 +1,148049 @@ +#!/usr/bin/env node +module.exports = +/******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; +/******/ +/******/ // The require function +/******/ function __webpack_require__(moduleId) { +/******/ +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) { +/******/ return installedModules[moduleId].exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ i: moduleId, +/******/ l: false, +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); +/******/ +/******/ // Flag the module as loaded +/******/ module.l = true; +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/******/ +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; +/******/ +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; +/******/ +/******/ // identity function for calling harmony imports with the correct context +/******/ __webpack_require__.i = function(value) { return value; }; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { +/******/ configurable: false, +/******/ enumerable: true, +/******/ get: getter +/******/ }); +/******/ } +/******/ }; +/******/ +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __webpack_require__.n = function(module) { +/******/ var getter = module && module.__esModule ? +/******/ function getDefault() { return module['default']; } : +/******/ function getModuleExports() { return module; }; +/******/ __webpack_require__.d(getter, 'a', getter); +/******/ return getter; +/******/ }; +/******/ +/******/ // Object.prototype.hasOwnProperty.call +/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; +/******/ +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; +/******/ +/******/ // Load entry module and return exports +/******/ return __webpack_require__(__webpack_require__.s = 517); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, exports) { + +module.exports = require("path"); + +/***/ }), +/* 1 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["a"] = __extends; +/* unused harmony export __assign */ +/* unused harmony export __rest */ +/* unused harmony export __decorate */ +/* unused harmony export __param */ +/* unused harmony export __metadata */ +/* unused harmony export __awaiter */ +/* unused harmony export __generator */ +/* unused harmony export __exportStar */ +/* unused harmony export __values */ +/* unused harmony export __read */ +/* unused harmony export __spread */ +/* unused harmony export __await */ +/* unused harmony export __asyncGenerator */ +/* unused harmony export __asyncDelegator */ +/* unused harmony export __asyncValues */ +/* unused harmony export __makeTemplateObject */ +/* unused harmony export __importStar */ +/* unused harmony export __importDefault */ +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at http://www.apache.org/licenses/LICENSE-2.0 + +THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +MERCHANTABLITY OR NON-INFRINGEMENT. + +See the Apache Version 2.0 License for specific language governing permissions +and limitations under the License. +***************************************************************************** */ +/* global Reflect, Promise */ + +var extendStatics = function(d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return extendStatics(d, b); +}; + +function __extends(d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +} + +var __assign = function() { + __assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + } + return __assign.apply(this, arguments); +} + +function __rest(s, e) { + var t = {}; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) + t[p] = s[p]; + if (s != null && typeof Object.getOwnPropertySymbols === "function") + for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) + t[p[i]] = s[p[i]]; + return t; +} + +function __decorate(decorators, target, key, desc) { + var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; + if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); + else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; + return c > 3 && r && Object.defineProperty(target, key, r), r; +} + +function __param(paramIndex, decorator) { + return function (target, key) { decorator(target, key, paramIndex); } +} + +function __metadata(metadataKey, metadataValue) { + if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); +} + +function __awaiter(thisArg, _arguments, P, generator) { + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +} + +function __generator(thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +} + +function __exportStar(m, exports) { + for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; +} + +function __values(o) { + var m = typeof Symbol === "function" && o[Symbol.iterator], i = 0; + if (m) return m.call(o); + return { + next: function () { + if (o && i >= o.length) o = void 0; + return { value: o && o[i++], done: !o }; + } + }; +} + +function __read(o, n) { + var m = typeof Symbol === "function" && o[Symbol.iterator]; + if (!m) return o; + var i = m.call(o), r, ar = [], e; + try { + while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); + } + catch (error) { e = { error: error }; } + finally { + try { + if (r && !r.done && (m = i["return"])) m.call(i); + } + finally { if (e) throw e.error; } + } + return ar; +} + +function __spread() { + for (var ar = [], i = 0; i < arguments.length; i++) + ar = ar.concat(__read(arguments[i])); + return ar; +} + +function __await(v) { + return this instanceof __await ? (this.v = v, this) : new __await(v); +} + +function __asyncGenerator(thisArg, _arguments, generator) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var g = generator.apply(thisArg, _arguments || []), i, q = []; + return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; + function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } + function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } + function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } + function fulfill(value) { resume("next", value); } + function reject(value) { resume("throw", value); } + function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } +} + +function __asyncDelegator(o) { + var i, p; + return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; + function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } +} + +function __asyncValues(o) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var m = o[Symbol.asyncIterator], i; + return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); + function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } + function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } +} + +function __makeTemplateObject(cooked, raw) { + if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } + return cooked; +}; + +function __importStar(mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result.default = mod; + return result; +} + +function __importDefault(mod) { + return (mod && mod.__esModule) ? mod : { default: mod }; +} + + +/***/ }), +/* 2 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +exports.__esModule = true; + +var _promise = __webpack_require__(224); + +var _promise2 = _interopRequireDefault(_promise); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +exports.default = function (fn) { + return function () { + var gen = fn.apply(this, arguments); + return new _promise2.default(function (resolve, reject) { + function step(key, arg) { + try { + var info = gen[key](arg); + var value = info.value; + } catch (error) { + reject(error); + return; + } + + if (info.done) { + resolve(value); + } else { + return _promise2.default.resolve(value).then(function (value) { + step("next", value); + }, function (err) { + step("throw", err); + }); + } + } + + return step("next"); + }); + }; +}; + +/***/ }), +/* 3 */ +/***/ (function(module, exports) { + +module.exports = require("util"); + +/***/ }), +/* 4 */ +/***/ (function(module, exports) { + +module.exports = require("fs"); + +/***/ }), +/* 5 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getFirstSuitableFolder = exports.readFirstAvailableStream = exports.makeTempDir = exports.hardlinksWork = exports.writeFilePreservingEol = exports.getFileSizeOnDisk = exports.walk = exports.symlink = exports.find = exports.readJsonAndFile = exports.readJson = exports.readFileAny = exports.hardlinkBulk = exports.copyBulk = exports.unlink = exports.glob = exports.link = exports.chmod = exports.lstat = exports.exists = exports.mkdirp = exports.stat = exports.access = exports.rename = exports.readdir = exports.realpath = exports.readlink = exports.writeFile = exports.open = exports.readFileBuffer = exports.lockQueue = exports.constants = undefined; + +var _asyncToGenerator2; + +function _load_asyncToGenerator() { + return _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(2)); +} + +let buildActionsForCopy = (() => { + var _ref = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (queue, events, possibleExtraneous, reporter) { + + // + let build = (() => { + var _ref5 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (data) { + const src = data.src, + dest = data.dest, + type = data.type; + + const onFresh = data.onFresh || noop; + const onDone = data.onDone || noop; + + // TODO https://github.com/yarnpkg/yarn/issues/3751 + // related to bundled dependencies handling + if (files.has(dest.toLowerCase())) { + reporter.verbose(`The case-insensitive file ${dest} shouldn't be copied twice in one bulk copy`); + } else { + files.add(dest.toLowerCase()); + } + + if (type === 'symlink') { + yield mkdirp((_path || _load_path()).default.dirname(dest)); + onFresh(); + actions.symlink.push({ + dest, + linkname: src + }); + onDone(); + return; + } + + if (events.ignoreBasenames.indexOf((_path || _load_path()).default.basename(src)) >= 0) { + // ignored file + return; + } + + const srcStat = yield lstat(src); + let srcFiles; + + if (srcStat.isDirectory()) { + srcFiles = yield readdir(src); + } + + let destStat; + try { + // try accessing the destination + destStat = yield lstat(dest); + } catch (e) { + // proceed if destination doesn't exist, otherwise error + if (e.code !== 'ENOENT') { + throw e; + } + } + + // if destination exists + if (destStat) { + const bothSymlinks = srcStat.isSymbolicLink() && destStat.isSymbolicLink(); + const bothFolders = srcStat.isDirectory() && destStat.isDirectory(); + const bothFiles = srcStat.isFile() && destStat.isFile(); + + // EINVAL access errors sometimes happen which shouldn't because node shouldn't be giving + // us modes that aren't valid. investigate this, it's generally safe to proceed. + + /* if (srcStat.mode !== destStat.mode) { + try { + await access(dest, srcStat.mode); + } catch (err) {} + } */ + + if (bothFiles && artifactFiles.has(dest)) { + // this file gets changed during build, likely by a custom install script. Don't bother checking it. + onDone(); + reporter.verbose(reporter.lang('verboseFileSkipArtifact', src)); + return; + } + + if (bothFiles && srcStat.size === destStat.size && (0, (_fsNormalized || _load_fsNormalized()).fileDatesEqual)(srcStat.mtime, destStat.mtime)) { + // we can safely assume this is the same file + onDone(); + reporter.verbose(reporter.lang('verboseFileSkip', src, dest, srcStat.size, +srcStat.mtime)); + return; + } + + if (bothSymlinks) { + const srcReallink = yield readlink(src); + if (srcReallink === (yield readlink(dest))) { + // if both symlinks are the same then we can continue on + onDone(); + reporter.verbose(reporter.lang('verboseFileSkipSymlink', src, dest, srcReallink)); + return; + } + } + + if (bothFolders) { + // mark files that aren't in this folder as possibly extraneous + const destFiles = yield readdir(dest); + invariant(srcFiles, 'src files not initialised'); + + for (var _iterator4 = destFiles, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) { + var _ref6; + + if (_isArray4) { + if (_i4 >= _iterator4.length) break; + _ref6 = _iterator4[_i4++]; + } else { + _i4 = _iterator4.next(); + if (_i4.done) break; + _ref6 = _i4.value; + } + + const file = _ref6; + + if (srcFiles.indexOf(file) < 0) { + const loc = (_path || _load_path()).default.join(dest, file); + possibleExtraneous.add(loc); + + if ((yield lstat(loc)).isDirectory()) { + for (var _iterator5 = yield readdir(loc), _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) { + var _ref7; + + if (_isArray5) { + if (_i5 >= _iterator5.length) break; + _ref7 = _iterator5[_i5++]; + } else { + _i5 = _iterator5.next(); + if (_i5.done) break; + _ref7 = _i5.value; + } + + const file = _ref7; + + possibleExtraneous.add((_path || _load_path()).default.join(loc, file)); + } + } + } + } + } + } + + if (destStat && destStat.isSymbolicLink()) { + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(dest); + destStat = null; + } + + if (srcStat.isSymbolicLink()) { + onFresh(); + const linkname = yield readlink(src); + actions.symlink.push({ + dest, + linkname + }); + onDone(); + } else if (srcStat.isDirectory()) { + if (!destStat) { + reporter.verbose(reporter.lang('verboseFileFolder', dest)); + yield mkdirp(dest); + } + + const destParts = dest.split((_path || _load_path()).default.sep); + while (destParts.length) { + files.add(destParts.join((_path || _load_path()).default.sep).toLowerCase()); + destParts.pop(); + } + + // push all files to queue + invariant(srcFiles, 'src files not initialised'); + let remaining = srcFiles.length; + if (!remaining) { + onDone(); + } + for (var _iterator6 = srcFiles, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) { + var _ref8; + + if (_isArray6) { + if (_i6 >= _iterator6.length) break; + _ref8 = _iterator6[_i6++]; + } else { + _i6 = _iterator6.next(); + if (_i6.done) break; + _ref8 = _i6.value; + } + + const file = _ref8; + + queue.push({ + dest: (_path || _load_path()).default.join(dest, file), + onFresh, + onDone: function (_onDone) { + function onDone() { + return _onDone.apply(this, arguments); + } + + onDone.toString = function () { + return _onDone.toString(); + }; + + return onDone; + }(function () { + if (--remaining === 0) { + onDone(); + } + }), + src: (_path || _load_path()).default.join(src, file) + }); + } + } else if (srcStat.isFile()) { + onFresh(); + actions.file.push({ + src, + dest, + atime: srcStat.atime, + mtime: srcStat.mtime, + mode: srcStat.mode + }); + onDone(); + } else { + throw new Error(`unsure how to copy this: ${src}`); + } + }); + + return function build(_x5) { + return _ref5.apply(this, arguments); + }; + })(); + + const artifactFiles = new Set(events.artifactFiles || []); + const files = new Set(); + + // initialise events + for (var _iterator = queue, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { + var _ref2; + + if (_isArray) { + if (_i >= _iterator.length) break; + _ref2 = _iterator[_i++]; + } else { + _i = _iterator.next(); + if (_i.done) break; + _ref2 = _i.value; + } + + const item = _ref2; + + const onDone = item.onDone; + item.onDone = function () { + events.onProgress(item.dest); + if (onDone) { + onDone(); + } + }; + } + events.onStart(queue.length); + + // start building actions + const actions = { + file: [], + symlink: [], + link: [] + }; + + // custom concurrency logic as we're always executing stacks of CONCURRENT_QUEUE_ITEMS queue items + // at a time due to the requirement to push items onto the queue + while (queue.length) { + const items = queue.splice(0, CONCURRENT_QUEUE_ITEMS); + yield Promise.all(items.map(build)); + } + + // simulate the existence of some files to prevent considering them extraneous + for (var _iterator2 = artifactFiles, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) { + var _ref3; + + if (_isArray2) { + if (_i2 >= _iterator2.length) break; + _ref3 = _iterator2[_i2++]; + } else { + _i2 = _iterator2.next(); + if (_i2.done) break; + _ref3 = _i2.value; + } + + const file = _ref3; + + if (possibleExtraneous.has(file)) { + reporter.verbose(reporter.lang('verboseFilePhantomExtraneous', file)); + possibleExtraneous.delete(file); + } + } + + for (var _iterator3 = possibleExtraneous, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) { + var _ref4; + + if (_isArray3) { + if (_i3 >= _iterator3.length) break; + _ref4 = _iterator3[_i3++]; + } else { + _i3 = _iterator3.next(); + if (_i3.done) break; + _ref4 = _i3.value; + } + + const loc = _ref4; + + if (files.has(loc.toLowerCase())) { + possibleExtraneous.delete(loc); + } + } + + return actions; + }); + + return function buildActionsForCopy(_x, _x2, _x3, _x4) { + return _ref.apply(this, arguments); + }; +})(); + +let buildActionsForHardlink = (() => { + var _ref9 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (queue, events, possibleExtraneous, reporter) { + + // + let build = (() => { + var _ref13 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (data) { + const src = data.src, + dest = data.dest; + + const onFresh = data.onFresh || noop; + const onDone = data.onDone || noop; + if (files.has(dest.toLowerCase())) { + // Fixes issue https://github.com/yarnpkg/yarn/issues/2734 + // When bulk hardlinking we have A -> B structure that we want to hardlink to A1 -> B1, + // package-linker passes that modules A1 and B1 need to be hardlinked, + // the recursive linking algorithm of A1 ends up scheduling files in B1 to be linked twice which will case + // an exception. + onDone(); + return; + } + files.add(dest.toLowerCase()); + + if (events.ignoreBasenames.indexOf((_path || _load_path()).default.basename(src)) >= 0) { + // ignored file + return; + } + + const srcStat = yield lstat(src); + let srcFiles; + + if (srcStat.isDirectory()) { + srcFiles = yield readdir(src); + } + + const destExists = yield exists(dest); + if (destExists) { + const destStat = yield lstat(dest); + + const bothSymlinks = srcStat.isSymbolicLink() && destStat.isSymbolicLink(); + const bothFolders = srcStat.isDirectory() && destStat.isDirectory(); + const bothFiles = srcStat.isFile() && destStat.isFile(); + + if (srcStat.mode !== destStat.mode) { + try { + yield access(dest, srcStat.mode); + } catch (err) { + // EINVAL access errors sometimes happen which shouldn't because node shouldn't be giving + // us modes that aren't valid. investigate this, it's generally safe to proceed. + reporter.verbose(err); + } + } + + if (bothFiles && artifactFiles.has(dest)) { + // this file gets changed during build, likely by a custom install script. Don't bother checking it. + onDone(); + reporter.verbose(reporter.lang('verboseFileSkipArtifact', src)); + return; + } + + // correct hardlink + if (bothFiles && srcStat.ino !== null && srcStat.ino === destStat.ino) { + onDone(); + reporter.verbose(reporter.lang('verboseFileSkip', src, dest, srcStat.ino)); + return; + } + + if (bothSymlinks) { + const srcReallink = yield readlink(src); + if (srcReallink === (yield readlink(dest))) { + // if both symlinks are the same then we can continue on + onDone(); + reporter.verbose(reporter.lang('verboseFileSkipSymlink', src, dest, srcReallink)); + return; + } + } + + if (bothFolders) { + // mark files that aren't in this folder as possibly extraneous + const destFiles = yield readdir(dest); + invariant(srcFiles, 'src files not initialised'); + + for (var _iterator10 = destFiles, _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : _iterator10[Symbol.iterator]();;) { + var _ref14; + + if (_isArray10) { + if (_i10 >= _iterator10.length) break; + _ref14 = _iterator10[_i10++]; + } else { + _i10 = _iterator10.next(); + if (_i10.done) break; + _ref14 = _i10.value; + } + + const file = _ref14; + + if (srcFiles.indexOf(file) < 0) { + const loc = (_path || _load_path()).default.join(dest, file); + possibleExtraneous.add(loc); + + if ((yield lstat(loc)).isDirectory()) { + for (var _iterator11 = yield readdir(loc), _isArray11 = Array.isArray(_iterator11), _i11 = 0, _iterator11 = _isArray11 ? _iterator11 : _iterator11[Symbol.iterator]();;) { + var _ref15; + + if (_isArray11) { + if (_i11 >= _iterator11.length) break; + _ref15 = _iterator11[_i11++]; + } else { + _i11 = _iterator11.next(); + if (_i11.done) break; + _ref15 = _i11.value; + } + + const file = _ref15; + + possibleExtraneous.add((_path || _load_path()).default.join(loc, file)); + } + } + } + } + } + } + + if (srcStat.isSymbolicLink()) { + onFresh(); + const linkname = yield readlink(src); + actions.symlink.push({ + dest, + linkname + }); + onDone(); + } else if (srcStat.isDirectory()) { + reporter.verbose(reporter.lang('verboseFileFolder', dest)); + yield mkdirp(dest); + + const destParts = dest.split((_path || _load_path()).default.sep); + while (destParts.length) { + files.add(destParts.join((_path || _load_path()).default.sep).toLowerCase()); + destParts.pop(); + } + + // push all files to queue + invariant(srcFiles, 'src files not initialised'); + let remaining = srcFiles.length; + if (!remaining) { + onDone(); + } + for (var _iterator12 = srcFiles, _isArray12 = Array.isArray(_iterator12), _i12 = 0, _iterator12 = _isArray12 ? _iterator12 : _iterator12[Symbol.iterator]();;) { + var _ref16; + + if (_isArray12) { + if (_i12 >= _iterator12.length) break; + _ref16 = _iterator12[_i12++]; + } else { + _i12 = _iterator12.next(); + if (_i12.done) break; + _ref16 = _i12.value; + } + + const file = _ref16; + + queue.push({ + onFresh, + src: (_path || _load_path()).default.join(src, file), + dest: (_path || _load_path()).default.join(dest, file), + onDone: function (_onDone2) { + function onDone() { + return _onDone2.apply(this, arguments); + } + + onDone.toString = function () { + return _onDone2.toString(); + }; + + return onDone; + }(function () { + if (--remaining === 0) { + onDone(); + } + }) + }); + } + } else if (srcStat.isFile()) { + onFresh(); + actions.link.push({ + src, + dest, + removeDest: destExists + }); + onDone(); + } else { + throw new Error(`unsure how to copy this: ${src}`); + } + }); + + return function build(_x10) { + return _ref13.apply(this, arguments); + }; + })(); + + const artifactFiles = new Set(events.artifactFiles || []); + const files = new Set(); + + // initialise events + for (var _iterator7 = queue, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : _iterator7[Symbol.iterator]();;) { + var _ref10; + + if (_isArray7) { + if (_i7 >= _iterator7.length) break; + _ref10 = _iterator7[_i7++]; + } else { + _i7 = _iterator7.next(); + if (_i7.done) break; + _ref10 = _i7.value; + } + + const item = _ref10; + + const onDone = item.onDone || noop; + item.onDone = function () { + events.onProgress(item.dest); + onDone(); + }; + } + events.onStart(queue.length); + + // start building actions + const actions = { + file: [], + symlink: [], + link: [] + }; + + // custom concurrency logic as we're always executing stacks of CONCURRENT_QUEUE_ITEMS queue items + // at a time due to the requirement to push items onto the queue + while (queue.length) { + const items = queue.splice(0, CONCURRENT_QUEUE_ITEMS); + yield Promise.all(items.map(build)); + } + + // simulate the existence of some files to prevent considering them extraneous + for (var _iterator8 = artifactFiles, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : _iterator8[Symbol.iterator]();;) { + var _ref11; + + if (_isArray8) { + if (_i8 >= _iterator8.length) break; + _ref11 = _iterator8[_i8++]; + } else { + _i8 = _iterator8.next(); + if (_i8.done) break; + _ref11 = _i8.value; + } + + const file = _ref11; + + if (possibleExtraneous.has(file)) { + reporter.verbose(reporter.lang('verboseFilePhantomExtraneous', file)); + possibleExtraneous.delete(file); + } + } + + for (var _iterator9 = possibleExtraneous, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : _iterator9[Symbol.iterator]();;) { + var _ref12; + + if (_isArray9) { + if (_i9 >= _iterator9.length) break; + _ref12 = _iterator9[_i9++]; + } else { + _i9 = _iterator9.next(); + if (_i9.done) break; + _ref12 = _i9.value; + } + + const loc = _ref12; + + if (files.has(loc.toLowerCase())) { + possibleExtraneous.delete(loc); + } + } + + return actions; + }); + + return function buildActionsForHardlink(_x6, _x7, _x8, _x9) { + return _ref9.apply(this, arguments); + }; +})(); + +let copyBulk = exports.copyBulk = (() => { + var _ref17 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (queue, reporter, _events) { + const events = { + onStart: _events && _events.onStart || noop, + onProgress: _events && _events.onProgress || noop, + possibleExtraneous: _events ? _events.possibleExtraneous : new Set(), + ignoreBasenames: _events && _events.ignoreBasenames || [], + artifactFiles: _events && _events.artifactFiles || [] + }; + + const actions = yield buildActionsForCopy(queue, events, events.possibleExtraneous, reporter); + events.onStart(actions.file.length + actions.symlink.length + actions.link.length); + + const fileActions = actions.file; + + const currentlyWriting = new Map(); + + yield (_promise || _load_promise()).queue(fileActions, (() => { + var _ref18 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (data) { + let writePromise; + while (writePromise = currentlyWriting.get(data.dest)) { + yield writePromise; + } + + reporter.verbose(reporter.lang('verboseFileCopy', data.src, data.dest)); + const copier = (0, (_fsNormalized || _load_fsNormalized()).copyFile)(data, function () { + return currentlyWriting.delete(data.dest); + }); + currentlyWriting.set(data.dest, copier); + events.onProgress(data.dest); + return copier; + }); + + return function (_x14) { + return _ref18.apply(this, arguments); + }; + })(), CONCURRENT_QUEUE_ITEMS); + + // we need to copy symlinks last as they could reference files we were copying + const symlinkActions = actions.symlink; + yield (_promise || _load_promise()).queue(symlinkActions, function (data) { + const linkname = (_path || _load_path()).default.resolve((_path || _load_path()).default.dirname(data.dest), data.linkname); + reporter.verbose(reporter.lang('verboseFileSymlink', data.dest, linkname)); + return symlink(linkname, data.dest); + }); + }); + + return function copyBulk(_x11, _x12, _x13) { + return _ref17.apply(this, arguments); + }; +})(); + +let hardlinkBulk = exports.hardlinkBulk = (() => { + var _ref19 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (queue, reporter, _events) { + const events = { + onStart: _events && _events.onStart || noop, + onProgress: _events && _events.onProgress || noop, + possibleExtraneous: _events ? _events.possibleExtraneous : new Set(), + artifactFiles: _events && _events.artifactFiles || [], + ignoreBasenames: [] + }; + + const actions = yield buildActionsForHardlink(queue, events, events.possibleExtraneous, reporter); + events.onStart(actions.file.length + actions.symlink.length + actions.link.length); + + const fileActions = actions.link; + + yield (_promise || _load_promise()).queue(fileActions, (() => { + var _ref20 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (data) { + reporter.verbose(reporter.lang('verboseFileLink', data.src, data.dest)); + if (data.removeDest) { + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(data.dest); + } + yield link(data.src, data.dest); + }); + + return function (_x18) { + return _ref20.apply(this, arguments); + }; + })(), CONCURRENT_QUEUE_ITEMS); + + // we need to copy symlinks last as they could reference files we were copying + const symlinkActions = actions.symlink; + yield (_promise || _load_promise()).queue(symlinkActions, function (data) { + const linkname = (_path || _load_path()).default.resolve((_path || _load_path()).default.dirname(data.dest), data.linkname); + reporter.verbose(reporter.lang('verboseFileSymlink', data.dest, linkname)); + return symlink(linkname, data.dest); + }); + }); + + return function hardlinkBulk(_x15, _x16, _x17) { + return _ref19.apply(this, arguments); + }; +})(); + +let readFileAny = exports.readFileAny = (() => { + var _ref21 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (files) { + for (var _iterator13 = files, _isArray13 = Array.isArray(_iterator13), _i13 = 0, _iterator13 = _isArray13 ? _iterator13 : _iterator13[Symbol.iterator]();;) { + var _ref22; + + if (_isArray13) { + if (_i13 >= _iterator13.length) break; + _ref22 = _iterator13[_i13++]; + } else { + _i13 = _iterator13.next(); + if (_i13.done) break; + _ref22 = _i13.value; + } + + const file = _ref22; + + if (yield exists(file)) { + return readFile(file); + } + } + return null; + }); + + return function readFileAny(_x19) { + return _ref21.apply(this, arguments); + }; +})(); + +let readJson = exports.readJson = (() => { + var _ref23 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (loc) { + return (yield readJsonAndFile(loc)).object; + }); + + return function readJson(_x20) { + return _ref23.apply(this, arguments); + }; +})(); + +let readJsonAndFile = exports.readJsonAndFile = (() => { + var _ref24 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (loc) { + const file = yield readFile(loc); + try { + return { + object: (0, (_map || _load_map()).default)(JSON.parse(stripBOM(file))), + content: file + }; + } catch (err) { + err.message = `${loc}: ${err.message}`; + throw err; + } + }); + + return function readJsonAndFile(_x21) { + return _ref24.apply(this, arguments); + }; +})(); + +let find = exports.find = (() => { + var _ref25 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (filename, dir) { + const parts = dir.split((_path || _load_path()).default.sep); + + while (parts.length) { + const loc = parts.concat(filename).join((_path || _load_path()).default.sep); + + if (yield exists(loc)) { + return loc; + } else { + parts.pop(); + } + } + + return false; + }); + + return function find(_x22, _x23) { + return _ref25.apply(this, arguments); + }; +})(); + +let symlink = exports.symlink = (() => { + var _ref26 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (src, dest) { + if (process.platform !== 'win32') { + // use relative paths otherwise which will be retained if the directory is moved + src = (_path || _load_path()).default.relative((_path || _load_path()).default.dirname(dest), src); + // When path.relative returns an empty string for the current directory, we should instead use + // '.', which is a valid fs.symlink target. + src = src || '.'; + } + + try { + const stats = yield lstat(dest); + if (stats.isSymbolicLink()) { + const resolved = dest; + if (resolved === src) { + return; + } + } + } catch (err) { + if (err.code !== 'ENOENT') { + throw err; + } + } + + // We use rimraf for unlink which never throws an ENOENT on missing target + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(dest); + + if (process.platform === 'win32') { + // use directory junctions if possible on win32, this requires absolute paths + yield fsSymlink(src, dest, 'junction'); + } else { + yield fsSymlink(src, dest); + } + }); + + return function symlink(_x24, _x25) { + return _ref26.apply(this, arguments); + }; +})(); + +let walk = exports.walk = (() => { + var _ref27 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (dir, relativeDir, ignoreBasenames = new Set()) { + let files = []; + + let filenames = yield readdir(dir); + if (ignoreBasenames.size) { + filenames = filenames.filter(function (name) { + return !ignoreBasenames.has(name); + }); + } + + for (var _iterator14 = filenames, _isArray14 = Array.isArray(_iterator14), _i14 = 0, _iterator14 = _isArray14 ? _iterator14 : _iterator14[Symbol.iterator]();;) { + var _ref28; + + if (_isArray14) { + if (_i14 >= _iterator14.length) break; + _ref28 = _iterator14[_i14++]; + } else { + _i14 = _iterator14.next(); + if (_i14.done) break; + _ref28 = _i14.value; + } + + const name = _ref28; + + const relative = relativeDir ? (_path || _load_path()).default.join(relativeDir, name) : name; + const loc = (_path || _load_path()).default.join(dir, name); + const stat = yield lstat(loc); + + files.push({ + relative, + basename: name, + absolute: loc, + mtime: +stat.mtime + }); + + if (stat.isDirectory()) { + files = files.concat((yield walk(loc, relative, ignoreBasenames))); + } + } + + return files; + }); + + return function walk(_x26, _x27) { + return _ref27.apply(this, arguments); + }; +})(); + +let getFileSizeOnDisk = exports.getFileSizeOnDisk = (() => { + var _ref29 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (loc) { + const stat = yield lstat(loc); + const size = stat.size, + blockSize = stat.blksize; + + + return Math.ceil(size / blockSize) * blockSize; + }); + + return function getFileSizeOnDisk(_x28) { + return _ref29.apply(this, arguments); + }; +})(); + +let getEolFromFile = (() => { + var _ref30 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (path) { + if (!(yield exists(path))) { + return undefined; + } + + const buffer = yield readFileBuffer(path); + + for (let i = 0; i < buffer.length; ++i) { + if (buffer[i] === cr) { + return '\r\n'; + } + if (buffer[i] === lf) { + return '\n'; + } + } + return undefined; + }); + + return function getEolFromFile(_x29) { + return _ref30.apply(this, arguments); + }; +})(); + +let writeFilePreservingEol = exports.writeFilePreservingEol = (() => { + var _ref31 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (path, data) { + const eol = (yield getEolFromFile(path)) || (_os || _load_os()).default.EOL; + if (eol !== '\n') { + data = data.replace(/\n/g, eol); + } + yield writeFile(path, data); + }); + + return function writeFilePreservingEol(_x30, _x31) { + return _ref31.apply(this, arguments); + }; +})(); + +let hardlinksWork = exports.hardlinksWork = (() => { + var _ref32 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (dir) { + const filename = 'test-file' + Math.random(); + const file = (_path || _load_path()).default.join(dir, filename); + const fileLink = (_path || _load_path()).default.join(dir, filename + '-link'); + try { + yield writeFile(file, 'test'); + yield link(file, fileLink); + } catch (err) { + return false; + } finally { + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(file); + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(fileLink); + } + return true; + }); + + return function hardlinksWork(_x32) { + return _ref32.apply(this, arguments); + }; +})(); + +// not a strict polyfill for Node's fs.mkdtemp + + +let makeTempDir = exports.makeTempDir = (() => { + var _ref33 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (prefix) { + const dir = (_path || _load_path()).default.join((_os || _load_os()).default.tmpdir(), `yarn-${prefix || ''}-${Date.now()}-${Math.random()}`); + yield (0, (_fsNormalized || _load_fsNormalized()).unlink)(dir); + yield mkdirp(dir); + return dir; + }); + + return function makeTempDir(_x33) { + return _ref33.apply(this, arguments); + }; +})(); + +let readFirstAvailableStream = exports.readFirstAvailableStream = (() => { + var _ref34 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (paths) { + for (var _iterator15 = paths, _isArray15 = Array.isArray(_iterator15), _i15 = 0, _iterator15 = _isArray15 ? _iterator15 : _iterator15[Symbol.iterator]();;) { + var _ref35; + + if (_isArray15) { + if (_i15 >= _iterator15.length) break; + _ref35 = _iterator15[_i15++]; + } else { + _i15 = _iterator15.next(); + if (_i15.done) break; + _ref35 = _i15.value; + } + + const path = _ref35; + + try { + const fd = yield open(path, 'r'); + return (_fs || _load_fs()).default.createReadStream(path, { fd }); + } catch (err) { + // Try the next one + } + } + return null; + }); + + return function readFirstAvailableStream(_x34) { + return _ref34.apply(this, arguments); + }; +})(); + +let getFirstSuitableFolder = exports.getFirstSuitableFolder = (() => { + var _ref36 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (paths, mode = constants.W_OK | constants.X_OK) { + const result = { + skipped: [], + folder: null + }; + + for (var _iterator16 = paths, _isArray16 = Array.isArray(_iterator16), _i16 = 0, _iterator16 = _isArray16 ? _iterator16 : _iterator16[Symbol.iterator]();;) { + var _ref37; + + if (_isArray16) { + if (_i16 >= _iterator16.length) break; + _ref37 = _iterator16[_i16++]; + } else { + _i16 = _iterator16.next(); + if (_i16.done) break; + _ref37 = _i16.value; + } + + const folder = _ref37; + + try { + yield mkdirp(folder); + yield access(folder, mode); + + result.folder = folder; + + return result; + } catch (error) { + result.skipped.push({ + error, + folder + }); + } + } + return result; + }); + + return function getFirstSuitableFolder(_x35) { + return _ref36.apply(this, arguments); + }; +})(); + +exports.copy = copy; +exports.readFile = readFile; +exports.readFileRaw = readFileRaw; +exports.normalizeOS = normalizeOS; + +var _fs; + +function _load_fs() { + return _fs = _interopRequireDefault(__webpack_require__(4)); +} + +var _glob; + +function _load_glob() { + return _glob = _interopRequireDefault(__webpack_require__(99)); +} + +var _os; + +function _load_os() { + return _os = _interopRequireDefault(__webpack_require__(42)); +} + +var _path; + +function _load_path() { + return _path = _interopRequireDefault(__webpack_require__(0)); +} + +var _blockingQueue; + +function _load_blockingQueue() { + return _blockingQueue = _interopRequireDefault(__webpack_require__(110)); +} + +var _promise; + +function _load_promise() { + return _promise = _interopRequireWildcard(__webpack_require__(51)); +} + +var _promise2; + +function _load_promise2() { + return _promise2 = __webpack_require__(51); +} + +var _map; + +function _load_map() { + return _map = _interopRequireDefault(__webpack_require__(30)); +} + +var _fsNormalized; + +function _load_fsNormalized() { + return _fsNormalized = __webpack_require__(216); +} + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +const constants = exports.constants = typeof (_fs || _load_fs()).default.constants !== 'undefined' ? (_fs || _load_fs()).default.constants : { + R_OK: (_fs || _load_fs()).default.R_OK, + W_OK: (_fs || _load_fs()).default.W_OK, + X_OK: (_fs || _load_fs()).default.X_OK +}; + +const lockQueue = exports.lockQueue = new (_blockingQueue || _load_blockingQueue()).default('fs lock'); + +const readFileBuffer = exports.readFileBuffer = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.readFile); +const open = exports.open = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.open); +const writeFile = exports.writeFile = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.writeFile); +const readlink = exports.readlink = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.readlink); +const realpath = exports.realpath = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.realpath); +const readdir = exports.readdir = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.readdir); +const rename = exports.rename = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.rename); +const access = exports.access = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.access); +const stat = exports.stat = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.stat); +const mkdirp = exports.mkdirp = (0, (_promise2 || _load_promise2()).promisify)(__webpack_require__(146)); +const exists = exports.exists = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.exists, true); +const lstat = exports.lstat = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.lstat); +const chmod = exports.chmod = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.chmod); +const link = exports.link = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.link); +const glob = exports.glob = (0, (_promise2 || _load_promise2()).promisify)((_glob || _load_glob()).default); +exports.unlink = (_fsNormalized || _load_fsNormalized()).unlink; + +// fs.copyFile uses the native file copying instructions on the system, performing much better +// than any JS-based solution and consumes fewer resources. Repeated testing to fine tune the +// concurrency level revealed 128 as the sweet spot on a quad-core, 16 CPU Intel system with SSD. + +const CONCURRENT_QUEUE_ITEMS = (_fs || _load_fs()).default.copyFile ? 128 : 4; + +const fsSymlink = (0, (_promise2 || _load_promise2()).promisify)((_fs || _load_fs()).default.symlink); +const invariant = __webpack_require__(9); +const stripBOM = __webpack_require__(161); + +const noop = () => {}; + +function copy(src, dest, reporter) { + return copyBulk([{ src, dest }], reporter); +} + +function _readFile(loc, encoding) { + return new Promise((resolve, reject) => { + (_fs || _load_fs()).default.readFile(loc, encoding, function (err, content) { + if (err) { + reject(err); + } else { + resolve(content); + } + }); + }); +} + +function readFile(loc) { + return _readFile(loc, 'utf8').then(normalizeOS); +} + +function readFileRaw(loc) { + return _readFile(loc, 'binary'); +} + +function normalizeOS(body) { + return body.replace(/\r\n/g, '\n'); +} + +const cr = '\r'.charCodeAt(0); +const lf = '\n'.charCodeAt(0); + +/***/ }), +/* 6 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +class MessageError extends Error { + constructor(msg, code) { + super(msg); + this.code = code; + } + +} + +exports.MessageError = MessageError; +class ProcessSpawnError extends MessageError { + constructor(msg, code, process) { + super(msg, code); + this.process = process; + } + +} + +exports.ProcessSpawnError = ProcessSpawnError; +class SecurityError extends MessageError {} + +exports.SecurityError = SecurityError; +class ProcessTermError extends MessageError {} + +exports.ProcessTermError = ProcessTermError; +class ResponseError extends Error { + constructor(msg, responseCode) { + super(msg); + this.responseCode = responseCode; + } + +} + +exports.ResponseError = ResponseError; +class OneTimePasswordError extends Error { + constructor(notice) { + super(); + this.notice = notice; + } + +} +exports.OneTimePasswordError = OneTimePasswordError; + +/***/ }), +/* 7 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Subscriber; }); +/* unused harmony export SafeSubscriber */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_tslib__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_isFunction__ = __webpack_require__(155); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__Observer__ = __webpack_require__(420); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__Subscription__ = __webpack_require__(25); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__internal_symbol_rxSubscriber__ = __webpack_require__(322); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__config__ = __webpack_require__(186); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__util_hostReportError__ = __webpack_require__(324); +/** PURE_IMPORTS_START tslib,_util_isFunction,_Observer,_Subscription,_internal_symbol_rxSubscriber,_config,_util_hostReportError PURE_IMPORTS_END */ + + + + + + + +var Subscriber = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](Subscriber, _super); + function Subscriber(destinationOrNext, error, complete) { + var _this = _super.call(this) || this; + _this.syncErrorValue = null; + _this.syncErrorThrown = false; + _this.syncErrorThrowable = false; + _this.isStopped = false; + _this._parentSubscription = null; + switch (arguments.length) { + case 0: + _this.destination = __WEBPACK_IMPORTED_MODULE_2__Observer__["a" /* empty */]; + break; + case 1: + if (!destinationOrNext) { + _this.destination = __WEBPACK_IMPORTED_MODULE_2__Observer__["a" /* empty */]; + break; + } + if (typeof destinationOrNext === 'object') { + if (destinationOrNext instanceof Subscriber) { + _this.syncErrorThrowable = destinationOrNext.syncErrorThrowable; + _this.destination = destinationOrNext; + destinationOrNext.add(_this); + } + else { + _this.syncErrorThrowable = true; + _this.destination = new SafeSubscriber(_this, destinationOrNext); + } + break; + } + default: + _this.syncErrorThrowable = true; + _this.destination = new SafeSubscriber(_this, destinationOrNext, error, complete); + break; + } + return _this; + } + Subscriber.prototype[__WEBPACK_IMPORTED_MODULE_4__internal_symbol_rxSubscriber__["a" /* rxSubscriber */]] = function () { return this; }; + Subscriber.create = function (next, error, complete) { + var subscriber = new Subscriber(next, error, complete); + subscriber.syncErrorThrowable = false; + return subscriber; + }; + Subscriber.prototype.next = function (value) { + if (!this.isStopped) { + this._next(value); + } + }; + Subscriber.prototype.error = function (err) { + if (!this.isStopped) { + this.isStopped = true; + this._error(err); + } + }; + Subscriber.prototype.complete = function () { + if (!this.isStopped) { + this.isStopped = true; + this._complete(); + } + }; + Subscriber.prototype.unsubscribe = function () { + if (this.closed) { + return; + } + this.isStopped = true; + _super.prototype.unsubscribe.call(this); + }; + Subscriber.prototype._next = function (value) { + this.destination.next(value); + }; + Subscriber.prototype._error = function (err) { + this.destination.error(err); + this.unsubscribe(); + }; + Subscriber.prototype._complete = function () { + this.destination.complete(); + this.unsubscribe(); + }; + Subscriber.prototype._unsubscribeAndRecycle = function () { + var _a = this, _parent = _a._parent, _parents = _a._parents; + this._parent = null; + this._parents = null; + this.unsubscribe(); + this.closed = false; + this.isStopped = false; + this._parent = _parent; + this._parents = _parents; + this._parentSubscription = null; + return this; + }; + return Subscriber; +}(__WEBPACK_IMPORTED_MODULE_3__Subscription__["a" /* Subscription */])); + +var SafeSubscriber = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](SafeSubscriber, _super); + function SafeSubscriber(_parentSubscriber, observerOrNext, error, complete) { + var _this = _super.call(this) || this; + _this._parentSubscriber = _parentSubscriber; + var next; + var context = _this; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_isFunction__["a" /* isFunction */])(observerOrNext)) { + next = observerOrNext; + } + else if (observerOrNext) { + next = observerOrNext.next; + error = observerOrNext.error; + complete = observerOrNext.complete; + if (observerOrNext !== __WEBPACK_IMPORTED_MODULE_2__Observer__["a" /* empty */]) { + context = Object.create(observerOrNext); + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_isFunction__["a" /* isFunction */])(context.unsubscribe)) { + _this.add(context.unsubscribe.bind(context)); + } + context.unsubscribe = _this.unsubscribe.bind(_this); + } + } + _this._context = context; + _this._next = next; + _this._error = error; + _this._complete = complete; + return _this; + } + SafeSubscriber.prototype.next = function (value) { + if (!this.isStopped && this._next) { + var _parentSubscriber = this._parentSubscriber; + if (!__WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) { + this.__tryOrUnsub(this._next, value); + } + else if (this.__tryOrSetError(_parentSubscriber, this._next, value)) { + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.error = function (err) { + if (!this.isStopped) { + var _parentSubscriber = this._parentSubscriber; + var useDeprecatedSynchronousErrorHandling = __WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling; + if (this._error) { + if (!useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) { + this.__tryOrUnsub(this._error, err); + this.unsubscribe(); + } + else { + this.__tryOrSetError(_parentSubscriber, this._error, err); + this.unsubscribe(); + } + } + else if (!_parentSubscriber.syncErrorThrowable) { + this.unsubscribe(); + if (useDeprecatedSynchronousErrorHandling) { + throw err; + } + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__util_hostReportError__["a" /* hostReportError */])(err); + } + else { + if (useDeprecatedSynchronousErrorHandling) { + _parentSubscriber.syncErrorValue = err; + _parentSubscriber.syncErrorThrown = true; + } + else { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__util_hostReportError__["a" /* hostReportError */])(err); + } + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.complete = function () { + var _this = this; + if (!this.isStopped) { + var _parentSubscriber = this._parentSubscriber; + if (this._complete) { + var wrappedComplete = function () { return _this._complete.call(_this._context); }; + if (!__WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) { + this.__tryOrUnsub(wrappedComplete); + this.unsubscribe(); + } + else { + this.__tryOrSetError(_parentSubscriber, wrappedComplete); + this.unsubscribe(); + } + } + else { + this.unsubscribe(); + } + } + }; + SafeSubscriber.prototype.__tryOrUnsub = function (fn, value) { + try { + fn.call(this._context, value); + } + catch (err) { + this.unsubscribe(); + if (__WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling) { + throw err; + } + else { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__util_hostReportError__["a" /* hostReportError */])(err); + } + } + }; + SafeSubscriber.prototype.__tryOrSetError = function (parent, fn, value) { + if (!__WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling) { + throw new Error('bad call'); + } + try { + fn.call(this._context, value); + } + catch (err) { + if (__WEBPACK_IMPORTED_MODULE_5__config__["a" /* config */].useDeprecatedSynchronousErrorHandling) { + parent.syncErrorValue = err; + parent.syncErrorThrown = true; + return true; + } + else { + __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__util_hostReportError__["a" /* hostReportError */])(err); + return true; + } + } + return false; + }; + SafeSubscriber.prototype._unsubscribe = function () { + var _parentSubscriber = this._parentSubscriber; + this._context = null; + this._parentSubscriber = null; + _parentSubscriber.unsubscribe(); + }; + return SafeSubscriber; +}(Subscriber)); + +//# sourceMappingURL=Subscriber.js.map + + +/***/ }), +/* 8 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getPathKey = getPathKey; +const os = __webpack_require__(42); +const path = __webpack_require__(0); +const userHome = __webpack_require__(67).default; + +var _require = __webpack_require__(222); + +const getCacheDir = _require.getCacheDir, + getConfigDir = _require.getConfigDir, + getDataDir = _require.getDataDir; + +const isWebpackBundle = __webpack_require__(278); + +const DEPENDENCY_TYPES = exports.DEPENDENCY_TYPES = ['devDependencies', 'dependencies', 'optionalDependencies', 'peerDependencies']; +const OWNED_DEPENDENCY_TYPES = exports.OWNED_DEPENDENCY_TYPES = ['devDependencies', 'dependencies', 'optionalDependencies']; + +const RESOLUTIONS = exports.RESOLUTIONS = 'resolutions'; +const MANIFEST_FIELDS = exports.MANIFEST_FIELDS = [RESOLUTIONS, ...DEPENDENCY_TYPES]; + +const SUPPORTED_NODE_VERSIONS = exports.SUPPORTED_NODE_VERSIONS = '^4.8.0 || ^5.7.0 || ^6.2.2 || >=8.0.0'; + +const YARN_REGISTRY = exports.YARN_REGISTRY = 'https://registry.yarnpkg.com'; +const NPM_REGISTRY_RE = exports.NPM_REGISTRY_RE = /https?:\/\/registry\.npmjs\.org/g; + +const YARN_DOCS = exports.YARN_DOCS = 'https://yarnpkg.com/en/docs/cli/'; +const YARN_INSTALLER_SH = exports.YARN_INSTALLER_SH = 'https://yarnpkg.com/install.sh'; +const YARN_INSTALLER_MSI = exports.YARN_INSTALLER_MSI = 'https://yarnpkg.com/latest.msi'; + +const SELF_UPDATE_VERSION_URL = exports.SELF_UPDATE_VERSION_URL = 'https://yarnpkg.com/latest-version'; + +// cache version, bump whenever we make backwards incompatible changes +const CACHE_VERSION = exports.CACHE_VERSION = 6; + +// lockfile version, bump whenever we make backwards incompatible changes +const LOCKFILE_VERSION = exports.LOCKFILE_VERSION = 1; + +// max amount of network requests to perform concurrently +const NETWORK_CONCURRENCY = exports.NETWORK_CONCURRENCY = 8; + +// HTTP timeout used when downloading packages +const NETWORK_TIMEOUT = exports.NETWORK_TIMEOUT = 30 * 1000; // in milliseconds + +// max amount of child processes to execute concurrently +const CHILD_CONCURRENCY = exports.CHILD_CONCURRENCY = 5; + +const REQUIRED_PACKAGE_KEYS = exports.REQUIRED_PACKAGE_KEYS = ['name', 'version', '_uid']; + +function getPreferredCacheDirectories() { + const preferredCacheDirectories = [getCacheDir()]; + + if (process.getuid) { + // $FlowFixMe: process.getuid exists, dammit + preferredCacheDirectories.push(path.join(os.tmpdir(), `.yarn-cache-${process.getuid()}`)); + } + + preferredCacheDirectories.push(path.join(os.tmpdir(), `.yarn-cache`)); + + return preferredCacheDirectories; +} + +const PREFERRED_MODULE_CACHE_DIRECTORIES = exports.PREFERRED_MODULE_CACHE_DIRECTORIES = getPreferredCacheDirectories(); +const CONFIG_DIRECTORY = exports.CONFIG_DIRECTORY = getConfigDir(); +const DATA_DIRECTORY = exports.DATA_DIRECTORY = getDataDir(); +const LINK_REGISTRY_DIRECTORY = exports.LINK_REGISTRY_DIRECTORY = path.join(DATA_DIRECTORY, 'link'); +const GLOBAL_MODULE_DIRECTORY = exports.GLOBAL_MODULE_DIRECTORY = path.join(DATA_DIRECTORY, 'global'); + +const NODE_BIN_PATH = exports.NODE_BIN_PATH = process.execPath; +const YARN_BIN_PATH = exports.YARN_BIN_PATH = getYarnBinPath(); + +// Webpack needs to be configured with node.__dirname/__filename = false +function getYarnBinPath() { + if (isWebpackBundle) { + return __filename; + } else { + return path.join(__dirname, '..', 'bin', 'yarn.js'); + } +} + +const NODE_MODULES_FOLDER = exports.NODE_MODULES_FOLDER = 'node_modules'; +const NODE_PACKAGE_JSON = exports.NODE_PACKAGE_JSON = 'package.json'; + +const PNP_FILENAME = exports.PNP_FILENAME = '.pnp.js'; + +const POSIX_GLOBAL_PREFIX = exports.POSIX_GLOBAL_PREFIX = `${process.env.DESTDIR || ''}/usr/local`; +const FALLBACK_GLOBAL_PREFIX = exports.FALLBACK_GLOBAL_PREFIX = path.join(userHome, '.yarn'); + +const META_FOLDER = exports.META_FOLDER = '.yarn-meta'; +const INTEGRITY_FILENAME = exports.INTEGRITY_FILENAME = '.yarn-integrity'; +const LOCKFILE_FILENAME = exports.LOCKFILE_FILENAME = 'yarn.lock'; +const METADATA_FILENAME = exports.METADATA_FILENAME = '.yarn-metadata.json'; +const TARBALL_FILENAME = exports.TARBALL_FILENAME = '.yarn-tarball.tgz'; +const CLEAN_FILENAME = exports.CLEAN_FILENAME = '.yarnclean'; + +const NPM_LOCK_FILENAME = exports.NPM_LOCK_FILENAME = 'package-lock.json'; +const NPM_SHRINKWRAP_FILENAME = exports.NPM_SHRINKWRAP_FILENAME = 'npm-shrinkwrap.json'; + +const DEFAULT_INDENT = exports.DEFAULT_INDENT = ' '; +const SINGLE_INSTANCE_PORT = exports.SINGLE_INSTANCE_PORT = 31997; +const SINGLE_INSTANCE_FILENAME = exports.SINGLE_INSTANCE_FILENAME = '.yarn-single-instance'; + +const ENV_PATH_KEY = exports.ENV_PATH_KEY = getPathKey(process.platform, process.env); + +function getPathKey(platform, env) { + let pathKey = 'PATH'; + + // windows calls its path "Path" usually, but this is not guaranteed. + if (platform === 'win32') { + pathKey = 'Path'; + + for (const key in env) { + if (key.toLowerCase() === 'path') { + pathKey = key; + } + } + } + + return pathKey; +} + +const VERSION_COLOR_SCHEME = exports.VERSION_COLOR_SCHEME = { + major: 'red', + premajor: 'red', + minor: 'yellow', + preminor: 'yellow', + patch: 'green', + prepatch: 'green', + prerelease: 'red', + unchanged: 'white', + unknown: 'red' +}; + +/***/ }), +/* 9 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + + + +/** + * Use invariant() to assert state which your program assumes to be true. + * + * Provide sprintf-style format (only %s is supported) and arguments + * to provide information about what broke and what you were + * expecting. + * + * The invariant message will be stripped in production, but the invariant + * will remain to ensure logic does not differ in production. + */ + +var NODE_ENV = process.env.NODE_ENV; + +var invariant = function(condition, format, a, b, c, d, e, f) { + if (NODE_ENV !== 'production') { + if (format === undefined) { + throw new Error('invariant requires an error message argument'); + } + } + + if (!condition) { + var error; + if (format === undefined) { + error = new Error( + 'Minified exception occurred; use the non-minified dev environment ' + + 'for the full error message and additional helpful warnings.' + ); + } else { + var args = [a, b, c, d, e, f]; + var argIndex = 0; + error = new Error( + format.replace(/%s/g, function() { return args[argIndex++]; }) + ); + error.name = 'Invariant Violation'; + } + + error.framesToPop = 1; // we don't care about invariant's own frame + throw error; + } +}; + +module.exports = invariant; + + +/***/ }), +/* 10 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +var YAMLException = __webpack_require__(55); + +var TYPE_CONSTRUCTOR_OPTIONS = [ + 'kind', + 'resolve', + 'construct', + 'instanceOf', + 'predicate', + 'represent', + 'defaultStyle', + 'styleAliases' +]; + +var YAML_NODE_KINDS = [ + 'scalar', + 'sequence', + 'mapping' +]; + +function compileStyleAliases(map) { + var result = {}; + + if (map !== null) { + Object.keys(map).forEach(function (style) { + map[style].forEach(function (alias) { + result[String(alias)] = style; + }); + }); + } + + return result; +} + +function Type(tag, options) { + options = options || {}; + + Object.keys(options).forEach(function (name) { + if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) { + throw new YAMLException('Unknown option "' + name + '" is met in definition of "' + tag + '" YAML type.'); + } + }); + + // TODO: Add tag format check. + this.tag = tag; + this.kind = options['kind'] || null; + this.resolve = options['resolve'] || function () { return true; }; + this.construct = options['construct'] || function (data) { return data; }; + this.instanceOf = options['instanceOf'] || null; + this.predicate = options['predicate'] || null; + this.represent = options['represent'] || null; + this.defaultStyle = options['defaultStyle'] || null; + this.styleAliases = compileStyleAliases(options['styleAliases'] || null); + + if (YAML_NODE_KINDS.indexOf(this.kind) === -1) { + throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.'); + } +} + +module.exports = Type; + + +/***/ }), +/* 11 */ +/***/ (function(module, exports) { + +module.exports = require("crypto"); + +/***/ }), +/* 12 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Observable; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__util_canReportError__ = __webpack_require__(323); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_toSubscriber__ = __webpack_require__(932); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__internal_symbol_observable__ = __webpack_require__(118); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__util_pipe__ = __webpack_require__(325); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__config__ = __webpack_require__(186); +/** PURE_IMPORTS_START _util_canReportError,_util_toSubscriber,_internal_symbol_observable,_util_pipe,_config PURE_IMPORTS_END */ + + + + + +var Observable = /*@__PURE__*/ (function () { + function Observable(subscribe) { + this._isScalar = false; + if (subscribe) { + this._subscribe = subscribe; + } + } + Observable.prototype.lift = function (operator) { + var observable = new Observable(); + observable.source = this; + observable.operator = operator; + return observable; + }; + Observable.prototype.subscribe = function (observerOrNext, error, complete) { + var operator = this.operator; + var sink = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_toSubscriber__["a" /* toSubscriber */])(observerOrNext, error, complete); + if (operator) { + operator.call(sink, this.source); + } + else { + sink.add(this.source || (__WEBPACK_IMPORTED_MODULE_4__config__["a" /* config */].useDeprecatedSynchronousErrorHandling && !sink.syncErrorThrowable) ? + this._subscribe(sink) : + this._trySubscribe(sink)); + } + if (__WEBPACK_IMPORTED_MODULE_4__config__["a" /* config */].useDeprecatedSynchronousErrorHandling) { + if (sink.syncErrorThrowable) { + sink.syncErrorThrowable = false; + if (sink.syncErrorThrown) { + throw sink.syncErrorValue; + } + } + } + return sink; + }; + Observable.prototype._trySubscribe = function (sink) { + try { + return this._subscribe(sink); + } + catch (err) { + if (__WEBPACK_IMPORTED_MODULE_4__config__["a" /* config */].useDeprecatedSynchronousErrorHandling) { + sink.syncErrorThrown = true; + sink.syncErrorValue = err; + } + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_canReportError__["a" /* canReportError */])(sink)) { + sink.error(err); + } + else { + console.warn(err); + } + } + }; + Observable.prototype.forEach = function (next, promiseCtor) { + var _this = this; + promiseCtor = getPromiseCtor(promiseCtor); + return new promiseCtor(function (resolve, reject) { + var subscription; + subscription = _this.subscribe(function (value) { + try { + next(value); + } + catch (err) { + reject(err); + if (subscription) { + subscription.unsubscribe(); + } + } + }, reject, resolve); + }); + }; + Observable.prototype._subscribe = function (subscriber) { + var source = this.source; + return source && source.subscribe(subscriber); + }; + Observable.prototype[__WEBPACK_IMPORTED_MODULE_2__internal_symbol_observable__["a" /* observable */]] = function () { + return this; + }; + Observable.prototype.pipe = function () { + var operations = []; + for (var _i = 0; _i < arguments.length; _i++) { + operations[_i] = arguments[_i]; + } + if (operations.length === 0) { + return this; + } + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_3__util_pipe__["b" /* pipeFromArray */])(operations)(this); + }; + Observable.prototype.toPromise = function (promiseCtor) { + var _this = this; + promiseCtor = getPromiseCtor(promiseCtor); + return new promiseCtor(function (resolve, reject) { + var value; + _this.subscribe(function (x) { return value = x; }, function (err) { return reject(err); }, function () { return resolve(value); }); + }); + }; + Observable.create = function (subscribe) { + return new Observable(subscribe); + }; + return Observable; +}()); + +function getPromiseCtor(promiseCtor) { + if (!promiseCtor) { + promiseCtor = __WEBPACK_IMPORTED_MODULE_4__config__["a" /* config */].Promise || Promise; + } + if (!promiseCtor) { + throw new Error('no Promise impl found'); + } + return promiseCtor; +} +//# sourceMappingURL=Observable.js.map + + +/***/ }), +/* 13 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return OuterSubscriber; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_tslib__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Subscriber__ = __webpack_require__(7); +/** PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END */ + + +var OuterSubscriber = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](OuterSubscriber, _super); + function OuterSubscriber() { + return _super !== null && _super.apply(this, arguments) || this; + } + OuterSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) { + this.destination.next(innerValue); + }; + OuterSubscriber.prototype.notifyError = function (error, innerSub) { + this.destination.error(error); + }; + OuterSubscriber.prototype.notifyComplete = function (innerSub) { + this.destination.complete(); + }; + return OuterSubscriber; +}(__WEBPACK_IMPORTED_MODULE_1__Subscriber__["a" /* Subscriber */])); + +//# sourceMappingURL=OuterSubscriber.js.map + + +/***/ }), +/* 14 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (immutable) */ __webpack_exports__["a"] = subscribeToResult; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__InnerSubscriber__ = __webpack_require__(84); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__subscribeTo__ = __webpack_require__(446); +/** PURE_IMPORTS_START _InnerSubscriber,_subscribeTo PURE_IMPORTS_END */ + + +function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, destination) { + if (destination === void 0) { + destination = new __WEBPACK_IMPORTED_MODULE_0__InnerSubscriber__["a" /* InnerSubscriber */](outerSubscriber, outerValue, outerIndex); + } + if (destination.closed) { + return; + } + return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__subscribeTo__["a" /* subscribeTo */])(result)(destination); +} +//# sourceMappingURL=subscribeToResult.js.map + + +/***/ }), +/* 15 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; +/* eslint-disable node/no-deprecated-api */ + + + +var buffer = __webpack_require__(64) +var Buffer = buffer.Buffer + +var safer = {} + +var key + +for (key in buffer) { + if (!buffer.hasOwnProperty(key)) continue + if (key === 'SlowBuffer' || key === 'Buffer') continue + safer[key] = buffer[key] +} + +var Safer = safer.Buffer = {} +for (key in Buffer) { + if (!Buffer.hasOwnProperty(key)) continue + if (key === 'allocUnsafe' || key === 'allocUnsafeSlow') continue + Safer[key] = Buffer[key] +} + +safer.Buffer.prototype = Buffer.prototype + +if (!Safer.from || Safer.from === Uint8Array.from) { + Safer.from = function (value, encodingOrOffset, length) { + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type ' + typeof value) + } + if (value && typeof value.length === 'undefined') { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type ' + typeof value) + } + return Buffer(value, encodingOrOffset, length) + } +} + +if (!Safer.alloc) { + Safer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('The "size" argument must be of type number. Received type ' + typeof size) + } + if (size < 0 || size >= 2 * (1 << 30)) { + throw new RangeError('The value "' + size + '" is invalid for option "size"') + } + var buf = Buffer(size) + if (!fill || fill.length === 0) { + buf.fill(0) + } else if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + return buf + } +} + +if (!safer.kStringMaxLength) { + try { + safer.kStringMaxLength = process.binding('buffer').kStringMaxLength + } catch (e) { + // we can't determine kStringMaxLength in environments where process.binding + // is unsupported, so let's not set it + } +} + +if (!safer.constants) { + safer.constants = { + MAX_LENGTH: safer.kMaxLength + } + if (safer.kStringMaxLength) { + safer.constants.MAX_STRING_LENGTH = safer.kStringMaxLength + } +} + +module.exports = safer + + +/***/ }), +/* 16 */ +/***/ (function(module, exports, __webpack_require__) { + +// Copyright (c) 2012, Mark Cavage. All rights reserved. +// Copyright 2015 Joyent, Inc. + +var assert = __webpack_require__(29); +var Stream = __webpack_require__(23).Stream; +var util = __webpack_require__(3); + + +///--- Globals + +/* JSSTYLED */ +var UUID_REGEXP = /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/; + + +///--- Internal + +function _capitalize(str) { + return (str.charAt(0).toUpperCase() + str.slice(1)); +} + +function _toss(name, expected, oper, arg, actual) { + throw new assert.AssertionError({ + message: util.format('%s (%s) is required', name, expected), + actual: (actual === undefined) ? typeof (arg) : actual(arg), + expected: expected, + operator: oper || '===', + stackStartFunction: _toss.caller + }); +} + +function _getClass(arg) { + return (Object.prototype.toString.call(arg).slice(8, -1)); +} + +function noop() { + // Why even bother with asserts? +} + + +///--- Exports + +var types = { + bool: { + check: function (arg) { return typeof (arg) === 'boolean'; } + }, + func: { + check: function (arg) { return typeof (arg) === 'function'; } + }, + string: { + check: function (arg) { return typeof (arg) === 'string'; } + }, + object: { + check: function (arg) { + return typeof (arg) === 'object' && arg !== null; + } + }, + number: { + check: function (arg) { + return typeof (arg) === 'number' && !isNaN(arg); + } + }, + finite: { + check: function (arg) { + return typeof (arg) === 'number' && !isNaN(arg) && isFinite(arg); + } + }, + buffer: { + check: function (arg) { return Buffer.isBuffer(arg); }, + operator: 'Buffer.isBuffer' + }, + array: { + check: function (arg) { return Array.isArray(arg); }, + operator: 'Array.isArray' + }, + stream: { + check: function (arg) { return arg instanceof Stream; }, + operator: 'instanceof', + actual: _getClass + }, + date: { + check: function (arg) { return arg instanceof Date; }, + operator: 'instanceof', + actual: _getClass + }, + regexp: { + check: function (arg) { return arg instanceof RegExp; }, + operator: 'instanceof', + actual: _getClass + }, + uuid: { + check: function (arg) { + return typeof (arg) === 'string' && UUID_REGEXP.test(arg); + }, + operator: 'isUUID' + } +}; + +function _setExports(ndebug) { + var keys = Object.keys(types); + var out; + + /* re-export standard assert */ + if (process.env.NODE_NDEBUG) { + out = noop; + } else { + out = function (arg, msg) { + if (!arg) { + _toss(msg, 'true', arg); + } + }; + } + + /* standard checks */ + keys.forEach(function (k) { + if (ndebug) { + out[k] = noop; + return; + } + var type = types[k]; + out[k] = function (arg, msg) { + if (!type.check(arg)) { + _toss(msg, k, type.operator, arg, type.actual); + } + }; + }); + + /* optional checks */ + keys.forEach(function (k) { + var name = 'optional' + _capitalize(k); + if (ndebug) { + out[name] = noop; + return; + } + var type = types[k]; + out[name] = function (arg, msg) { + if (arg === undefined || arg === null) { + return; + } + if (!type.check(arg)) { + _toss(msg, k, type.operator, arg, type.actual); + } + }; + }); + + /* arrayOf checks */ + keys.forEach(function (k) { + var name = 'arrayOf' + _capitalize(k); + if (ndebug) { + out[name] = noop; + return; + } + var type = types[k]; + var expected = '[' + k + ']'; + out[name] = function (arg, msg) { + if (!Array.isArray(arg)) { + _toss(msg, expected, type.operator, arg, type.actual); + } + var i; + for (i = 0; i < arg.length; i++) { + if (!type.check(arg[i])) { + _toss(msg, expected, type.operator, arg, type.actual); + } + } + }; + }); + + /* optionalArrayOf checks */ + keys.forEach(function (k) { + var name = 'optionalArrayOf' + _capitalize(k); + if (ndebug) { + out[name] = noop; + return; + } + var type = types[k]; + var expected = '[' + k + ']'; + out[name] = function (arg, msg) { + if (arg === undefined || arg === null) { + return; + } + if (!Array.isArray(arg)) { + _toss(msg, expected, type.operator, arg, type.actual); + } + var i; + for (i = 0; i < arg.length; i++) { + if (!type.check(arg[i])) { + _toss(msg, expected, type.operator, arg, type.actual); + } + } + }; + }); + + /* re-export built-in assertions */ + Object.keys(assert).forEach(function (k) { + if (k === 'AssertionError') { + out[k] = assert[k]; + return; + } + if (ndebug) { + out[k] = noop; + return; + } + out[k] = assert[k]; + }); + + /* export ourselves (for unit tests _only_) */ + out._setExports = _setExports; + + return out; +} + +module.exports = _setExports(process.env.NODE_NDEBUG); + + +/***/ }), +/* 17 */ +/***/ (function(module, exports) { + +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +var global = module.exports = typeof window != 'undefined' && window.Math == Math + ? window : typeof self != 'undefined' && self.Math == Math ? self + // eslint-disable-next-line no-new-func + : Function('return this')(); +if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef + + +/***/ }), +/* 18 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sortAlpha = sortAlpha; +exports.sortOptionsByFlags = sortOptionsByFlags; +exports.entries = entries; +exports.removePrefix = removePrefix; +exports.removeSuffix = removeSuffix; +exports.addSuffix = addSuffix; +exports.hyphenate = hyphenate; +exports.camelCase = camelCase; +exports.compareSortedArrays = compareSortedArrays; +exports.sleep = sleep; +const _camelCase = __webpack_require__(227); + +function sortAlpha(a, b) { + // sort alphabetically in a deterministic way + const shortLen = Math.min(a.length, b.length); + for (let i = 0; i < shortLen; i++) { + const aChar = a.charCodeAt(i); + const bChar = b.charCodeAt(i); + if (aChar !== bChar) { + return aChar - bChar; + } + } + return a.length - b.length; +} + +function sortOptionsByFlags(a, b) { + const aOpt = a.flags.replace(/-/g, ''); + const bOpt = b.flags.replace(/-/g, ''); + return sortAlpha(aOpt, bOpt); +} + +function entries(obj) { + const entries = []; + if (obj) { + for (const key in obj) { + entries.push([key, obj[key]]); + } + } + return entries; +} + +function removePrefix(pattern, prefix) { + if (pattern.startsWith(prefix)) { + pattern = pattern.slice(prefix.length); + } + + return pattern; +} + +function removeSuffix(pattern, suffix) { + if (pattern.endsWith(suffix)) { + return pattern.slice(0, -suffix.length); + } + + return pattern; +} + +function addSuffix(pattern, suffix) { + if (!pattern.endsWith(suffix)) { + return pattern + suffix; + } + + return pattern; +} + +function hyphenate(str) { + return str.replace(/[A-Z]/g, match => { + return '-' + match.charAt(0).toLowerCase(); + }); +} + +function camelCase(str) { + if (/[A-Z]/.test(str)) { + return null; + } else { + return _camelCase(str); + } +} + +function compareSortedArrays(array1, array2) { + if (array1.length !== array2.length) { + return false; + } + for (let i = 0, len = array1.length; i < len; i++) { + if (array1[i] !== array2[i]) { + return false; + } + } + return true; +} + +function sleep(ms) { + return new Promise(resolve => { + setTimeout(resolve, ms); + }); +} + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.stringify = exports.parse = undefined; + +var _asyncToGenerator2; + +function _load_asyncToGenerator() { + return _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(2)); +} + +var _parse; + +function _load_parse() { + return _parse = __webpack_require__(106); +} + +Object.defineProperty(exports, 'parse', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_parse || _load_parse()).default; + } +}); + +var _stringify; + +function _load_stringify() { + return _stringify = __webpack_require__(200); +} + +Object.defineProperty(exports, 'stringify', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_stringify || _load_stringify()).default; + } +}); +exports.implodeEntry = implodeEntry; +exports.explodeEntry = explodeEntry; + +var _misc; + +function _load_misc() { + return _misc = __webpack_require__(18); +} + +var _normalizePattern; + +function _load_normalizePattern() { + return _normalizePattern = __webpack_require__(37); +} + +var _parse2; + +function _load_parse2() { + return _parse2 = _interopRequireDefault(__webpack_require__(106)); +} + +var _constants; + +function _load_constants() { + return _constants = __webpack_require__(8); +} + +var _fs; + +function _load_fs() { + return _fs = _interopRequireWildcard(__webpack_require__(5)); +} + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +const invariant = __webpack_require__(9); + +const path = __webpack_require__(0); +const ssri = __webpack_require__(65); + +function getName(pattern) { + return (0, (_normalizePattern || _load_normalizePattern()).normalizePattern)(pattern).name; +} + +function blankObjectUndefined(obj) { + return obj && Object.keys(obj).length ? obj : undefined; +} + +function keyForRemote(remote) { + return remote.resolved || (remote.reference && remote.hash ? `${remote.reference}#${remote.hash}` : null); +} + +function serializeIntegrity(integrity) { + // We need this because `Integrity.toString()` does not use sorting to ensure a stable string output + // See https://git.io/vx2Hy + return integrity.toString().split(' ').sort().join(' '); +} + +function implodeEntry(pattern, obj) { + const inferredName = getName(pattern); + const integrity = obj.integrity ? serializeIntegrity(obj.integrity) : ''; + const imploded = { + name: inferredName === obj.name ? undefined : obj.name, + version: obj.version, + uid: obj.uid === obj.version ? undefined : obj.uid, + resolved: obj.resolved, + registry: obj.registry === 'npm' ? undefined : obj.registry, + dependencies: blankObjectUndefined(obj.dependencies), + optionalDependencies: blankObjectUndefined(obj.optionalDependencies), + permissions: blankObjectUndefined(obj.permissions), + prebuiltVariants: blankObjectUndefined(obj.prebuiltVariants) + }; + if (integrity) { + imploded.integrity = integrity; + } + return imploded; +} + +function explodeEntry(pattern, obj) { + obj.optionalDependencies = obj.optionalDependencies || {}; + obj.dependencies = obj.dependencies || {}; + obj.uid = obj.uid || obj.version; + obj.permissions = obj.permissions || {}; + obj.registry = obj.registry || 'npm'; + obj.name = obj.name || getName(pattern); + const integrity = obj.integrity; + if (integrity && integrity.isIntegrity) { + obj.integrity = ssri.parse(integrity); + } + return obj; +} + +class Lockfile { + constructor({ cache, source, parseResultType } = {}) { + this.source = source || ''; + this.cache = cache; + this.parseResultType = parseResultType; + } + + // source string if the `cache` was parsed + + + // if true, we're parsing an old yarn file and need to update integrity fields + hasEntriesExistWithoutIntegrity() { + if (!this.cache) { + return false; + } + + for (const key in this.cache) { + // $FlowFixMe - `this.cache` is clearly defined at this point + if (!/^.*@(file:|http)/.test(key) && this.cache[key] && !this.cache[key].integrity) { + return true; + } + } + + return false; + } + + static fromDirectory(dir, reporter) { + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + // read the manifest in this directory + const lockfileLoc = path.join(dir, (_constants || _load_constants()).LOCKFILE_FILENAME); + + let lockfile; + let rawLockfile = ''; + let parseResult; + + if (yield (_fs || _load_fs()).exists(lockfileLoc)) { + rawLockfile = yield (_fs || _load_fs()).readFile(lockfileLoc); + parseResult = (0, (_parse2 || _load_parse2()).default)(rawLockfile, lockfileLoc); + + if (reporter) { + if (parseResult.type === 'merge') { + reporter.info(reporter.lang('lockfileMerged')); + } else if (parseResult.type === 'conflict') { + reporter.warn(reporter.lang('lockfileConflict')); + } + } + + lockfile = parseResult.object; + } else if (reporter) { + reporter.info(reporter.lang('noLockfileFound')); + } + + if (lockfile && lockfile.__metadata) { + const lockfilev2 = lockfile; + lockfile = {}; + } + + return new Lockfile({ cache: lockfile, source: rawLockfile, parseResultType: parseResult && parseResult.type }); + })(); + } + + getLocked(pattern) { + const cache = this.cache; + if (!cache) { + return undefined; + } + + const shrunk = pattern in cache && cache[pattern]; + + if (typeof shrunk === 'string') { + return this.getLocked(shrunk); + } else if (shrunk) { + explodeEntry(pattern, shrunk); + return shrunk; + } + + return undefined; + } + + removePattern(pattern) { + const cache = this.cache; + if (!cache) { + return; + } + delete cache[pattern]; + } + + getLockfile(patterns) { + const lockfile = {}; + const seen = new Map(); + + // order by name so that lockfile manifest is assigned to the first dependency with this manifest + // the others that have the same remoteKey will just refer to the first + // ordering allows for consistency in lockfile when it is serialized + const sortedPatternsKeys = Object.keys(patterns).sort((_misc || _load_misc()).sortAlpha); + + for (var _iterator = sortedPatternsKeys, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { + var _ref; + + if (_isArray) { + if (_i >= _iterator.length) break; + _ref = _iterator[_i++]; + } else { + _i = _iterator.next(); + if (_i.done) break; + _ref = _i.value; + } + + const pattern = _ref; + + const pkg = patterns[pattern]; + const remote = pkg._remote, + ref = pkg._reference; + + invariant(ref, 'Package is missing a reference'); + invariant(remote, 'Package is missing a remote'); + + const remoteKey = keyForRemote(remote); + const pkgName = getName(pattern); + + const seenKey = remoteKey ? `${remoteKey}#${pkgName}` : null; + const seenPattern = seenKey ? seen.get(seenKey) : null; + + if (seenPattern) { + // no point in duplicating it + lockfile[pattern] = seenPattern; + continue; + } + + const obj = implodeEntry(pattern, { + name: pkgName, + version: pkg.version, + uid: pkg._uid, + resolved: remote.resolved, + integrity: remote.integrity, + registry: remote.registry, + dependencies: pkg.dependencies, + peerDependencies: pkg.peerDependencies, + optionalDependencies: pkg.optionalDependencies, + permissions: ref.permissions, + prebuiltVariants: pkg.prebuiltVariants + }); + + lockfile[pattern] = obj; + + if (seenKey) { + seen.set(seenKey, obj); + } + } + + return lockfile; + } +} +exports.default = Lockfile; + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +exports.__esModule = true; + +var _assign = __webpack_require__(559); + +var _assign2 = _interopRequireDefault(_assign); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +exports.default = _assign2.default || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; +}; + +/***/ }), +/* 21 */ +/***/ (function(module, exports, __webpack_require__) { + +var store = __webpack_require__(134)('wks'); +var uid = __webpack_require__(138); +var Symbol = __webpack_require__(17).Symbol; +var USE_SYMBOL = typeof Symbol == 'function'; + +var $exports = module.exports = function (name) { + return store[name] || (store[name] = + USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name)); +}; + +$exports.store = store; + + +/***/ }), +/* 22 */ +/***/ (function(module, exports) { + +exports = module.exports = SemVer; + +// The debug function is excluded entirely from the minified version. +/* nomin */ var debug; +/* nomin */ if (typeof process === 'object' && + /* nomin */ process.env && + /* nomin */ process.env.NODE_DEBUG && + /* nomin */ /\bsemver\b/i.test(process.env.NODE_DEBUG)) + /* nomin */ debug = function() { + /* nomin */ var args = Array.prototype.slice.call(arguments, 0); + /* nomin */ args.unshift('SEMVER'); + /* nomin */ console.log.apply(console, args); + /* nomin */ }; +/* nomin */ else + /* nomin */ debug = function() {}; + +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +exports.SEMVER_SPEC_VERSION = '2.0.0'; + +var MAX_LENGTH = 256; +var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991; + +// Max safe segment length for coercion. +var MAX_SAFE_COMPONENT_LENGTH = 16; + +// The actual regexps go on exports.re +var re = exports.re = []; +var src = exports.src = []; +var R = 0; + +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. + +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. + +var NUMERICIDENTIFIER = R++; +src[NUMERICIDENTIFIER] = '0|[1-9]\\d*'; +var NUMERICIDENTIFIERLOOSE = R++; +src[NUMERICIDENTIFIERLOOSE] = '[0-9]+'; + + +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. + +var NONNUMERICIDENTIFIER = R++; +src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*'; + + +// ## Main Version +// Three dot-separated numeric identifiers. + +var MAINVERSION = R++; +src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')\\.' + + '(' + src[NUMERICIDENTIFIER] + ')'; + +var MAINVERSIONLOOSE = R++; +src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[NUMERICIDENTIFIERLOOSE] + ')'; + +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. + +var PRERELEASEIDENTIFIER = R++; +src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] + + '|' + src[NONNUMERICIDENTIFIER] + ')'; + +var PRERELEASEIDENTIFIERLOOSE = R++; +src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] + + '|' + src[NONNUMERICIDENTIFIER] + ')'; + + +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. + +var PRERELEASE = R++; +src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] + + '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))'; + +var PRERELEASELOOSE = R++; +src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] + + '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))'; + +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. + +var BUILDIDENTIFIER = R++; +src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+'; + +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. + +var BUILD = R++; +src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] + + '(?:\\.' + src[BUILDIDENTIFIER] + ')*))'; + + +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. + +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. + +var FULL = R++; +var FULLPLAIN = 'v?' + src[MAINVERSION] + + src[PRERELEASE] + '?' + + src[BUILD] + '?'; + +src[FULL] = '^' + FULLPLAIN + '$'; + +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] + + src[PRERELEASELOOSE] + '?' + + src[BUILD] + '?'; + +var LOOSE = R++; +src[LOOSE] = '^' + LOOSEPLAIN + '$'; + +var GTLT = R++; +src[GTLT] = '((?:<|>)?=?)'; + +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +var XRANGEIDENTIFIERLOOSE = R++; +src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*'; +var XRANGEIDENTIFIER = R++; +src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*'; + +var XRANGEPLAIN = R++; +src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' + + '(?:' + src[PRERELEASE] + ')?' + + src[BUILD] + '?' + + ')?)?'; + +var XRANGEPLAINLOOSE = R++; +src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' + + '(?:' + src[PRERELEASELOOSE] + ')?' + + src[BUILD] + '?' + + ')?)?'; + +var XRANGE = R++; +src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$'; +var XRANGELOOSE = R++; +src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$'; + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +var COERCE = R++; +src[COERCE] = '(?:^|[^\\d])' + + '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:$|[^\\d])'; + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +var LONETILDE = R++; +src[LONETILDE] = '(?:~>?)'; + +var TILDETRIM = R++; +src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+'; +re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g'); +var tildeTrimReplace = '$1~'; + +var TILDE = R++; +src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$'; +var TILDELOOSE = R++; +src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$'; + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +var LONECARET = R++; +src[LONECARET] = '(?:\\^)'; + +var CARETTRIM = R++; +src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+'; +re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g'); +var caretTrimReplace = '$1^'; + +var CARET = R++; +src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$'; +var CARETLOOSE = R++; +src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$'; + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +var COMPARATORLOOSE = R++; +src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$'; +var COMPARATOR = R++; +src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$'; + + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +var COMPARATORTRIM = R++; +src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] + + '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')'; + +// this one has to use the /g flag +re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g'); +var comparatorTrimReplace = '$1$2$3'; + + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +var HYPHENRANGE = R++; +src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAIN] + ')' + + '\\s*$'; + +var HYPHENRANGELOOSE = R++; +src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s+-\\s+' + + '(' + src[XRANGEPLAINLOOSE] + ')' + + '\\s*$'; + +// Star ranges basically just allow anything at all. +var STAR = R++; +src[STAR] = '(<|>)?=?\\s*\\*'; + +// Compile to actual regexp objects. +// All are flag-free, unless they were created above with a flag. +for (var i = 0; i < R; i++) { + debug(i, src[i]); + if (!re[i]) + re[i] = new RegExp(src[i]); +} + +exports.parse = parse; +function parse(version, loose) { + if (version instanceof SemVer) + return version; + + if (typeof version !== 'string') + return null; + + if (version.length > MAX_LENGTH) + return null; + + var r = loose ? re[LOOSE] : re[FULL]; + if (!r.test(version)) + return null; + + try { + return new SemVer(version, loose); + } catch (er) { + return null; + } +} + +exports.valid = valid; +function valid(version, loose) { + var v = parse(version, loose); + return v ? v.version : null; +} + + +exports.clean = clean; +function clean(version, loose) { + var s = parse(version.trim().replace(/^[=v]+/, ''), loose); + return s ? s.version : null; +} + +exports.SemVer = SemVer; + +function SemVer(version, loose) { + if (version instanceof SemVer) { + if (version.loose === loose) + return version; + else + version = version.version; + } else if (typeof version !== 'string') { + throw new TypeError('Invalid Version: ' + version); + } + + if (version.length > MAX_LENGTH) + throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') + + if (!(this instanceof SemVer)) + return new SemVer(version, loose); + + debug('SemVer', version, loose); + this.loose = loose; + var m = version.trim().match(loose ? re[LOOSE] : re[FULL]); + + if (!m) + throw new TypeError('Invalid Version: ' + version); + + this.raw = version; + + // these are actually numbers + this.major = +m[1]; + this.minor = +m[2]; + this.patch = +m[3]; + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) + throw new TypeError('Invalid major version') + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) + throw new TypeError('Invalid minor version') + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) + throw new TypeError('Invalid patch version') + + // numberify any prerelease numeric ids + if (!m[4]) + this.prerelease = []; + else + this.prerelease = m[4].split('.').map(function(id) { + if (/^[0-9]+$/.test(id)) { + var num = +id; + if (num >= 0 && num < MAX_SAFE_INTEGER) + return num; + } + return id; + }); + + this.build = m[5] ? m[5].split('.') : []; + this.format(); +} + +SemVer.prototype.format = function() { + this.version = this.major + '.' + this.minor + '.' + this.patch; + if (this.prerelease.length) + this.version += '-' + this.prerelease.join('.'); + return this.version; +}; + +SemVer.prototype.toString = function() { + return this.version; +}; + +SemVer.prototype.compare = function(other) { + debug('SemVer.compare', this.version, this.loose, other); + if (!(other instanceof SemVer)) + other = new SemVer(other, this.loose); + + return this.compareMain(other) || this.comparePre(other); +}; + +SemVer.prototype.compareMain = function(other) { + if (!(other instanceof SemVer)) + other = new SemVer(other, this.loose); + + return compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch); +}; + +SemVer.prototype.comparePre = function(other) { + if (!(other instanceof SemVer)) + other = new SemVer(other, this.loose); + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) + return -1; + else if (!this.prerelease.length && other.prerelease.length) + return 1; + else if (!this.prerelease.length && !other.prerelease.length) + return 0; + + var i = 0; + do { + var a = this.prerelease[i]; + var b = other.prerelease[i]; + debug('prerelease compare', i, a, b); + if (a === undefined && b === undefined) + return 0; + else if (b === undefined) + return 1; + else if (a === undefined) + return -1; + else if (a === b) + continue; + else + return compareIdentifiers(a, b); + } while (++i); +}; + +// preminor will bump the version up to the next minor release, and immediately +// down to pre-release. premajor and prepatch work the same way. +SemVer.prototype.inc = function(release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0; + this.patch = 0; + this.minor = 0; + this.major++; + this.inc('pre', identifier); + break; + case 'preminor': + this.prerelease.length = 0; + this.patch = 0; + this.minor++; + this.inc('pre', identifier); + break; + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0; + this.inc('patch', identifier); + this.inc('pre', identifier); + break; + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) + this.inc('patch', identifier); + this.inc('pre', identifier); + break; + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) + this.major++; + this.minor = 0; + this.patch = 0; + this.prerelease = []; + break; + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) + this.minor++; + this.patch = 0; + this.prerelease = []; + break; + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) + this.patch++; + this.prerelease = []; + break; + // This probably shouldn't be used publicly. + // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) + this.prerelease = [0]; + else { + var i = this.prerelease.length; + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++; + i = -2; + } + } + if (i === -1) // didn't increment anything + this.prerelease.push(0); + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) + this.prerelease = [identifier, 0]; + } else + this.prerelease = [identifier, 0]; + } + break; + + default: + throw new Error('invalid increment argument: ' + release); + } + this.format(); + this.raw = this.version; + return this; +}; + +exports.inc = inc; +function inc(version, release, loose, identifier) { + if (typeof(loose) === 'string') { + identifier = loose; + loose = undefined; + } + + try { + return new SemVer(version, loose).inc(release, identifier).version; + } catch (er) { + return null; + } +} + +exports.diff = diff; +function diff(version1, version2) { + if (eq(version1, version2)) { + return null; + } else { + var v1 = parse(version1); + var v2 = parse(version2); + if (v1.prerelease.length || v2.prerelease.length) { + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return 'pre'+key; + } + } + } + return 'prerelease'; + } + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return key; + } + } + } + } +} + +exports.compareIdentifiers = compareIdentifiers; + +var numeric = /^[0-9]+$/; +function compareIdentifiers(a, b) { + var anum = numeric.test(a); + var bnum = numeric.test(b); + + if (anum && bnum) { + a = +a; + b = +b; + } + + return (anum && !bnum) ? -1 : + (bnum && !anum) ? 1 : + a < b ? -1 : + a > b ? 1 : + 0; +} + +exports.rcompareIdentifiers = rcompareIdentifiers; +function rcompareIdentifiers(a, b) { + return compareIdentifiers(b, a); +} + +exports.major = major; +function major(a, loose) { + return new SemVer(a, loose).major; +} + +exports.minor = minor; +function minor(a, loose) { + return new SemVer(a, loose).minor; +} + +exports.patch = patch; +function patch(a, loose) { + return new SemVer(a, loose).patch; +} + +exports.compare = compare; +function compare(a, b, loose) { + return new SemVer(a, loose).compare(new SemVer(b, loose)); +} + +exports.compareLoose = compareLoose; +function compareLoose(a, b) { + return compare(a, b, true); +} + +exports.rcompare = rcompare; +function rcompare(a, b, loose) { + return compare(b, a, loose); +} + +exports.sort = sort; +function sort(list, loose) { + return list.sort(function(a, b) { + return exports.compare(a, b, loose); + }); +} + +exports.rsort = rsort; +function rsort(list, loose) { + return list.sort(function(a, b) { + return exports.rcompare(a, b, loose); + }); +} + +exports.gt = gt; +function gt(a, b, loose) { + return compare(a, b, loose) > 0; +} + +exports.lt = lt; +function lt(a, b, loose) { + return compare(a, b, loose) < 0; +} + +exports.eq = eq; +function eq(a, b, loose) { + return compare(a, b, loose) === 0; +} + +exports.neq = neq; +function neq(a, b, loose) { + return compare(a, b, loose) !== 0; +} + +exports.gte = gte; +function gte(a, b, loose) { + return compare(a, b, loose) >= 0; +} + +exports.lte = lte; +function lte(a, b, loose) { + return compare(a, b, loose) <= 0; +} + +exports.cmp = cmp; +function cmp(a, op, b, loose) { + var ret; + switch (op) { + case '===': + if (typeof a === 'object') a = a.version; + if (typeof b === 'object') b = b.version; + ret = a === b; + break; + case '!==': + if (typeof a === 'object') a = a.version; + if (typeof b === 'object') b = b.version; + ret = a !== b; + break; + case '': case '=': case '==': ret = eq(a, b, loose); break; + case '!=': ret = neq(a, b, loose); break; + case '>': ret = gt(a, b, loose); break; + case '>=': ret = gte(a, b, loose); break; + case '<': ret = lt(a, b, loose); break; + case '<=': ret = lte(a, b, loose); break; + default: throw new TypeError('Invalid operator: ' + op); + } + return ret; +} + +exports.Comparator = Comparator; +function Comparator(comp, loose) { + if (comp instanceof Comparator) { + if (comp.loose === loose) + return comp; + else + comp = comp.value; + } + + if (!(this instanceof Comparator)) + return new Comparator(comp, loose); + + debug('comparator', comp, loose); + this.loose = loose; + this.parse(comp); + + if (this.semver === ANY) + this.value = ''; + else + this.value = this.operator + this.semver.version; + + debug('comp', this); +} + +var ANY = {}; +Comparator.prototype.parse = function(comp) { + var r = this.loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; + var m = comp.match(r); + + if (!m) + throw new TypeError('Invalid comparator: ' + comp); + + this.operator = m[1]; + if (this.operator === '=') + this.operator = ''; + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) + this.semver = ANY; + else + this.semver = new SemVer(m[2], this.loose); +}; + +Comparator.prototype.toString = function() { + return this.value; +}; + +Comparator.prototype.test = function(version) { + debug('Comparator.test', version, this.loose); + + if (this.semver === ANY) + return true; + + if (typeof version === 'string') + version = new SemVer(version, this.loose); + + return cmp(version, this.operator, this.semver, this.loose); +}; + +Comparator.prototype.intersects = function(comp, loose) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required'); + } + + var rangeTmp; + + if (this.operator === '') { + rangeTmp = new Range(comp.value, loose); + return satisfies(this.value, rangeTmp, loose); + } else if (comp.operator === '') { + rangeTmp = new Range(this.value, loose); + return satisfies(comp.semver, rangeTmp, loose); + } + + var sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>'); + var sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<'); + var sameSemVer = this.semver.version === comp.semver.version; + var differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<='); + var oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, loose) && + ((this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<')); + var oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, loose) && + ((this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>')); + + return sameDirectionIncreasing || sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || oppositeDirectionsGreaterThan; +}; + + +exports.Range = Range; +function Range(range, loose) { + if (range instanceof Range) { + if (range.loose === loose) { + return range; + } else { + return new Range(range.raw, loose); + } + } + + if (range instanceof Comparator) { + return new Range(range.value, loose); + } + + if (!(this instanceof Range)) + return new Range(range, loose); + + this.loose = loose; + + // First, split based on boolean or || + this.raw = range; + this.set = range.split(/\s*\|\|\s*/).map(function(range) { + return this.parseRange(range.trim()); + }, this).filter(function(c) { + // throw out any that are not relevant for whatever reason + return c.length; + }); + + if (!this.set.length) { + throw new TypeError('Invalid SemVer Range: ' + range); + } + + this.format(); +} + +Range.prototype.format = function() { + this.range = this.set.map(function(comps) { + return comps.join(' ').trim(); + }).join('||').trim(); + return this.range; +}; + +Range.prototype.toString = function() { + return this.range; +}; + +Range.prototype.parseRange = function(range) { + var loose = this.loose; + range = range.trim(); + debug('range', range, loose); + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE]; + range = range.replace(hr, hyphenReplace); + debug('hyphen replace', range); + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace); + debug('comparator trim', range, re[COMPARATORTRIM]); + + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[TILDETRIM], tildeTrimReplace); + + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[CARETTRIM], caretTrimReplace); + + // normalize spaces + range = range.split(/\s+/).join(' '); + + // At this point, the range is completely trimmed and + // ready to be split into comparators. + + var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR]; + var set = range.split(' ').map(function(comp) { + return parseComparator(comp, loose); + }).join(' ').split(/\s+/); + if (this.loose) { + // in loose mode, throw out any that are not valid comparators + set = set.filter(function(comp) { + return !!comp.match(compRe); + }); + } + set = set.map(function(comp) { + return new Comparator(comp, loose); + }); + + return set; +}; + +Range.prototype.intersects = function(range, loose) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required'); + } + + return this.set.some(function(thisComparators) { + return thisComparators.every(function(thisComparator) { + return range.set.some(function(rangeComparators) { + return rangeComparators.every(function(rangeComparator) { + return thisComparator.intersects(rangeComparator, loose); + }); + }); + }); + }); +}; + +// Mostly just for testing and legacy API reasons +exports.toComparators = toComparators; +function toComparators(range, loose) { + return new Range(range, loose).set.map(function(comp) { + return comp.map(function(c) { + return c.value; + }).join(' ').trim().split(' '); + }); +} + +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +function parseComparator(comp, loose) { + debug('comp', comp); + comp = replaceCarets(comp, loose); + debug('caret', comp); + comp = replaceTildes(comp, loose); + debug('tildes', comp); + comp = replaceXRanges(comp, loose); + debug('xrange', comp); + comp = replaceStars(comp, loose); + debug('stars', comp); + return comp; +} + +function isX(id) { + return !id || id.toLowerCase() === 'x' || id === '*'; +} + +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 +function replaceTildes(comp, loose) { + return comp.trim().split(/\s+/).map(function(comp) { + return replaceTilde(comp, loose); + }).join(' '); +} + +function replaceTilde(comp, loose) { + var r = loose ? re[TILDELOOSE] : re[TILDE]; + return comp.replace(r, function(_, M, m, p, pr) { + debug('tilde', comp, _, M, m, p, pr); + var ret; + + if (isX(M)) + ret = ''; + else if (isX(m)) + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; + else if (isX(p)) + // ~1.2 == >=1.2.0 <1.3.0 + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; + else if (pr) { + debug('replaceTilde pr', pr); + if (pr.charAt(0) !== '-') + pr = '-' + pr; + ret = '>=' + M + '.' + m + '.' + p + pr + + ' <' + M + '.' + (+m + 1) + '.0'; + } else + // ~1.2.3 == >=1.2.3 <1.3.0 + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0'; + + debug('tilde return', ret); + return ret; + }); +} + +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 +// ^1.2.3 --> >=1.2.3 <2.0.0 +// ^1.2.0 --> >=1.2.0 <2.0.0 +function replaceCarets(comp, loose) { + return comp.trim().split(/\s+/).map(function(comp) { + return replaceCaret(comp, loose); + }).join(' '); +} + +function replaceCaret(comp, loose) { + debug('caret', comp, loose); + var r = loose ? re[CARETLOOSE] : re[CARET]; + return comp.replace(r, function(_, M, m, p, pr) { + debug('caret', comp, _, M, m, p, pr); + var ret; + + if (isX(M)) + ret = ''; + else if (isX(m)) + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; + else if (isX(p)) { + if (M === '0') + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; + else + ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'; + } else if (pr) { + debug('replaceCaret pr', pr); + if (pr.charAt(0) !== '-') + pr = '-' + pr; + if (M === '0') { + if (m === '0') + ret = '>=' + M + '.' + m + '.' + p + pr + + ' <' + M + '.' + m + '.' + (+p + 1); + else + ret = '>=' + M + '.' + m + '.' + p + pr + + ' <' + M + '.' + (+m + 1) + '.0'; + } else + ret = '>=' + M + '.' + m + '.' + p + pr + + ' <' + (+M + 1) + '.0.0'; + } else { + debug('no pr'); + if (M === '0') { + if (m === '0') + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + m + '.' + (+p + 1); + else + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0'; + } else + ret = '>=' + M + '.' + m + '.' + p + + ' <' + (+M + 1) + '.0.0'; + } + + debug('caret return', ret); + return ret; + }); +} + +function replaceXRanges(comp, loose) { + debug('replaceXRanges', comp, loose); + return comp.split(/\s+/).map(function(comp) { + return replaceXRange(comp, loose); + }).join(' '); +} + +function replaceXRange(comp, loose) { + comp = comp.trim(); + var r = loose ? re[XRANGELOOSE] : re[XRANGE]; + return comp.replace(r, function(ret, gtlt, M, m, p, pr) { + debug('xRange', comp, ret, gtlt, M, m, p, pr); + var xM = isX(M); + var xm = xM || isX(m); + var xp = xm || isX(p); + var anyX = xp; + + if (gtlt === '=' && anyX) + gtlt = ''; + + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0'; + } else { + // nothing is forbidden + ret = '*'; + } + } else if (gtlt && anyX) { + // replace X with 0 + if (xm) + m = 0; + if (xp) + p = 0; + + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + // >1.2.3 => >= 1.2.4 + gtlt = '>='; + if (xm) { + M = +M + 1; + m = 0; + p = 0; + } else if (xp) { + m = +m + 1; + p = 0; + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<'; + if (xm) + M = +M + 1; + else + m = +m + 1; + } + + ret = gtlt + M + '.' + m + '.' + p; + } else if (xm) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'; + } else if (xp) { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'; + } + + debug('xRange return', ret); + + return ret; + }); +} + +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +function replaceStars(comp, loose) { + debug('replaceStars', comp, loose); + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(re[STAR], ''); +} + +// This function is passed to string.replace(re[HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0 +function hyphenReplace($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) { + + if (isX(fM)) + from = ''; + else if (isX(fm)) + from = '>=' + fM + '.0.0'; + else if (isX(fp)) + from = '>=' + fM + '.' + fm + '.0'; + else + from = '>=' + from; + + if (isX(tM)) + to = ''; + else if (isX(tm)) + to = '<' + (+tM + 1) + '.0.0'; + else if (isX(tp)) + to = '<' + tM + '.' + (+tm + 1) + '.0'; + else if (tpr) + to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr; + else + to = '<=' + to; + + return (from + ' ' + to).trim(); +} + + +// if ANY of the sets match ALL of its comparators, then pass +Range.prototype.test = function(version) { + if (!version) + return false; + + if (typeof version === 'string') + version = new SemVer(version, this.loose); + + for (var i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version)) + return true; + } + return false; +}; + +function testSet(set, version) { + for (var i = 0; i < set.length; i++) { + if (!set[i].test(version)) + return false; + } + + if (version.prerelease.length) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (var i = 0; i < set.length; i++) { + debug(set[i].semver); + if (set[i].semver === ANY) + continue; + + if (set[i].semver.prerelease.length > 0) { + var allowed = set[i].semver; + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) + return true; + } + } + + // Version has a -pre, but it's not one of the ones we like. + return false; + } + + return true; +} + +exports.satisfies = satisfies; +function satisfies(version, range, loose) { + try { + range = new Range(range, loose); + } catch (er) { + return false; + } + return range.test(version); +} + +exports.maxSatisfying = maxSatisfying; +function maxSatisfying(versions, range, loose) { + var max = null; + var maxSV = null; + try { + var rangeObj = new Range(range, loose); + } catch (er) { + return null; + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { // satisfies(v, range, loose) + if (!max || maxSV.compare(v) === -1) { // compare(max, v, true) + max = v; + maxSV = new SemVer(max, loose); + } + } + }) + return max; +} + +exports.minSatisfying = minSatisfying; +function minSatisfying(versions, range, loose) { + var min = null; + var minSV = null; + try { + var rangeObj = new Range(range, loose); + } catch (er) { + return null; + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { // satisfies(v, range, loose) + if (!min || minSV.compare(v) === 1) { // compare(min, v, true) + min = v; + minSV = new SemVer(min, loose); + } + } + }) + return min; +} + +exports.validRange = validRange; +function validRange(range, loose) { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, loose).range || '*'; + } catch (er) { + return null; + } +} + +// Determine if version is less than all the versions possible in the range +exports.ltr = ltr; +function ltr(version, range, loose) { + return outside(version, range, '<', loose); +} + +// Determine if version is greater than all the versions possible in the range. +exports.gtr = gtr; +function gtr(version, range, loose) { + return outside(version, range, '>', loose); +} + +exports.outside = outside; +function outside(version, range, hilo, loose) { + version = new SemVer(version, loose); + range = new Range(range, loose); + + var gtfn, ltefn, ltfn, comp, ecomp; + switch (hilo) { + case '>': + gtfn = gt; + ltefn = lte; + ltfn = lt; + comp = '>'; + ecomp = '>='; + break; + case '<': + gtfn = lt; + ltefn = gte; + ltfn = gt; + comp = '<'; + ecomp = '<='; + break; + default: + throw new TypeError('Must provide a hilo val of "<" or ">"'); + } + + // If it satisifes the range it is not outside + if (satisfies(version, range, loose)) { + return false; + } + + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i]; + + var high = null; + var low = null; + + comparators.forEach(function(comparator) { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator; + low = low || comparator; + if (gtfn(comparator.semver, high.semver, loose)) { + high = comparator; + } else if (ltfn(comparator.semver, low.semver, loose)) { + low = comparator; + } + }); + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false; + } + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false; + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false; + } + } + return true; +} + +exports.prerelease = prerelease; +function prerelease(version, loose) { + var parsed = parse(version, loose); + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null; +} + +exports.intersects = intersects; +function intersects(r1, r2, loose) { + r1 = new Range(r1, loose) + r2 = new Range(r2, loose) + return r1.intersects(r2) +} + +exports.coerce = coerce; +function coerce(version) { + if (version instanceof SemVer) + return version; + + if (typeof version !== 'string') + return null; + + var match = version.match(re[COERCE]); + + if (match == null) + return null; + + return parse((match[1] || '0') + '.' + (match[2] || '0') + '.' + (match[3] || '0')); +} + + +/***/ }), +/* 23 */ +/***/ (function(module, exports) { + +module.exports = require("stream"); + +/***/ }), +/* 24 */ +/***/ (function(module, exports) { + +module.exports = require("url"); + +/***/ }), +/* 25 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Subscription; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__util_isArray__ = __webpack_require__(41); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__util_isObject__ = __webpack_require__(444); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__util_isFunction__ = __webpack_require__(155); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__util_tryCatch__ = __webpack_require__(57); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__util_errorObject__ = __webpack_require__(48); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__util_UnsubscriptionError__ = __webpack_require__(441); +/** PURE_IMPORTS_START _util_isArray,_util_isObject,_util_isFunction,_util_tryCatch,_util_errorObject,_util_UnsubscriptionError PURE_IMPORTS_END */ + + + + + + +var Subscription = /*@__PURE__*/ (function () { + function Subscription(unsubscribe) { + this.closed = false; + this._parent = null; + this._parents = null; + this._subscriptions = null; + if (unsubscribe) { + this._unsubscribe = unsubscribe; + } + } + Subscription.prototype.unsubscribe = function () { + var hasErrors = false; + var errors; + if (this.closed) { + return; + } + var _a = this, _parent = _a._parent, _parents = _a._parents, _unsubscribe = _a._unsubscribe, _subscriptions = _a._subscriptions; + this.closed = true; + this._parent = null; + this._parents = null; + this._subscriptions = null; + var index = -1; + var len = _parents ? _parents.length : 0; + while (_parent) { + _parent.remove(this); + _parent = ++index < len && _parents[index] || null; + } + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__util_isFunction__["a" /* isFunction */])(_unsubscribe)) { + var trial = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_3__util_tryCatch__["a" /* tryCatch */])(_unsubscribe).call(this); + if (trial === __WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */]) { + hasErrors = true; + errors = errors || (__WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */].e instanceof __WEBPACK_IMPORTED_MODULE_5__util_UnsubscriptionError__["a" /* UnsubscriptionError */] ? + flattenUnsubscriptionErrors(__WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */].e.errors) : [__WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */].e]); + } + } + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__util_isArray__["a" /* isArray */])(_subscriptions)) { + index = -1; + len = _subscriptions.length; + while (++index < len) { + var sub = _subscriptions[index]; + if (__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__util_isObject__["a" /* isObject */])(sub)) { + var trial = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_3__util_tryCatch__["a" /* tryCatch */])(sub.unsubscribe).call(sub); + if (trial === __WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */]) { + hasErrors = true; + errors = errors || []; + var err = __WEBPACK_IMPORTED_MODULE_4__util_errorObject__["a" /* errorObject */].e; + if (err instanceof __WEBPACK_IMPORTED_MODULE_5__util_UnsubscriptionError__["a" /* UnsubscriptionError */]) { + errors = errors.concat(flattenUnsubscriptionErrors(err.errors)); + } + else { + errors.push(err); + } + } + } + } + } + if (hasErrors) { + throw new __WEBPACK_IMPORTED_MODULE_5__util_UnsubscriptionError__["a" /* UnsubscriptionError */](errors); + } + }; + Subscription.prototype.add = function (teardown) { + if (!teardown || (teardown === Subscription.EMPTY)) { + return Subscription.EMPTY; + } + if (teardown === this) { + return this; + } + var subscription = teardown; + switch (typeof teardown) { + case 'function': + subscription = new Subscription(teardown); + case 'object': + if (subscription.closed || typeof subscription.unsubscribe !== 'function') { + return subscription; + } + else if (this.closed) { + subscription.unsubscribe(); + return subscription; + } + else if (typeof subscription._addParent !== 'function') { + var tmp = subscription; + subscription = new Subscription(); + subscription._subscriptions = [tmp]; + } + break; + default: + throw new Error('unrecognized teardown ' + teardown + ' added to Subscription.'); + } + var subscriptions = this._subscriptions || (this._subscriptions = []); + subscriptions.push(subscription); + subscription._addParent(this); + return subscription; + }; + Subscription.prototype.remove = function (subscription) { + var subscriptions = this._subscriptions; + if (subscriptions) { + var subscriptionIndex = subscriptions.indexOf(subscription); + if (subscriptionIndex !== -1) { + subscriptions.splice(subscriptionIndex, 1); + } + } + }; + Subscription.prototype._addParent = function (parent) { + var _a = this, _parent = _a._parent, _parents = _a._parents; + if (!_parent || _parent === parent) { + this._parent = parent; + } + else if (!_parents) { + this._parents = [parent]; + } + else if (_parents.indexOf(parent) === -1) { + _parents.push(parent); + } + }; + Subscription.EMPTY = (function (empty) { + empty.closed = true; + return empty; + }(new Subscription())); + return Subscription; +}()); + +function flattenUnsubscriptionErrors(errors) { + return errors.reduce(function (errs, err) { return errs.concat((err instanceof __WEBPACK_IMPORTED_MODULE_5__util_UnsubscriptionError__["a" /* UnsubscriptionError */]) ? err.errors : err); }, []); +} +//# sourceMappingURL=Subscription.js.map + + +/***/ }), +/* 26 */ +/***/ (function(module, exports, __webpack_require__) { + +// Copyright 2015 Joyent, Inc. + +module.exports = { + bufferSplit: bufferSplit, + addRSAMissing: addRSAMissing, + calculateDSAPublic: calculateDSAPublic, + calculateED25519Public: calculateED25519Public, + calculateX25519Public: calculateX25519Public, + mpNormalize: mpNormalize, + mpDenormalize: mpDenormalize, + ecNormalize: ecNormalize, + countZeros: countZeros, + assertCompatible: assertCompatible, + isCompatible: isCompatible, + opensslKeyDeriv: opensslKeyDeriv, + opensshCipherInfo: opensshCipherInfo, + publicFromPrivateECDSA: publicFromPrivateECDSA, + zeroPadToLength: zeroPadToLength, + writeBitString: writeBitString, + readBitString: readBitString +}; + +var assert = __webpack_require__(16); +var Buffer = __webpack_require__(15).Buffer; +var PrivateKey = __webpack_require__(33); +var Key = __webpack_require__(28); +var crypto = __webpack_require__(11); +var algs = __webpack_require__(32); +var asn1 = __webpack_require__(66); + +var ec, jsbn; +var nacl; + +var MAX_CLASS_DEPTH = 3; + +function isCompatible(obj, klass, needVer) { + if (obj === null || typeof (obj) !== 'object') + return (false); + if (needVer === undefined) + needVer = klass.prototype._sshpkApiVersion; + if (obj instanceof klass && + klass.prototype._sshpkApiVersion[0] == needVer[0]) + return (true); + var proto = Object.getPrototypeOf(obj); + var depth = 0; + while (proto.constructor.name !== klass.name) { + proto = Object.getPrototypeOf(proto); + if (!proto || ++depth > MAX_CLASS_DEPTH) + return (false); + } + if (proto.constructor.name !== klass.name) + return (false); + var ver = proto._sshpkApiVersion; + if (ver === undefined) + ver = klass._oldVersionDetect(obj); + if (ver[0] != needVer[0] || ver[1] < needVer[1]) + return (false); + return (true); +} + +function assertCompatible(obj, klass, needVer, name) { + if (name === undefined) + name = 'object'; + assert.ok(obj, name + ' must not be null'); + assert.object(obj, name + ' must be an object'); + if (needVer === undefined) + needVer = klass.prototype._sshpkApiVersion; + if (obj instanceof klass && + klass.prototype._sshpkApiVersion[0] == needVer[0]) + return; + var proto = Object.getPrototypeOf(obj); + var depth = 0; + while (proto.constructor.name !== klass.name) { + proto = Object.getPrototypeOf(proto); + assert.ok(proto && ++depth <= MAX_CLASS_DEPTH, + name + ' must be a ' + klass.name + ' instance'); + } + assert.strictEqual(proto.constructor.name, klass.name, + name + ' must be a ' + klass.name + ' instance'); + var ver = proto._sshpkApiVersion; + if (ver === undefined) + ver = klass._oldVersionDetect(obj); + assert.ok(ver[0] == needVer[0] && ver[1] >= needVer[1], + name + ' must be compatible with ' + klass.name + ' klass ' + + 'version ' + needVer[0] + '.' + needVer[1]); +} + +var CIPHER_LEN = { + 'des-ede3-cbc': { key: 7, iv: 8 }, + 'aes-128-cbc': { key: 16, iv: 16 } +}; +var PKCS5_SALT_LEN = 8; + +function opensslKeyDeriv(cipher, salt, passphrase, count) { + assert.buffer(salt, 'salt'); + assert.buffer(passphrase, 'passphrase'); + assert.number(count, 'iteration count'); + + var clen = CIPHER_LEN[cipher]; + assert.object(clen, 'supported cipher'); + + salt = salt.slice(0, PKCS5_SALT_LEN); + + var D, D_prev, bufs; + var material = Buffer.alloc(0); + while (material.length < clen.key + clen.iv) { + bufs = []; + if (D_prev) + bufs.push(D_prev); + bufs.push(passphrase); + bufs.push(salt); + D = Buffer.concat(bufs); + for (var j = 0; j < count; ++j) + D = crypto.createHash('md5').update(D).digest(); + material = Buffer.concat([material, D]); + D_prev = D; + } + + return ({ + key: material.slice(0, clen.key), + iv: material.slice(clen.key, clen.key + clen.iv) + }); +} + +/* Count leading zero bits on a buffer */ +function countZeros(buf) { + var o = 0, obit = 8; + while (o < buf.length) { + var mask = (1 << obit); + if ((buf[o] & mask) === mask) + break; + obit--; + if (obit < 0) { + o++; + obit = 8; + } + } + return (o*8 + (8 - obit) - 1); +} + +function bufferSplit(buf, chr) { + assert.buffer(buf); + assert.string(chr); + + var parts = []; + var lastPart = 0; + var matches = 0; + for (var i = 0; i < buf.length; ++i) { + if (buf[i] === chr.charCodeAt(matches)) + ++matches; + else if (buf[i] === chr.charCodeAt(0)) + matches = 1; + else + matches = 0; + + if (matches >= chr.length) { + var newPart = i + 1; + parts.push(buf.slice(lastPart, newPart - matches)); + lastPart = newPart; + matches = 0; + } + } + if (lastPart <= buf.length) + parts.push(buf.slice(lastPart, buf.length)); + + return (parts); +} + +function ecNormalize(buf, addZero) { + assert.buffer(buf); + if (buf[0] === 0x00 && buf[1] === 0x04) { + if (addZero) + return (buf); + return (buf.slice(1)); + } else if (buf[0] === 0x04) { + if (!addZero) + return (buf); + } else { + while (buf[0] === 0x00) + buf = buf.slice(1); + if (buf[0] === 0x02 || buf[0] === 0x03) + throw (new Error('Compressed elliptic curve points ' + + 'are not supported')); + if (buf[0] !== 0x04) + throw (new Error('Not a valid elliptic curve point')); + if (!addZero) + return (buf); + } + var b = Buffer.alloc(buf.length + 1); + b[0] = 0x0; + buf.copy(b, 1); + return (b); +} + +function readBitString(der, tag) { + if (tag === undefined) + tag = asn1.Ber.BitString; + var buf = der.readString(tag, true); + assert.strictEqual(buf[0], 0x00, 'bit strings with unused bits are ' + + 'not supported (0x' + buf[0].toString(16) + ')'); + return (buf.slice(1)); +} + +function writeBitString(der, buf, tag) { + if (tag === undefined) + tag = asn1.Ber.BitString; + var b = Buffer.alloc(buf.length + 1); + b[0] = 0x00; + buf.copy(b, 1); + der.writeBuffer(b, tag); +} + +function mpNormalize(buf) { + assert.buffer(buf); + while (buf.length > 1 && buf[0] === 0x00 && (buf[1] & 0x80) === 0x00) + buf = buf.slice(1); + if ((buf[0] & 0x80) === 0x80) { + var b = Buffer.alloc(buf.length + 1); + b[0] = 0x00; + buf.copy(b, 1); + buf = b; + } + return (buf); +} + +function mpDenormalize(buf) { + assert.buffer(buf); + while (buf.length > 1 && buf[0] === 0x00) + buf = buf.slice(1); + return (buf); +} + +function zeroPadToLength(buf, len) { + assert.buffer(buf); + assert.number(len); + while (buf.length > len) { + assert.equal(buf[0], 0x00); + buf = buf.slice(1); + } + while (buf.length < len) { + var b = Buffer.alloc(buf.length + 1); + b[0] = 0x00; + buf.copy(b, 1); + buf = b; + } + return (buf); +} + +function bigintToMpBuf(bigint) { + var buf = Buffer.from(bigint.toByteArray()); + buf = mpNormalize(buf); + return (buf); +} + +function calculateDSAPublic(g, p, x) { + assert.buffer(g); + assert.buffer(p); + assert.buffer(x); + try { + var bigInt = __webpack_require__(81).BigInteger; + } catch (e) { + throw (new Error('To load a PKCS#8 format DSA private key, ' + + 'the node jsbn library is required.')); + } + g = new bigInt(g); + p = new bigInt(p); + x = new bigInt(x); + var y = g.modPow(x, p); + var ybuf = bigintToMpBuf(y); + return (ybuf); +} + +function calculateED25519Public(k) { + assert.buffer(k); + + if (nacl === undefined) + nacl = __webpack_require__(76); + + var kp = nacl.sign.keyPair.fromSeed(new Uint8Array(k)); + return (Buffer.from(kp.publicKey)); +} + +function calculateX25519Public(k) { + assert.buffer(k); + + if (nacl === undefined) + nacl = __webpack_require__(76); + + var kp = nacl.box.keyPair.fromSeed(new Uint8Array(k)); + return (Buffer.from(kp.publicKey)); +} + +function addRSAMissing(key) { + assert.object(key); + assertCompatible(key, PrivateKey, [1, 1]); + try { + var bigInt = __webpack_require__(81).BigInteger; + } catch (e) { + throw (new Error('To write a PEM private key from ' + + 'this source, the node jsbn lib is required.')); + } + + var d = new bigInt(key.part.d.data); + var buf; + + if (!key.part.dmodp) { + var p = new bigInt(key.part.p.data); + var dmodp = d.mod(p.subtract(1)); + + buf = bigintToMpBuf(dmodp); + key.part.dmodp = {name: 'dmodp', data: buf}; + key.parts.push(key.part.dmodp); + } + if (!key.part.dmodq) { + var q = new bigInt(key.part.q.data); + var dmodq = d.mod(q.subtract(1)); + + buf = bigintToMpBuf(dmodq); + key.part.dmodq = {name: 'dmodq', data: buf}; + key.parts.push(key.part.dmodq); + } +} + +function publicFromPrivateECDSA(curveName, priv) { + assert.string(curveName, 'curveName'); + assert.buffer(priv); + if (ec === undefined) + ec = __webpack_require__(140); + if (jsbn === undefined) + jsbn = __webpack_require__(81).BigInteger; + var params = algs.curves[curveName]; + var p = new jsbn(params.p); + var a = new jsbn(params.a); + var b = new jsbn(params.b); + var curve = new ec.ECCurveFp(p, a, b); + var G = curve.decodePointHex(params.G.toString('hex')); + + var d = new jsbn(mpNormalize(priv)); + var pub = G.multiply(d); + pub = Buffer.from(curve.encodePointHex(pub), 'hex'); + + var parts = []; + parts.push({name: 'curve', data: Buffer.from(curveName)}); + parts.push({name: 'Q', data: pub}); + + var key = new Key({type: 'ecdsa', curve: curve, parts: parts}); + return (key); +} + +function opensshCipherInfo(cipher) { + var inf = {}; + switch (cipher) { + case '3des-cbc': + inf.keySize = 24; + inf.blockSize = 8; + inf.opensslName = 'des-ede3-cbc'; + break; + case 'blowfish-cbc': + inf.keySize = 16; + inf.blockSize = 8; + inf.opensslName = 'bf-cbc'; + break; + case 'aes128-cbc': + case 'aes128-ctr': + case 'aes128-gcm@openssh.com': + inf.keySize = 16; + inf.blockSize = 16; + inf.opensslName = 'aes-128-' + cipher.slice(7, 10); + break; + case 'aes192-cbc': + case 'aes192-ctr': + case 'aes192-gcm@openssh.com': + inf.keySize = 24; + inf.blockSize = 16; + inf.opensslName = 'aes-192-' + cipher.slice(7, 10); + break; + case 'aes256-cbc': + case 'aes256-ctr': + case 'aes256-gcm@openssh.com': + inf.keySize = 32; + inf.blockSize = 16; + inf.opensslName = 'aes-256-' + cipher.slice(7, 10); + break; + default: + throw (new Error( + 'Unsupported openssl cipher "' + cipher + '"')); + } + return (inf); +} + + +/***/ }), +/* 27 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +const escapeStringRegexp = __webpack_require__(382); +const ansiStyles = __webpack_require__(474); +const stdoutColor = __webpack_require__(566).stdout; + +const template = __webpack_require__(567); + +const isSimpleWindowsTerm = process.platform === 'win32' && !(process.env.TERM || '').toLowerCase().startsWith('xterm'); + +// `supportsColor.level` → `ansiStyles.color[name]` mapping +const levelMapping = ['ansi', 'ansi', 'ansi256', 'ansi16m']; + +// `color-convert` models to exclude from the Chalk API due to conflicts and such +const skipModels = new Set(['gray']); + +const styles = Object.create(null); + +function applyOptions(obj, options) { + options = options || {}; + + // Detect level if not set manually + const scLevel = stdoutColor ? stdoutColor.level : 0; + obj.level = options.level === undefined ? scLevel : options.level; + obj.enabled = 'enabled' in options ? options.enabled : obj.level > 0; +} + +function Chalk(options) { + // We check for this.template here since calling `chalk.constructor()` + // by itself will have a `this` of a previously constructed chalk object + if (!this || !(this instanceof Chalk) || this.template) { + const chalk = {}; + applyOptions(chalk, options); + + chalk.template = function () { + const args = [].slice.call(arguments); + return chalkTag.apply(null, [chalk.template].concat(args)); + }; + + Object.setPrototypeOf(chalk, Chalk.prototype); + Object.setPrototypeOf(chalk.template, chalk); + + chalk.template.constructor = Chalk; + + return chalk.template; + } + + applyOptions(this, options); +} + +// Use bright blue on Windows as the normal blue color is illegible +if (isSimpleWindowsTerm) { + ansiStyles.blue.open = '\u001B[94m'; +} + +for (const key of Object.keys(ansiStyles)) { + ansiStyles[key].closeRe = new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g'); + + styles[key] = { + get() { + const codes = ansiStyles[key]; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, key); + } + }; +} + +styles.visible = { + get() { + return build.call(this, this._styles || [], true, 'visible'); + } +}; + +ansiStyles.color.closeRe = new RegExp(escapeStringRegexp(ansiStyles.color.close), 'g'); +for (const model of Object.keys(ansiStyles.color.ansi)) { + if (skipModels.has(model)) { + continue; + } + + styles[model] = { + get() { + const level = this.level; + return function () { + const open = ansiStyles.color[levelMapping[level]][model].apply(null, arguments); + const codes = { + open, + close: ansiStyles.color.close, + closeRe: ansiStyles.color.closeRe + }; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, model); + }; + } + }; +} + +ansiStyles.bgColor.closeRe = new RegExp(escapeStringRegexp(ansiStyles.bgColor.close), 'g'); +for (const model of Object.keys(ansiStyles.bgColor.ansi)) { + if (skipModels.has(model)) { + continue; + } + + const bgModel = 'bg' + model[0].toUpperCase() + model.slice(1); + styles[bgModel] = { + get() { + const level = this.level; + return function () { + const open = ansiStyles.bgColor[levelMapping[level]][model].apply(null, arguments); + const codes = { + open, + close: ansiStyles.bgColor.close, + closeRe: ansiStyles.bgColor.closeRe + }; + return build.call(this, this._styles ? this._styles.concat(codes) : [codes], this._empty, model); + }; + } + }; +} + +const proto = Object.defineProperties(() => {}, styles); + +function build(_styles, _empty, key) { + const builder = function () { + return applyStyle.apply(builder, arguments); + }; + + builder._styles = _styles; + builder._empty = _empty; + + const self = this; + + Object.defineProperty(builder, 'level', { + enumerable: true, + get() { + return self.level; + }, + set(level) { + self.level = level; + } + }); + + Object.defineProperty(builder, 'enabled', { + enumerable: true, + get() { + return self.enabled; + }, + set(enabled) { + self.enabled = enabled; + } + }); + + // See below for fix regarding invisible grey/dim combination on Windows + builder.hasGrey = this.hasGrey || key === 'gray' || key === 'grey'; + + // `__proto__` is used because we must return a function, but there is + // no way to create a function with a different prototype + builder.__proto__ = proto; // eslint-disable-line no-proto + + return builder; +} + +function applyStyle() { + // Support varags, but simply cast to string in case there's only one arg + const args = arguments; + const argsLen = args.length; + let str = String(arguments[0]); + + if (argsLen === 0) { + return ''; + } + + if (argsLen > 1) { + // Don't slice `arguments`, it prevents V8 optimizations + for (let a = 1; a < argsLen; a++) { + str += ' ' + args[a]; + } + } + + if (!this.enabled || this.level <= 0 || !str) { + return this._empty ? '' : str; + } + + // Turns out that on Windows dimmed gray text becomes invisible in cmd.exe, + // see https://github.com/chalk/chalk/issues/58 + // If we're on Windows and we're dealing with a gray color, temporarily make 'dim' a noop. + const originalDim = ansiStyles.dim.open; + if (isSimpleWindowsTerm && this.hasGrey) { + ansiStyles.dim.open = ''; + } + + for (const code of this._styles.slice().reverse()) { + // Replace any instances already present with a re-opening code + // otherwise only the part of the string until said closing code + // will be colored, and the rest will simply be 'plain'. + str = code.open + str.replace(code.closeRe, code.open) + code.close; + + // Close the styling before a linebreak and reopen + // after next line to fix a bleed issue on macOS + // https://github.com/chalk/chalk/pull/92 + str = str.replace(/\r?\n/g, `${code.close}$&${code.open}`); + } + + // Reset the original `dim` if we changed it to work around the Windows dimmed gray issue + ansiStyles.dim.open = originalDim; + + return str; +} + +function chalkTag(chalk, strings) { + if (!Array.isArray(strings)) { + // If chalk() was called by itself or with a string, + // return the string itself as a string. + return [].slice.call(arguments, 1).join(' '); + } + + const args = [].slice.call(arguments, 2); + const parts = [strings.raw[0]]; + + for (let i = 1; i < strings.length; i++) { + parts.push(String(args[i - 1]).replace(/[{}\\]/g, '\\$&')); + parts.push(String(strings.raw[i])); + } + + return template(chalk, parts.join('')); +} + +Object.defineProperties(Chalk.prototype, styles); + +module.exports = Chalk(); // eslint-disable-line new-cap +module.exports.supportsColor = stdoutColor; +module.exports.default = module.exports; // For TypeScript + + +/***/ }), +/* 28 */ +/***/ (function(module, exports, __webpack_require__) { + +// Copyright 2017 Joyent, Inc. + +module.exports = Key; + +var assert = __webpack_require__(16); +var algs = __webpack_require__(32); +var crypto = __webpack_require__(11); +var Fingerprint = __webpack_require__(157); +var Signature = __webpack_require__(75); +var DiffieHellman = __webpack_require__(326).DiffieHellman; +var errs = __webpack_require__(74); +var utils = __webpack_require__(26); +var PrivateKey = __webpack_require__(33); +var edCompat; + +try { + edCompat = __webpack_require__(454); +} catch (e) { + /* Just continue through, and bail out if we try to use it. */ +} + +var InvalidAlgorithmError = errs.InvalidAlgorithmError; +var KeyParseError = errs.KeyParseError; + +var formats = {}; +formats['auto'] = __webpack_require__(455); +formats['pem'] = __webpack_require__(86); +formats['pkcs1'] = __webpack_require__(328); +formats['pkcs8'] = __webpack_require__(158); +formats['rfc4253'] = __webpack_require__(103); +formats['ssh'] = __webpack_require__(456); +formats['ssh-private'] = __webpack_require__(193); +formats['openssh'] = formats['ssh-private']; +formats['dnssec'] = __webpack_require__(327); + +function Key(opts) { + assert.object(opts, 'options'); + assert.arrayOfObject(opts.parts, 'options.parts'); + assert.string(opts.type, 'options.type'); + assert.optionalString(opts.comment, 'options.comment'); + + var algInfo = algs.info[opts.type]; + if (typeof (algInfo) !== 'object') + throw (new InvalidAlgorithmError(opts.type)); + + var partLookup = {}; + for (var i = 0; i < opts.parts.length; ++i) { + var part = opts.parts[i]; + partLookup[part.name] = part; + } + + this.type = opts.type; + this.parts = opts.parts; + this.part = partLookup; + this.comment = undefined; + this.source = opts.source; + + /* for speeding up hashing/fingerprint operations */ + this._rfc4253Cache = opts._rfc4253Cache; + this._hashCache = {}; + + var sz; + this.curve = undefined; + if (this.type === 'ecdsa') { + var curve = this.part.curve.data.toString(); + this.curve = curve; + sz = algs.curves[curve].size; + } else if (this.type === 'ed25519' || this.type === 'curve25519') { + sz = 256; + this.curve = 'curve25519'; + } else { + var szPart = this.part[algInfo.sizePart]; + sz = szPart.data.length; + sz = sz * 8 - utils.countZeros(szPart.data); + } + this.size = sz; +} + +Key.formats = formats; + +Key.prototype.toBuffer = function (format, options) { + if (format === undefined) + format = 'ssh'; + assert.string(format, 'format'); + assert.object(formats[format], 'formats[format]'); + assert.optionalObject(options, 'options'); + + if (format === 'rfc4253') { + if (this._rfc4253Cache === undefined) + this._rfc4253Cache = formats['rfc4253'].write(this); + return (this._rfc4253Cache); + } + + return (formats[format].write(this, options)); +}; + +Key.prototype.toString = function (format, options) { + return (this.toBuffer(format, options).toString()); +}; + +Key.prototype.hash = function (algo) { + assert.string(algo, 'algorithm'); + algo = algo.toLowerCase(); + if (algs.hashAlgs[algo] === undefined) + throw (new InvalidAlgorithmError(algo)); + + if (this._hashCache[algo]) + return (this._hashCache[algo]); + var hash = crypto.createHash(algo). + update(this.toBuffer('rfc4253')).digest(); + this._hashCache[algo] = hash; + return (hash); +}; + +Key.prototype.fingerprint = function (algo) { + if (algo === undefined) + algo = 'sha256'; + assert.string(algo, 'algorithm'); + var opts = { + type: 'key', + hash: this.hash(algo), + algorithm: algo + }; + return (new Fingerprint(opts)); +}; + +Key.prototype.defaultHashAlgorithm = function () { + var hashAlgo = 'sha1'; + if (this.type === 'rsa') + hashAlgo = 'sha256'; + if (this.type === 'dsa' && this.size > 1024) + hashAlgo = 'sha256'; + if (this.type === 'ed25519') + hashAlgo = 'sha512'; + if (this.type === 'ecdsa') { + if (this.size <= 256) + hashAlgo = 'sha256'; + else if (this.size <= 384) + hashAlgo = 'sha384'; + else + hashAlgo = 'sha512'; + } + return (hashAlgo); +}; + +Key.prototype.createVerify = function (hashAlgo) { + if (hashAlgo === undefined) + hashAlgo = this.defaultHashAlgorithm(); + assert.string(hashAlgo, 'hash algorithm'); + + /* ED25519 is not supported by OpenSSL, use a javascript impl. */ + if (this.type === 'ed25519' && edCompat !== undefined) + return (new edCompat.Verifier(this, hashAlgo)); + if (this.type === 'curve25519') + throw (new Error('Curve25519 keys are not suitable for ' + + 'signing or verification')); + + var v, nm, err; + try { + nm = hashAlgo.toUpperCase(); + v = crypto.createVerify(nm); + } catch (e) { + err = e; + } + if (v === undefined || (err instanceof Error && + err.message.match(/Unknown message digest/))) { + nm = 'RSA-'; + nm += hashAlgo.toUpperCase(); + v = crypto.createVerify(nm); + } + assert.ok(v, 'failed to create verifier'); + var oldVerify = v.verify.bind(v); + var key = this.toBuffer('pkcs8'); + var curve = this.curve; + var self = this; + v.verify = function (signature, fmt) { + if (Signature.isSignature(signature, [2, 0])) { + if (signature.type !== self.type) + return (false); + if (signature.hashAlgorithm && + signature.hashAlgorithm !== hashAlgo) + return (false); + if (signature.curve && self.type === 'ecdsa' && + signature.curve !== curve) + return (false); + return (oldVerify(key, signature.toBuffer('asn1'))); + + } else if (typeof (signature) === 'string' || + Buffer.isBuffer(signature)) { + return (oldVerify(key, signature, fmt)); + + /* + * Avoid doing this on valid arguments, walking the prototype + * chain can be quite slow. + */ + } else if (Signature.isSignature(signature, [1, 0])) { + throw (new Error('signature was created by too old ' + + 'a version of sshpk and cannot be verified')); + + } else { + throw (new TypeError('signature must be a string, ' + + 'Buffer, or Signature object')); + } + }; + return (v); +}; + +Key.prototype.createDiffieHellman = function () { + if (this.type === 'rsa') + throw (new Error('RSA keys do not support Diffie-Hellman')); + + return (new DiffieHellman(this)); +}; +Key.prototype.createDH = Key.prototype.createDiffieHellman; + +Key.parse = function (data, format, options) { + if (typeof (data) !== 'string') + assert.buffer(data, 'data'); + if (format === undefined) + format = 'auto'; + assert.string(format, 'format'); + if (typeof (options) === 'string') + options = { filename: options }; + assert.optionalObject(options, 'options'); + if (options === undefined) + options = {}; + assert.optionalString(options.filename, 'options.filename'); + if (options.filename === undefined) + options.filename = '(unnamed)'; + + assert.object(formats[format], 'formats[format]'); + + try { + var k = formats[format].read(data, options); + if (k instanceof PrivateKey) + k = k.toPublic(); + if (!k.comment) + k.comment = options.filename; + return (k); + } catch (e) { + if (e.name === 'KeyEncryptedError') + throw (e); + throw (new KeyParseError(options.filename, format, e)); + } +}; + +Key.isKey = function (obj, ver) { + return (utils.isCompatible(obj, Key, ver)); +}; + +/* + * API versions for Key: + * [1,0] -- initial ver, may take Signature for createVerify or may not + * [1,1] -- added pkcs1, pkcs8 formats + * [1,2] -- added auto, ssh-private, openssh formats + * [1,3] -- added defaultHashAlgorithm + * [1,4] -- added ed support, createDH + * [1,5] -- first explicitly tagged version + * [1,6] -- changed ed25519 part names + */ +Key.prototype._sshpkApiVersion = [1, 6]; + +Key._oldVersionDetect = function (obj) { + assert.func(obj.toBuffer); + assert.func(obj.fingerprint); + if (obj.createDH) + return ([1, 4]); + if (obj.defaultHashAlgorithm) + return ([1, 3]); + if (obj.formats['auto']) + return ([1, 2]); + if (obj.formats['pkcs1']) + return ([1, 1]); + return ([1, 0]); +}; + + +/***/ }), +/* 29 */ +/***/ (function(module, exports) { + +module.exports = require("assert"); + +/***/ }), +/* 30 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = nullify; +function nullify(obj = {}) { + if (Array.isArray(obj)) { + for (var _iterator = obj, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { + var _ref; + + if (_isArray) { + if (_i >= _iterator.length) break; + _ref = _iterator[_i++]; + } else { + _i = _iterator.next(); + if (_i.done) break; + _ref = _i.value; + } + + const item = _ref; + + nullify(item); + } + } else if (obj !== null && typeof obj === 'object' || typeof obj === 'function') { + Object.setPrototypeOf(obj, null); + + // for..in can only be applied to 'object', not 'function' + if (typeof obj === 'object') { + for (const key in obj) { + nullify(obj[key]); + } + } + } + + return obj; +} + +/***/ }), +/* 31 */ +/***/ (function(module, exports) { + +var core = module.exports = { version: '2.5.7' }; +if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef + + +/***/ }), +/* 32 */ +/***/ (function(module, exports, __webpack_require__) { + +// Copyright 2015 Joyent, Inc. + +var Buffer = __webpack_require__(15).Buffer; + +var algInfo = { + 'dsa': { + parts: ['p', 'q', 'g', 'y'], + sizePart: 'p' + }, + 'rsa': { + parts: ['e', 'n'], + sizePart: 'n' + }, + 'ecdsa': { + parts: ['curve', 'Q'], + sizePart: 'Q' + }, + 'ed25519': { + parts: ['A'], + sizePart: 'A' + } +}; +algInfo['curve25519'] = algInfo['ed25519']; + +var algPrivInfo = { + 'dsa': { + parts: ['p', 'q', 'g', 'y', 'x'] + }, + 'rsa': { + parts: ['n', 'e', 'd', 'iqmp', 'p', 'q'] + }, + 'ecdsa': { + parts: ['curve', 'Q', 'd'] + }, + 'ed25519': { + parts: ['A', 'k'] + } +}; +algPrivInfo['curve25519'] = algPrivInfo['ed25519']; + +var hashAlgs = { + 'md5': true, + 'sha1': true, + 'sha256': true, + 'sha384': true, + 'sha512': true +}; + +/* + * Taken from + * http://csrc.nist.gov/groups/ST/toolkit/documents/dss/NISTReCur.pdf + */ +var curves = { + 'nistp256': { + size: 256, + pkcs8oid: '1.2.840.10045.3.1.7', + p: Buffer.from(('00' + + 'ffffffff 00000001 00000000 00000000' + + '00000000 ffffffff ffffffff ffffffff'). + replace(/ /g, ''), 'hex'), + a: Buffer.from(('00' + + 'FFFFFFFF 00000001 00000000 00000000' + + '00000000 FFFFFFFF FFFFFFFF FFFFFFFC'). + replace(/ /g, ''), 'hex'), + b: Buffer.from(( + '5ac635d8 aa3a93e7 b3ebbd55 769886bc' + + '651d06b0 cc53b0f6 3bce3c3e 27d2604b'). + replace(/ /g, ''), 'hex'), + s: Buffer.from(('00' + + 'c49d3608 86e70493 6a6678e1 139d26b7' + + '819f7e90'). + replace(/ /g, ''), 'hex'), + n: Buffer.from(('00' + + 'ffffffff 00000000 ffffffff ffffffff' + + 'bce6faad a7179e84 f3b9cac2 fc632551'). + replace(/ /g, ''), 'hex'), + G: Buffer.from(('04' + + '6b17d1f2 e12c4247 f8bce6e5 63a440f2' + + '77037d81 2deb33a0 f4a13945 d898c296' + + '4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16' + + '2bce3357 6b315ece cbb64068 37bf51f5'). + replace(/ /g, ''), 'hex') + }, + 'nistp384': { + size: 384, + pkcs8oid: '1.3.132.0.34', + p: Buffer.from(('00' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff ffffffff fffffffe' + + 'ffffffff 00000000 00000000 ffffffff'). + replace(/ /g, ''), 'hex'), + a: Buffer.from(('00' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE' + + 'FFFFFFFF 00000000 00000000 FFFFFFFC'). + replace(/ /g, ''), 'hex'), + b: Buffer.from(( + 'b3312fa7 e23ee7e4 988e056b e3f82d19' + + '181d9c6e fe814112 0314088f 5013875a' + + 'c656398d 8a2ed19d 2a85c8ed d3ec2aef'). + replace(/ /g, ''), 'hex'), + s: Buffer.from(('00' + + 'a335926a a319a27a 1d00896a 6773a482' + + '7acdac73'). + replace(/ /g, ''), 'hex'), + n: Buffer.from(('00' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff c7634d81 f4372ddf' + + '581a0db2 48b0a77a ecec196a ccc52973'). + replace(/ /g, ''), 'hex'), + G: Buffer.from(('04' + + 'aa87ca22 be8b0537 8eb1c71e f320ad74' + + '6e1d3b62 8ba79b98 59f741e0 82542a38' + + '5502f25d bf55296c 3a545e38 72760ab7' + + '3617de4a 96262c6f 5d9e98bf 9292dc29' + + 'f8f41dbd 289a147c e9da3113 b5f0b8c0' + + '0a60b1ce 1d7e819d 7a431d7c 90ea0e5f'). + replace(/ /g, ''), 'hex') + }, + 'nistp521': { + size: 521, + pkcs8oid: '1.3.132.0.35', + p: Buffer.from(( + '01ffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffff').replace(/ /g, ''), 'hex'), + a: Buffer.from(('01FF' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF' + + 'FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFC'). + replace(/ /g, ''), 'hex'), + b: Buffer.from(('51' + + '953eb961 8e1c9a1f 929a21a0 b68540ee' + + 'a2da725b 99b315f3 b8b48991 8ef109e1' + + '56193951 ec7e937b 1652c0bd 3bb1bf07' + + '3573df88 3d2c34f1 ef451fd4 6b503f00'). + replace(/ /g, ''), 'hex'), + s: Buffer.from(('00' + + 'd09e8800 291cb853 96cc6717 393284aa' + + 'a0da64ba').replace(/ /g, ''), 'hex'), + n: Buffer.from(('01ff' + + 'ffffffff ffffffff ffffffff ffffffff' + + 'ffffffff ffffffff ffffffff fffffffa' + + '51868783 bf2f966b 7fcc0148 f709a5d0' + + '3bb5c9b8 899c47ae bb6fb71e 91386409'). + replace(/ /g, ''), 'hex'), + G: Buffer.from(('04' + + '00c6 858e06b7 0404e9cd 9e3ecb66 2395b442' + + '9c648139 053fb521 f828af60 6b4d3dba' + + 'a14b5e77 efe75928 fe1dc127 a2ffa8de' + + '3348b3c1 856a429b f97e7e31 c2e5bd66' + + '0118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9' + + '98f54449 579b4468 17afbd17 273e662c' + + '97ee7299 5ef42640 c550b901 3fad0761' + + '353c7086 a272c240 88be9476 9fd16650'). + replace(/ /g, ''), 'hex') + } +}; + +module.exports = { + info: algInfo, + privInfo: algPrivInfo, + hashAlgs: hashAlgs, + curves: curves +}; + + +/***/ }), +/* 33 */ +/***/ (function(module, exports, __webpack_require__) { + +// Copyright 2017 Joyent, Inc. + +module.exports = PrivateKey; + +var assert = __webpack_require__(16); +var Buffer = __webpack_require__(15).Buffer; +var algs = __webpack_require__(32); +var crypto = __webpack_require__(11); +var Fingerprint = __webpack_require__(157); +var Signature = __webpack_require__(75); +var errs = __webpack_require__(74); +var util = __webpack_require__(3); +var utils = __webpack_require__(26); +var dhe = __webpack_require__(326); +var generateECDSA = dhe.generateECDSA; +var generateED25519 = dhe.generateED25519; +var edCompat; +var nacl; + +try { + edCompat = __webpack_require__(454); +} catch (e) { + /* Just continue through, and bail out if we try to use it. */ +} + +var Key = __webpack_require__(28); + +var InvalidAlgorithmError = errs.InvalidAlgorithmError; +var KeyParseError = errs.KeyParseError; +var KeyEncryptedError = errs.KeyEncryptedError; + +var formats = {}; +formats['auto'] = __webpack_require__(455); +formats['pem'] = __webpack_require__(86); +formats['pkcs1'] = __webpack_require__(328); +formats['pkcs8'] = __webpack_require__(158); +formats['rfc4253'] = __webpack_require__(103); +formats['ssh-private'] = __webpack_require__(193); +formats['openssh'] = formats['ssh-private']; +formats['ssh'] = formats['ssh-private']; +formats['dnssec'] = __webpack_require__(327); + +function PrivateKey(opts) { + assert.object(opts, 'options'); + Key.call(this, opts); + + this._pubCache = undefined; +} +util.inherits(PrivateKey, Key); + +PrivateKey.formats = formats; + +PrivateKey.prototype.toBuffer = function (format, options) { + if (format === undefined) + format = 'pkcs1'; + assert.string(format, 'format'); + assert.object(formats[format], 'formats[format]'); + assert.optionalObject(options, 'options'); + + return (formats[format].write(this, options)); +}; + +PrivateKey.prototype.hash = function (algo) { + return (this.toPublic().hash(algo)); +}; + +PrivateKey.prototype.toPublic = function () { + if (this._pubCache) + return (this._pubCache); + + var algInfo = algs.info[this.type]; + var pubParts = []; + for (var i = 0; i < algInfo.parts.length; ++i) { + var p = algInfo.parts[i]; + pubParts.push(this.part[p]); + } + + this._pubCache = new Key({ + type: this.type, + source: this, + parts: pubParts + }); + if (this.comment) + this._pubCache.comment = this.comment; + return (this._pubCache); +}; + +PrivateKey.prototype.derive = function (newType) { + assert.string(newType, 'type'); + var priv, pub, pair; + + if (this.type === 'ed25519' && newType === 'curve25519') { + if (nacl === undefined) + nacl = __webpack_require__(76); + + priv = this.part.k.data; + if (priv[0] === 0x00) + priv = priv.slice(1); + + pair = nacl.box.keyPair.fromSecretKey(new Uint8Array(priv)); + pub = Buffer.from(pair.publicKey); + + return (new PrivateKey({ + type: 'curve25519', + parts: [ + { name: 'A', data: utils.mpNormalize(pub) }, + { name: 'k', data: utils.mpNormalize(priv) } + ] + })); + } else if (this.type === 'curve25519' && newType === 'ed25519') { + if (nacl === undefined) + nacl = __webpack_require__(76); + + priv = this.part.k.data; + if (priv[0] === 0x00) + priv = priv.slice(1); + + pair = nacl.sign.keyPair.fromSeed(new Uint8Array(priv)); + pub = Buffer.from(pair.publicKey); + + return (new PrivateKey({ + type: 'ed25519', + parts: [ + { name: 'A', data: utils.mpNormalize(pub) }, + { name: 'k', data: utils.mpNormalize(priv) } + ] + })); + } + throw (new Error('Key derivation not supported from ' + this.type + + ' to ' + newType)); +}; + +PrivateKey.prototype.createVerify = function (hashAlgo) { + return (this.toPublic().createVerify(hashAlgo)); +}; + +PrivateKey.prototype.createSign = function (hashAlgo) { + if (hashAlgo === undefined) + hashAlgo = this.defaultHashAlgorithm(); + assert.string(hashAlgo, 'hash algorithm'); + + /* ED25519 is not supported by OpenSSL, use a javascript impl. */ + if (this.type === 'ed25519' && edCompat !== undefined) + return (new edCompat.Signer(this, hashAlgo)); + if (this.type === 'curve25519') + throw (new Error('Curve25519 keys are not suitable for ' + + 'signing or verification')); + + var v, nm, err; + try { + nm = hashAlgo.toUpperCase(); + v = crypto.createSign(nm); + } catch (e) { + err = e; + } + if (v === undefined || (err instanceof Error && + err.message.match(/Unknown message digest/))) { + nm = 'RSA-'; + nm += hashAlgo.toUpperCase(); + v = crypto.createSign(nm); + } + assert.ok(v, 'failed to create verifier'); + var oldSign = v.sign.bind(v); + var key = this.toBuffer('pkcs1'); + var type = this.type; + var curve = this.curve; + v.sign = function () { + var sig = oldSign(key); + if (typeof (sig) === 'string') + sig = Buffer.from(sig, 'binary'); + sig = Signature.parse(sig, type, 'asn1'); + sig.hashAlgorithm = hashAlgo; + sig.curve = curve; + return (sig); + }; + return (v); +}; + +PrivateKey.parse = function (data, format, options) { + if (typeof (data) !== 'string') + assert.buffer(data, 'data'); + if (format === undefined) + format = 'auto'; + assert.string(format, 'format'); + if (typeof (options) === 'string') + options = { filename: options }; + assert.optionalObject(options, 'options'); + if (options === undefined) + options = {}; + assert.optionalString(options.filename, 'options.filename'); + if (options.filename === undefined) + options.filename = '(unnamed)'; + + assert.object(formats[format], 'formats[format]'); + + try { + var k = formats[format].read(data, options); + assert.ok(k instanceof PrivateKey, 'key is not a private key'); + if (!k.comment) + k.comment = options.filename; + return (k); + } catch (e) { + if (e.name === 'KeyEncryptedError') + throw (e); + throw (new KeyParseError(options.filename, format, e)); + } +}; + +PrivateKey.isPrivateKey = function (obj, ver) { + return (utils.isCompatible(obj, PrivateKey, ver)); +}; + +PrivateKey.generate = function (type, options) { + if (options === undefined) + options = {}; + assert.object(options, 'options'); + + switch (type) { + case 'ecdsa': + if (options.curve === undefined) + options.curve = 'nistp256'; + assert.string(options.curve, 'options.curve'); + return (generateECDSA(options.curve)); + case 'ed25519': + return (generateED25519()); + default: + throw (new Error('Key generation not supported with key ' + + 'type "' + type + '"')); + } +}; + +/* + * API versions for PrivateKey: + * [1,0] -- initial ver + * [1,1] -- added auto, pkcs[18], openssh/ssh-private formats + * [1,2] -- added defaultHashAlgorithm + * [1,3] -- added derive, ed, createDH + * [1,4] -- first tagged version + * [1,5] -- changed ed25519 part names and format + */ +PrivateKey.prototype._sshpkApiVersion = [1, 5]; + +PrivateKey._oldVersionDetect = function (obj) { + assert.func(obj.toPublic); + assert.func(obj.createSign); + if (obj.derive) + return ([1, 3]); + if (obj.defaultHashAlgorithm) + return ([1, 2]); + if (obj.formats['auto']) + return ([1, 1]); + return ([1, 0]); +}; + + +/***/ }), +/* 34 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.wrapLifecycle = exports.run = exports.install = exports.Install = undefined; + +var _extends2; + +function _load_extends() { + return _extends2 = _interopRequireDefault(__webpack_require__(20)); +} + +var _asyncToGenerator2; + +function _load_asyncToGenerator() { + return _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(2)); +} + +let install = exports.install = (() => { + var _ref29 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (config, reporter, flags, lockfile) { + yield wrapLifecycle(config, flags, (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const install = new Install(flags, config, reporter, lockfile); + yield install.init(); + })); + }); + + return function install(_x7, _x8, _x9, _x10) { + return _ref29.apply(this, arguments); + }; +})(); + +let run = exports.run = (() => { + var _ref31 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (config, reporter, flags, args) { + let lockfile; + let error = 'installCommandRenamed'; + if (flags.lockfile === false) { + lockfile = new (_lockfile || _load_lockfile()).default(); + } else { + lockfile = yield (_lockfile || _load_lockfile()).default.fromDirectory(config.lockfileFolder, reporter); + } + + if (args.length) { + const exampleArgs = args.slice(); + + if (flags.saveDev) { + exampleArgs.push('--dev'); + } + if (flags.savePeer) { + exampleArgs.push('--peer'); + } + if (flags.saveOptional) { + exampleArgs.push('--optional'); + } + if (flags.saveExact) { + exampleArgs.push('--exact'); + } + if (flags.saveTilde) { + exampleArgs.push('--tilde'); + } + let command = 'add'; + if (flags.global) { + error = 'globalFlagRemoved'; + command = 'global add'; + } + throw new (_errors || _load_errors()).MessageError(reporter.lang(error, `yarn ${command} ${exampleArgs.join(' ')}`)); + } + + yield install(config, reporter, flags, lockfile); + }); + + return function run(_x11, _x12, _x13, _x14) { + return _ref31.apply(this, arguments); + }; +})(); + +let wrapLifecycle = exports.wrapLifecycle = (() => { + var _ref32 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (config, flags, factory) { + yield config.executeLifecycleScript('preinstall'); + + yield factory(); + + // npm behaviour, seems kinda funky but yay compatibility + yield config.executeLifecycleScript('install'); + yield config.executeLifecycleScript('postinstall'); + + if (!config.production) { + if (!config.disablePrepublish) { + yield config.executeLifecycleScript('prepublish'); + } + yield config.executeLifecycleScript('prepare'); + } + }); + + return function wrapLifecycle(_x15, _x16, _x17) { + return _ref32.apply(this, arguments); + }; +})(); + +exports.hasWrapper = hasWrapper; +exports.setFlags = setFlags; + +var _objectPath; + +function _load_objectPath() { + return _objectPath = _interopRequireDefault(__webpack_require__(304)); +} + +var _hooks; + +function _load_hooks() { + return _hooks = __webpack_require__(368); +} + +var _index; + +function _load_index() { + return _index = _interopRequireDefault(__webpack_require__(218)); +} + +var _errors; + +function _load_errors() { + return _errors = __webpack_require__(6); +} + +var _integrityChecker; + +function _load_integrityChecker() { + return _integrityChecker = _interopRequireDefault(__webpack_require__(206)); +} + +var _lockfile; + +function _load_lockfile() { + return _lockfile = _interopRequireDefault(__webpack_require__(19)); +} + +var _lockfile2; + +function _load_lockfile2() { + return _lockfile2 = __webpack_require__(19); +} + +var _packageFetcher; + +function _load_packageFetcher() { + return _packageFetcher = _interopRequireWildcard(__webpack_require__(208)); +} + +var _packageInstallScripts; + +function _load_packageInstallScripts() { + return _packageInstallScripts = _interopRequireDefault(__webpack_require__(525)); +} + +var _packageCompatibility; + +function _load_packageCompatibility() { + return _packageCompatibility = _interopRequireWildcard(__webpack_require__(207)); +} + +var _packageResolver; + +function _load_packageResolver() { + return _packageResolver = _interopRequireDefault(__webpack_require__(360)); +} + +var _packageLinker; + +function _load_packageLinker() { + return _packageLinker = _interopRequireDefault(__webpack_require__(209)); +} + +var _index2; + +function _load_index2() { + return _index2 = __webpack_require__(58); +} + +var _index3; + +function _load_index3() { + return _index3 = __webpack_require__(78); +} + +var _autoclean; + +function _load_autoclean() { + return _autoclean = __webpack_require__(348); +} + +var _constants; + +function _load_constants() { + return _constants = _interopRequireWildcard(__webpack_require__(8)); +} + +var _normalizePattern; + +function _load_normalizePattern() { + return _normalizePattern = __webpack_require__(37); +} + +var _fs; + +function _load_fs() { + return _fs = _interopRequireWildcard(__webpack_require__(5)); +} + +var _map; + +function _load_map() { + return _map = _interopRequireDefault(__webpack_require__(30)); +} + +var _yarnVersion; + +function _load_yarnVersion() { + return _yarnVersion = __webpack_require__(105); +} + +var _generatePnpMap; + +function _load_generatePnpMap() { + return _generatePnpMap = __webpack_require__(547); +} + +var _workspaceLayout; + +function _load_workspaceLayout() { + return _workspaceLayout = _interopRequireDefault(__webpack_require__(90)); +} + +var _resolutionMap; + +function _load_resolutionMap() { + return _resolutionMap = _interopRequireDefault(__webpack_require__(212)); +} + +var _guessName; + +function _load_guessName() { + return _guessName = _interopRequireDefault(__webpack_require__(169)); +} + +var _audit; + +function _load_audit() { + return _audit = _interopRequireDefault(__webpack_require__(347)); +} + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +const deepEqual = __webpack_require__(599); + +const emoji = __webpack_require__(302); +const invariant = __webpack_require__(9); +const path = __webpack_require__(0); +const semver = __webpack_require__(22); +const uuid = __webpack_require__(120); +const ssri = __webpack_require__(65); + +const ONE_DAY = 1000 * 60 * 60 * 24; + +/** + * Try and detect the installation method for Yarn and provide a command to update it with. + */ + +function getUpdateCommand(installationMethod) { + if (installationMethod === 'tar') { + return `curl --compressed -o- -L ${(_constants || _load_constants()).YARN_INSTALLER_SH} | bash`; + } + + if (installationMethod === 'homebrew') { + return 'brew upgrade yarn'; + } + + if (installationMethod === 'deb') { + return 'sudo apt-get update && sudo apt-get install yarn'; + } + + if (installationMethod === 'rpm') { + return 'sudo yum install yarn'; + } + + if (installationMethod === 'npm') { + return 'npm install --global yarn'; + } + + if (installationMethod === 'chocolatey') { + return 'choco upgrade yarn'; + } + + if (installationMethod === 'apk') { + return 'apk update && apk add -u yarn'; + } + + if (installationMethod === 'portage') { + return 'sudo emerge --sync && sudo emerge -au sys-apps/yarn'; + } + + return null; +} + +function getUpdateInstaller(installationMethod) { + // Windows + if (installationMethod === 'msi') { + return (_constants || _load_constants()).YARN_INSTALLER_MSI; + } + + return null; +} + +function normalizeFlags(config, rawFlags) { + const flags = { + // install + har: !!rawFlags.har, + ignorePlatform: !!rawFlags.ignorePlatform, + ignoreEngines: !!rawFlags.ignoreEngines, + ignoreScripts: !!rawFlags.ignoreScripts, + ignoreOptional: !!rawFlags.ignoreOptional, + force: !!rawFlags.force, + flat: !!rawFlags.flat, + lockfile: rawFlags.lockfile !== false, + pureLockfile: !!rawFlags.pureLockfile, + updateChecksums: !!rawFlags.updateChecksums, + skipIntegrityCheck: !!rawFlags.skipIntegrityCheck, + frozenLockfile: !!rawFlags.frozenLockfile, + linkDuplicates: !!rawFlags.linkDuplicates, + checkFiles: !!rawFlags.checkFiles, + audit: !!rawFlags.audit, + + // add + peer: !!rawFlags.peer, + dev: !!rawFlags.dev, + optional: !!rawFlags.optional, + exact: !!rawFlags.exact, + tilde: !!rawFlags.tilde, + ignoreWorkspaceRootCheck: !!rawFlags.ignoreWorkspaceRootCheck, + + // outdated, update-interactive + includeWorkspaceDeps: !!rawFlags.includeWorkspaceDeps, + + // add, remove, update + workspaceRootIsCwd: rawFlags.workspaceRootIsCwd !== false + }; + + if (config.getOption('ignore-scripts')) { + flags.ignoreScripts = true; + } + + if (config.getOption('ignore-platform')) { + flags.ignorePlatform = true; + } + + if (config.getOption('ignore-engines')) { + flags.ignoreEngines = true; + } + + if (config.getOption('ignore-optional')) { + flags.ignoreOptional = true; + } + + if (config.getOption('force')) { + flags.force = true; + } + + return flags; +} + +class Install { + constructor(flags, config, reporter, lockfile) { + this.rootManifestRegistries = []; + this.rootPatternsToOrigin = (0, (_map || _load_map()).default)(); + this.lockfile = lockfile; + this.reporter = reporter; + this.config = config; + this.flags = normalizeFlags(config, flags); + this.resolutions = (0, (_map || _load_map()).default)(); // Legacy resolutions field used for flat install mode + this.resolutionMap = new (_resolutionMap || _load_resolutionMap()).default(config); // Selective resolutions for nested dependencies + this.resolver = new (_packageResolver || _load_packageResolver()).default(config, lockfile, this.resolutionMap); + this.integrityChecker = new (_integrityChecker || _load_integrityChecker()).default(config); + this.linker = new (_packageLinker || _load_packageLinker()).default(config, this.resolver); + this.scripts = new (_packageInstallScripts || _load_packageInstallScripts()).default(config, this.resolver, this.flags.force); + } + + /** + * Create a list of dependency requests from the current directories manifests. + */ + + fetchRequestFromCwd(excludePatterns = [], ignoreUnusedPatterns = false) { + var _this = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const patterns = []; + const deps = []; + let resolutionDeps = []; + const manifest = {}; + + const ignorePatterns = []; + const usedPatterns = []; + let workspaceLayout; + + // some commands should always run in the context of the entire workspace + const cwd = _this.flags.includeWorkspaceDeps || _this.flags.workspaceRootIsCwd ? _this.config.lockfileFolder : _this.config.cwd; + + // non-workspaces are always root, otherwise check for workspace root + const cwdIsRoot = !_this.config.workspaceRootFolder || _this.config.lockfileFolder === cwd; + + // exclude package names that are in install args + const excludeNames = []; + for (var _iterator = excludePatterns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { + var _ref; + + if (_isArray) { + if (_i >= _iterator.length) break; + _ref = _iterator[_i++]; + } else { + _i = _iterator.next(); + if (_i.done) break; + _ref = _i.value; + } + + const pattern = _ref; + + if ((0, (_index3 || _load_index3()).getExoticResolver)(pattern)) { + excludeNames.push((0, (_guessName || _load_guessName()).default)(pattern)); + } else { + // extract the name + const parts = (0, (_normalizePattern || _load_normalizePattern()).normalizePattern)(pattern); + excludeNames.push(parts.name); + } + } + + const stripExcluded = function stripExcluded(manifest) { + for (var _iterator2 = excludeNames, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) { + var _ref2; + + if (_isArray2) { + if (_i2 >= _iterator2.length) break; + _ref2 = _iterator2[_i2++]; + } else { + _i2 = _iterator2.next(); + if (_i2.done) break; + _ref2 = _i2.value; + } + + const exclude = _ref2; + + if (manifest.dependencies && manifest.dependencies[exclude]) { + delete manifest.dependencies[exclude]; + } + if (manifest.devDependencies && manifest.devDependencies[exclude]) { + delete manifest.devDependencies[exclude]; + } + if (manifest.optionalDependencies && manifest.optionalDependencies[exclude]) { + delete manifest.optionalDependencies[exclude]; + } + } + }; + + for (var _iterator3 = Object.keys((_index2 || _load_index2()).registries), _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) { + var _ref3; + + if (_isArray3) { + if (_i3 >= _iterator3.length) break; + _ref3 = _iterator3[_i3++]; + } else { + _i3 = _iterator3.next(); + if (_i3.done) break; + _ref3 = _i3.value; + } + + const registry = _ref3; + + const filename = (_index2 || _load_index2()).registries[registry].filename; + + const loc = path.join(cwd, filename); + if (!(yield (_fs || _load_fs()).exists(loc))) { + continue; + } + + _this.rootManifestRegistries.push(registry); + + const projectManifestJson = yield _this.config.readJson(loc); + yield (0, (_index || _load_index()).default)(projectManifestJson, cwd, _this.config, cwdIsRoot); + + Object.assign(_this.resolutions, projectManifestJson.resolutions); + Object.assign(manifest, projectManifestJson); + + _this.resolutionMap.init(_this.resolutions); + for (var _iterator4 = Object.keys(_this.resolutionMap.resolutionsByPackage), _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) { + var _ref4; + + if (_isArray4) { + if (_i4 >= _iterator4.length) break; + _ref4 = _iterator4[_i4++]; + } else { + _i4 = _iterator4.next(); + if (_i4.done) break; + _ref4 = _i4.value; + } + + const packageName = _ref4; + + const optional = (_objectPath || _load_objectPath()).default.has(manifest.optionalDependencies, packageName) && _this.flags.ignoreOptional; + for (var _iterator8 = _this.resolutionMap.resolutionsByPackage[packageName], _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : _iterator8[Symbol.iterator]();;) { + var _ref9; + + if (_isArray8) { + if (_i8 >= _iterator8.length) break; + _ref9 = _iterator8[_i8++]; + } else { + _i8 = _iterator8.next(); + if (_i8.done) break; + _ref9 = _i8.value; + } + + const _ref8 = _ref9; + const pattern = _ref8.pattern; + + resolutionDeps = [...resolutionDeps, { registry, pattern, optional, hint: 'resolution' }]; + } + } + + const pushDeps = function pushDeps(depType, manifest, { hint, optional }, isUsed) { + if (ignoreUnusedPatterns && !isUsed) { + return; + } + // We only take unused dependencies into consideration to get deterministic hoisting. + // Since flat mode doesn't care about hoisting and everything is top level and specified then we can safely + // leave these out. + if (_this.flags.flat && !isUsed) { + return; + } + const depMap = manifest[depType]; + for (const name in depMap) { + if (excludeNames.indexOf(name) >= 0) { + continue; + } + + let pattern = name; + if (!_this.lockfile.getLocked(pattern)) { + // when we use --save we save the dependency to the lockfile with just the name rather than the + // version combo + pattern += '@' + depMap[name]; + } + + // normalization made sure packages are mentioned only once + if (isUsed) { + usedPatterns.push(pattern); + } else { + ignorePatterns.push(pattern); + } + + _this.rootPatternsToOrigin[pattern] = depType; + patterns.push(pattern); + deps.push({ pattern, registry, hint, optional, workspaceName: manifest.name, workspaceLoc: manifest._loc }); + } + }; + + if (cwdIsRoot) { + pushDeps('dependencies', projectManifestJson, { hint: null, optional: false }, true); + pushDeps('devDependencies', projectManifestJson, { hint: 'dev', optional: false }, !_this.config.production); + pushDeps('optionalDependencies', projectManifestJson, { hint: 'optional', optional: true }, true); + } + + if (_this.config.workspaceRootFolder) { + const workspaceLoc = cwdIsRoot ? loc : path.join(_this.config.lockfileFolder, filename); + const workspacesRoot = path.dirname(workspaceLoc); + + let workspaceManifestJson = projectManifestJson; + if (!cwdIsRoot) { + // the manifest we read before was a child workspace, so get the root + workspaceManifestJson = yield _this.config.readJson(workspaceLoc); + yield (0, (_index || _load_index()).default)(workspaceManifestJson, workspacesRoot, _this.config, true); + } + + const workspaces = yield _this.config.resolveWorkspaces(workspacesRoot, workspaceManifestJson); + workspaceLayout = new (_workspaceLayout || _load_workspaceLayout()).default(workspaces, _this.config); + + // add virtual manifest that depends on all workspaces, this way package hoisters and resolvers will work fine + const workspaceDependencies = (0, (_extends2 || _load_extends()).default)({}, workspaceManifestJson.dependencies); + for (var _iterator5 = Object.keys(workspaces), _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) { + var _ref5; + + if (_isArray5) { + if (_i5 >= _iterator5.length) break; + _ref5 = _iterator5[_i5++]; + } else { + _i5 = _iterator5.next(); + if (_i5.done) break; + _ref5 = _i5.value; + } + + const workspaceName = _ref5; + + const workspaceManifest = workspaces[workspaceName].manifest; + workspaceDependencies[workspaceName] = workspaceManifest.version; + + // include dependencies from all workspaces + if (_this.flags.includeWorkspaceDeps) { + pushDeps('dependencies', workspaceManifest, { hint: null, optional: false }, true); + pushDeps('devDependencies', workspaceManifest, { hint: 'dev', optional: false }, !_this.config.production); + pushDeps('optionalDependencies', workspaceManifest, { hint: 'optional', optional: true }, true); + } + } + const virtualDependencyManifest = { + _uid: '', + name: `workspace-aggregator-${uuid.v4()}`, + version: '1.0.0', + _registry: 'npm', + _loc: workspacesRoot, + dependencies: workspaceDependencies, + devDependencies: (0, (_extends2 || _load_extends()).default)({}, workspaceManifestJson.devDependencies), + optionalDependencies: (0, (_extends2 || _load_extends()).default)({}, workspaceManifestJson.optionalDependencies), + private: workspaceManifestJson.private, + workspaces: workspaceManifestJson.workspaces + }; + workspaceLayout.virtualManifestName = virtualDependencyManifest.name; + const virtualDep = {}; + virtualDep[virtualDependencyManifest.name] = virtualDependencyManifest.version; + workspaces[virtualDependencyManifest.name] = { loc: workspacesRoot, manifest: virtualDependencyManifest }; + + // ensure dependencies that should be excluded are stripped from the correct manifest + stripExcluded(cwdIsRoot ? virtualDependencyManifest : workspaces[projectManifestJson.name].manifest); + + pushDeps('workspaces', { workspaces: virtualDep }, { hint: 'workspaces', optional: false }, true); + + const implicitWorkspaceDependencies = (0, (_extends2 || _load_extends()).default)({}, workspaceDependencies); + + for (var _iterator6 = (_constants || _load_constants()).OWNED_DEPENDENCY_TYPES, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) { + var _ref6; + + if (_isArray6) { + if (_i6 >= _iterator6.length) break; + _ref6 = _iterator6[_i6++]; + } else { + _i6 = _iterator6.next(); + if (_i6.done) break; + _ref6 = _i6.value; + } + + const type = _ref6; + + for (var _iterator7 = Object.keys(projectManifestJson[type] || {}), _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : _iterator7[Symbol.iterator]();;) { + var _ref7; + + if (_isArray7) { + if (_i7 >= _iterator7.length) break; + _ref7 = _iterator7[_i7++]; + } else { + _i7 = _iterator7.next(); + if (_i7.done) break; + _ref7 = _i7.value; + } + + const dependencyName = _ref7; + + delete implicitWorkspaceDependencies[dependencyName]; + } + } + + pushDeps('dependencies', { dependencies: implicitWorkspaceDependencies }, { hint: 'workspaces', optional: false }, true); + } + + break; + } + + // inherit root flat flag + if (manifest.flat) { + _this.flags.flat = true; + } + + return { + requests: [...resolutionDeps, ...deps], + patterns, + manifest, + usedPatterns, + ignorePatterns, + workspaceLayout + }; + })(); + } + + /** + * TODO description + */ + + prepareRequests(requests) { + return requests; + } + + preparePatterns(patterns) { + return patterns; + } + preparePatternsForLinking(patterns, cwdManifest, cwdIsRoot) { + return patterns; + } + + prepareManifests() { + var _this2 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const manifests = yield _this2.config.getRootManifests(); + return manifests; + })(); + } + + bailout(patterns, workspaceLayout) { + var _this3 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + // We don't want to skip the audit - it could yield important errors + if (_this3.flags.audit) { + return false; + } + // PNP is so fast that the integrity check isn't pertinent + if (_this3.config.plugnplayEnabled) { + return false; + } + if (_this3.flags.skipIntegrityCheck || _this3.flags.force) { + return false; + } + const lockfileCache = _this3.lockfile.cache; + if (!lockfileCache) { + return false; + } + const lockfileClean = _this3.lockfile.parseResultType === 'success'; + const match = yield _this3.integrityChecker.check(patterns, lockfileCache, _this3.flags, workspaceLayout); + if (_this3.flags.frozenLockfile && (!lockfileClean || match.missingPatterns.length > 0)) { + throw new (_errors || _load_errors()).MessageError(_this3.reporter.lang('frozenLockfileError')); + } + + const haveLockfile = yield (_fs || _load_fs()).exists(path.join(_this3.config.lockfileFolder, (_constants || _load_constants()).LOCKFILE_FILENAME)); + + const lockfileIntegrityPresent = !_this3.lockfile.hasEntriesExistWithoutIntegrity(); + const integrityBailout = lockfileIntegrityPresent || !_this3.config.autoAddIntegrity; + + if (match.integrityMatches && haveLockfile && lockfileClean && integrityBailout) { + _this3.reporter.success(_this3.reporter.lang('upToDate')); + return true; + } + + if (match.integrityFileMissing && haveLockfile) { + // Integrity file missing, force script installations + _this3.scripts.setForce(true); + return false; + } + + if (match.hardRefreshRequired) { + // e.g. node version doesn't match, force script installations + _this3.scripts.setForce(true); + return false; + } + + if (!patterns.length && !match.integrityFileMissing) { + _this3.reporter.success(_this3.reporter.lang('nothingToInstall')); + yield _this3.createEmptyManifestFolders(); + yield _this3.saveLockfileAndIntegrity(patterns, workspaceLayout); + return true; + } + + return false; + })(); + } + + /** + * Produce empty folders for all used root manifests. + */ + + createEmptyManifestFolders() { + var _this4 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + if (_this4.config.modulesFolder) { + // already created + return; + } + + for (var _iterator9 = _this4.rootManifestRegistries, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : _iterator9[Symbol.iterator]();;) { + var _ref10; + + if (_isArray9) { + if (_i9 >= _iterator9.length) break; + _ref10 = _iterator9[_i9++]; + } else { + _i9 = _iterator9.next(); + if (_i9.done) break; + _ref10 = _i9.value; + } + + const registryName = _ref10; + const folder = _this4.config.registries[registryName].folder; + + yield (_fs || _load_fs()).mkdirp(path.join(_this4.config.lockfileFolder, folder)); + } + })(); + } + + /** + * TODO description + */ + + markIgnored(patterns) { + for (var _iterator10 = patterns, _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : _iterator10[Symbol.iterator]();;) { + var _ref11; + + if (_isArray10) { + if (_i10 >= _iterator10.length) break; + _ref11 = _iterator10[_i10++]; + } else { + _i10 = _iterator10.next(); + if (_i10.done) break; + _ref11 = _i10.value; + } + + const pattern = _ref11; + + const manifest = this.resolver.getStrictResolvedPattern(pattern); + const ref = manifest._reference; + invariant(ref, 'expected package reference'); + + // just mark the package as ignored. if the package is used by a required package, the hoister + // will take care of that. + ref.ignore = true; + } + } + + /** + * helper method that gets only recent manifests + * used by global.ls command + */ + getFlattenedDeps() { + var _this5 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + var _ref12 = yield _this5.fetchRequestFromCwd(); + + const depRequests = _ref12.requests, + rawPatterns = _ref12.patterns; + + + yield _this5.resolver.init(depRequests, {}); + + const manifests = yield (_packageFetcher || _load_packageFetcher()).fetch(_this5.resolver.getManifests(), _this5.config); + _this5.resolver.updateManifests(manifests); + + return _this5.flatten(rawPatterns); + })(); + } + + /** + * TODO description + */ + + init() { + var _this6 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + _this6.checkUpdate(); + + // warn if we have a shrinkwrap + if (yield (_fs || _load_fs()).exists(path.join(_this6.config.lockfileFolder, (_constants || _load_constants()).NPM_SHRINKWRAP_FILENAME))) { + _this6.reporter.warn(_this6.reporter.lang('shrinkwrapWarning')); + } + + // warn if we have an npm lockfile + if (yield (_fs || _load_fs()).exists(path.join(_this6.config.lockfileFolder, (_constants || _load_constants()).NPM_LOCK_FILENAME))) { + _this6.reporter.warn(_this6.reporter.lang('npmLockfileWarning')); + } + + if (_this6.config.plugnplayEnabled) { + _this6.reporter.info(_this6.reporter.lang('plugnplaySuggestV2L1')); + _this6.reporter.info(_this6.reporter.lang('plugnplaySuggestV2L2')); + } + + let flattenedTopLevelPatterns = []; + const steps = []; + + var _ref13 = yield _this6.fetchRequestFromCwd(); + + const depRequests = _ref13.requests, + rawPatterns = _ref13.patterns, + ignorePatterns = _ref13.ignorePatterns, + workspaceLayout = _ref13.workspaceLayout, + manifest = _ref13.manifest; + + let topLevelPatterns = []; + + const artifacts = yield _this6.integrityChecker.getArtifacts(); + if (artifacts) { + _this6.linker.setArtifacts(artifacts); + _this6.scripts.setArtifacts(artifacts); + } + + if ((_packageCompatibility || _load_packageCompatibility()).shouldCheck(manifest, _this6.flags)) { + steps.push((() => { + var _ref14 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (curr, total) { + _this6.reporter.step(curr, total, _this6.reporter.lang('checkingManifest'), emoji.get('mag')); + yield _this6.checkCompatibility(); + }); + + return function (_x, _x2) { + return _ref14.apply(this, arguments); + }; + })()); + } + + const audit = new (_audit || _load_audit()).default(_this6.config, _this6.reporter, { groups: (_constants || _load_constants()).OWNED_DEPENDENCY_TYPES }); + let auditFoundProblems = false; + + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('resolveStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + _this6.reporter.step(curr, total, _this6.reporter.lang('resolvingPackages'), emoji.get('mag')); + yield _this6.resolver.init(_this6.prepareRequests(depRequests), { + isFlat: _this6.flags.flat, + isFrozen: _this6.flags.frozenLockfile, + workspaceLayout + }); + topLevelPatterns = _this6.preparePatterns(rawPatterns); + flattenedTopLevelPatterns = yield _this6.flatten(topLevelPatterns); + return { bailout: !_this6.flags.audit && (yield _this6.bailout(topLevelPatterns, workspaceLayout)) }; + })); + }); + + if (_this6.flags.audit) { + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('auditStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + _this6.reporter.step(curr, total, _this6.reporter.lang('auditRunning'), emoji.get('mag')); + if (_this6.flags.offline) { + _this6.reporter.warn(_this6.reporter.lang('auditOffline')); + return { bailout: false }; + } + const preparedManifests = yield _this6.prepareManifests(); + // $FlowFixMe - Flow considers `m` in the map operation to be "mixed", so does not recognize `m.object` + const mergedManifest = Object.assign({}, ...Object.values(preparedManifests).map(function (m) { + return m.object; + })); + const auditVulnerabilityCounts = yield audit.performAudit(mergedManifest, _this6.lockfile, _this6.resolver, _this6.linker, topLevelPatterns); + auditFoundProblems = auditVulnerabilityCounts.info || auditVulnerabilityCounts.low || auditVulnerabilityCounts.moderate || auditVulnerabilityCounts.high || auditVulnerabilityCounts.critical; + return { bailout: yield _this6.bailout(topLevelPatterns, workspaceLayout) }; + })); + }); + } + + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('fetchStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + _this6.markIgnored(ignorePatterns); + _this6.reporter.step(curr, total, _this6.reporter.lang('fetchingPackages'), emoji.get('truck')); + const manifests = yield (_packageFetcher || _load_packageFetcher()).fetch(_this6.resolver.getManifests(), _this6.config); + _this6.resolver.updateManifests(manifests); + yield (_packageCompatibility || _load_packageCompatibility()).check(_this6.resolver.getManifests(), _this6.config, _this6.flags.ignoreEngines); + })); + }); + + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('linkStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + // remove integrity hash to make this operation atomic + yield _this6.integrityChecker.removeIntegrityFile(); + _this6.reporter.step(curr, total, _this6.reporter.lang('linkingDependencies'), emoji.get('link')); + flattenedTopLevelPatterns = _this6.preparePatternsForLinking(flattenedTopLevelPatterns, manifest, _this6.config.lockfileFolder === _this6.config.cwd); + yield _this6.linker.init(flattenedTopLevelPatterns, workspaceLayout, { + linkDuplicates: _this6.flags.linkDuplicates, + ignoreOptional: _this6.flags.ignoreOptional + }); + })); + }); + + if (_this6.config.plugnplayEnabled) { + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('pnpStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const pnpPath = `${_this6.config.lockfileFolder}/${(_constants || _load_constants()).PNP_FILENAME}`; + + const code = yield (0, (_generatePnpMap || _load_generatePnpMap()).generatePnpMap)(_this6.config, flattenedTopLevelPatterns, { + resolver: _this6.resolver, + reporter: _this6.reporter, + targetPath: pnpPath, + workspaceLayout + }); + + try { + const file = yield (_fs || _load_fs()).readFile(pnpPath); + if (file === code) { + return; + } + } catch (error) {} + + yield (_fs || _load_fs()).writeFile(pnpPath, code); + yield (_fs || _load_fs()).chmod(pnpPath, 0o755); + })); + }); + } + + steps.push(function (curr, total) { + return (0, (_hooks || _load_hooks()).callThroughHook)('buildStep', (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + _this6.reporter.step(curr, total, _this6.flags.force ? _this6.reporter.lang('rebuildingPackages') : _this6.reporter.lang('buildingFreshPackages'), emoji.get('hammer')); + + if (_this6.config.ignoreScripts) { + _this6.reporter.warn(_this6.reporter.lang('ignoredScripts')); + } else { + yield _this6.scripts.init(flattenedTopLevelPatterns); + } + })); + }); + + if (_this6.flags.har) { + steps.push((() => { + var _ref21 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (curr, total) { + const formattedDate = new Date().toISOString().replace(/:/g, '-'); + const filename = `yarn-install_${formattedDate}.har`; + _this6.reporter.step(curr, total, _this6.reporter.lang('savingHar', filename), emoji.get('black_circle_for_record')); + yield _this6.config.requestManager.saveHar(filename); + }); + + return function (_x3, _x4) { + return _ref21.apply(this, arguments); + }; + })()); + } + + if (yield _this6.shouldClean()) { + steps.push((() => { + var _ref22 = (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* (curr, total) { + _this6.reporter.step(curr, total, _this6.reporter.lang('cleaningModules'), emoji.get('recycle')); + yield (0, (_autoclean || _load_autoclean()).clean)(_this6.config, _this6.reporter); + }); + + return function (_x5, _x6) { + return _ref22.apply(this, arguments); + }; + })()); + } + + let currentStep = 0; + for (var _iterator11 = steps, _isArray11 = Array.isArray(_iterator11), _i11 = 0, _iterator11 = _isArray11 ? _iterator11 : _iterator11[Symbol.iterator]();;) { + var _ref23; + + if (_isArray11) { + if (_i11 >= _iterator11.length) break; + _ref23 = _iterator11[_i11++]; + } else { + _i11 = _iterator11.next(); + if (_i11.done) break; + _ref23 = _i11.value; + } + + const step = _ref23; + + const stepResult = yield step(++currentStep, steps.length); + if (stepResult && stepResult.bailout) { + if (_this6.flags.audit) { + audit.summary(); + } + if (auditFoundProblems) { + _this6.reporter.warn(_this6.reporter.lang('auditRunAuditForDetails')); + } + _this6.maybeOutputUpdate(); + return flattenedTopLevelPatterns; + } + } + + // fin! + if (_this6.flags.audit) { + audit.summary(); + } + if (auditFoundProblems) { + _this6.reporter.warn(_this6.reporter.lang('auditRunAuditForDetails')); + } + yield _this6.saveLockfileAndIntegrity(topLevelPatterns, workspaceLayout); + yield _this6.persistChanges(); + _this6.maybeOutputUpdate(); + _this6.config.requestManager.clearCache(); + return flattenedTopLevelPatterns; + })(); + } + + checkCompatibility() { + var _this7 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + var _ref24 = yield _this7.fetchRequestFromCwd(); + + const manifest = _ref24.manifest; + + yield (_packageCompatibility || _load_packageCompatibility()).checkOne(manifest, _this7.config, _this7.flags.ignoreEngines); + })(); + } + + persistChanges() { + var _this8 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + // get all the different registry manifests in this folder + const manifests = yield _this8.config.getRootManifests(); + + if (yield _this8.applyChanges(manifests)) { + yield _this8.config.saveRootManifests(manifests); + } + })(); + } + + applyChanges(manifests) { + let hasChanged = false; + + if (this.config.plugnplayPersist) { + const object = manifests.npm.object; + + + if (typeof object.installConfig !== 'object') { + object.installConfig = {}; + } + + if (this.config.plugnplayEnabled && object.installConfig.pnp !== true) { + object.installConfig.pnp = true; + hasChanged = true; + } else if (!this.config.plugnplayEnabled && typeof object.installConfig.pnp !== 'undefined') { + delete object.installConfig.pnp; + hasChanged = true; + } + + if (Object.keys(object.installConfig).length === 0) { + delete object.installConfig; + } + } + + return Promise.resolve(hasChanged); + } + + /** + * Check if we should run the cleaning step. + */ + + shouldClean() { + return (_fs || _load_fs()).exists(path.join(this.config.lockfileFolder, (_constants || _load_constants()).CLEAN_FILENAME)); + } + + /** + * TODO + */ + + flatten(patterns) { + var _this9 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + if (!_this9.flags.flat) { + return patterns; + } + + const flattenedPatterns = []; + + for (var _iterator12 = _this9.resolver.getAllDependencyNamesByLevelOrder(patterns), _isArray12 = Array.isArray(_iterator12), _i12 = 0, _iterator12 = _isArray12 ? _iterator12 : _iterator12[Symbol.iterator]();;) { + var _ref25; + + if (_isArray12) { + if (_i12 >= _iterator12.length) break; + _ref25 = _iterator12[_i12++]; + } else { + _i12 = _iterator12.next(); + if (_i12.done) break; + _ref25 = _i12.value; + } + + const name = _ref25; + + const infos = _this9.resolver.getAllInfoForPackageName(name).filter(function (manifest) { + const ref = manifest._reference; + invariant(ref, 'expected package reference'); + return !ref.ignore; + }); + + if (infos.length === 0) { + continue; + } + + if (infos.length === 1) { + // single version of this package + // take out a single pattern as multiple patterns may have resolved to this package + flattenedPatterns.push(_this9.resolver.patternsByPackage[name][0]); + continue; + } + + const options = infos.map(function (info) { + const ref = info._reference; + invariant(ref, 'expected reference'); + return { + // TODO `and is required by {PARENT}`, + name: _this9.reporter.lang('manualVersionResolutionOption', ref.patterns.join(', '), info.version), + + value: info.version + }; + }); + const versions = infos.map(function (info) { + return info.version; + }); + let version; + + const resolutionVersion = _this9.resolutions[name]; + if (resolutionVersion && versions.indexOf(resolutionVersion) >= 0) { + // use json `resolution` version + version = resolutionVersion; + } else { + version = yield _this9.reporter.select(_this9.reporter.lang('manualVersionResolution', name), _this9.reporter.lang('answer'), options); + _this9.resolutions[name] = version; + } + + flattenedPatterns.push(_this9.resolver.collapseAllVersionsOfPackage(name, version)); + } + + // save resolutions to their appropriate root manifest + if (Object.keys(_this9.resolutions).length) { + const manifests = yield _this9.config.getRootManifests(); + + for (const name in _this9.resolutions) { + const version = _this9.resolutions[name]; + + const patterns = _this9.resolver.patternsByPackage[name]; + if (!patterns) { + continue; + } + + let manifest; + for (var _iterator13 = patterns, _isArray13 = Array.isArray(_iterator13), _i13 = 0, _iterator13 = _isArray13 ? _iterator13 : _iterator13[Symbol.iterator]();;) { + var _ref26; + + if (_isArray13) { + if (_i13 >= _iterator13.length) break; + _ref26 = _iterator13[_i13++]; + } else { + _i13 = _iterator13.next(); + if (_i13.done) break; + _ref26 = _i13.value; + } + + const pattern = _ref26; + + manifest = _this9.resolver.getResolvedPattern(pattern); + if (manifest) { + break; + } + } + invariant(manifest, 'expected manifest'); + + const ref = manifest._reference; + invariant(ref, 'expected reference'); + + const object = manifests[ref.registry].object; + object.resolutions = object.resolutions || {}; + object.resolutions[name] = version; + } + + yield _this9.config.saveRootManifests(manifests); + } + + return flattenedPatterns; + })(); + } + + /** + * Remove offline tarballs that are no longer required + */ + + pruneOfflineMirror(lockfile) { + var _this10 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const mirror = _this10.config.getOfflineMirrorPath(); + if (!mirror) { + return; + } + + const requiredTarballs = new Set(); + for (const dependency in lockfile) { + const resolved = lockfile[dependency].resolved; + if (resolved) { + const basename = path.basename(resolved.split('#')[0]); + if (dependency[0] === '@' && basename[0] !== '@') { + requiredTarballs.add(`${dependency.split('/')[0]}-${basename}`); + } + requiredTarballs.add(basename); + } + } + + const mirrorFiles = yield (_fs || _load_fs()).walk(mirror); + for (var _iterator14 = mirrorFiles, _isArray14 = Array.isArray(_iterator14), _i14 = 0, _iterator14 = _isArray14 ? _iterator14 : _iterator14[Symbol.iterator]();;) { + var _ref27; + + if (_isArray14) { + if (_i14 >= _iterator14.length) break; + _ref27 = _iterator14[_i14++]; + } else { + _i14 = _iterator14.next(); + if (_i14.done) break; + _ref27 = _i14.value; + } + + const file = _ref27; + + const isTarball = path.extname(file.basename) === '.tgz'; + // if using experimental-pack-script-packages-in-mirror flag, don't unlink prebuilt packages + const hasPrebuiltPackage = file.relative.startsWith('prebuilt/'); + if (isTarball && !hasPrebuiltPackage && !requiredTarballs.has(file.basename)) { + yield (_fs || _load_fs()).unlink(file.absolute); + } + } + })(); + } + + /** + * Save updated integrity and lockfiles. + */ + + saveLockfileAndIntegrity(patterns, workspaceLayout) { + var _this11 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const resolvedPatterns = {}; + Object.keys(_this11.resolver.patterns).forEach(function (pattern) { + if (!workspaceLayout || !workspaceLayout.getManifestByPattern(pattern)) { + resolvedPatterns[pattern] = _this11.resolver.patterns[pattern]; + } + }); + + // TODO this code is duplicated in a few places, need a common way to filter out workspace patterns from lockfile + patterns = patterns.filter(function (p) { + return !workspaceLayout || !workspaceLayout.getManifestByPattern(p); + }); + + const lockfileBasedOnResolver = _this11.lockfile.getLockfile(resolvedPatterns); + + if (_this11.config.pruneOfflineMirror) { + yield _this11.pruneOfflineMirror(lockfileBasedOnResolver); + } + + // write integrity hash + if (!_this11.config.plugnplayEnabled) { + yield _this11.integrityChecker.save(patterns, lockfileBasedOnResolver, _this11.flags, workspaceLayout, _this11.scripts.getArtifacts()); + } + + // --no-lockfile or --pure-lockfile or --frozen-lockfile + if (_this11.flags.lockfile === false || _this11.flags.pureLockfile || _this11.flags.frozenLockfile) { + return; + } + + const lockFileHasAllPatterns = patterns.every(function (p) { + return _this11.lockfile.getLocked(p); + }); + const lockfilePatternsMatch = Object.keys(_this11.lockfile.cache || {}).every(function (p) { + return lockfileBasedOnResolver[p]; + }); + const resolverPatternsAreSameAsInLockfile = Object.keys(lockfileBasedOnResolver).every(function (pattern) { + const manifest = _this11.lockfile.getLocked(pattern); + return manifest && manifest.resolved === lockfileBasedOnResolver[pattern].resolved && deepEqual(manifest.prebuiltVariants, lockfileBasedOnResolver[pattern].prebuiltVariants); + }); + const integrityPatternsAreSameAsInLockfile = Object.keys(lockfileBasedOnResolver).every(function (pattern) { + const existingIntegrityInfo = lockfileBasedOnResolver[pattern].integrity; + if (!existingIntegrityInfo) { + // if this entry does not have an integrity, no need to re-write the lockfile because of it + return true; + } + const manifest = _this11.lockfile.getLocked(pattern); + if (manifest && manifest.integrity) { + const manifestIntegrity = ssri.stringify(manifest.integrity); + return manifestIntegrity === existingIntegrityInfo; + } + return false; + }); + + // remove command is followed by install with force, lockfile will be rewritten in any case then + if (!_this11.flags.force && _this11.lockfile.parseResultType === 'success' && lockFileHasAllPatterns && lockfilePatternsMatch && resolverPatternsAreSameAsInLockfile && integrityPatternsAreSameAsInLockfile && patterns.length) { + return; + } + + // build lockfile location + const loc = path.join(_this11.config.lockfileFolder, (_constants || _load_constants()).LOCKFILE_FILENAME); + + // write lockfile + const lockSource = (0, (_lockfile2 || _load_lockfile2()).stringify)(lockfileBasedOnResolver, false, _this11.config.enableLockfileVersions); + yield (_fs || _load_fs()).writeFilePreservingEol(loc, lockSource); + + _this11._logSuccessSaveLockfile(); + })(); + } + + _logSuccessSaveLockfile() { + this.reporter.success(this.reporter.lang('savedLockfile')); + } + + /** + * Load the dependency graph of the current install. Only does package resolving and wont write to the cwd. + */ + hydrate(ignoreUnusedPatterns) { + var _this12 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + const request = yield _this12.fetchRequestFromCwd([], ignoreUnusedPatterns); + const depRequests = request.requests, + rawPatterns = request.patterns, + ignorePatterns = request.ignorePatterns, + workspaceLayout = request.workspaceLayout; + + + yield _this12.resolver.init(depRequests, { + isFlat: _this12.flags.flat, + isFrozen: _this12.flags.frozenLockfile, + workspaceLayout + }); + yield _this12.flatten(rawPatterns); + _this12.markIgnored(ignorePatterns); + + // fetch packages, should hit cache most of the time + const manifests = yield (_packageFetcher || _load_packageFetcher()).fetch(_this12.resolver.getManifests(), _this12.config); + _this12.resolver.updateManifests(manifests); + yield (_packageCompatibility || _load_packageCompatibility()).check(_this12.resolver.getManifests(), _this12.config, _this12.flags.ignoreEngines); + + // expand minimal manifests + for (var _iterator15 = _this12.resolver.getManifests(), _isArray15 = Array.isArray(_iterator15), _i15 = 0, _iterator15 = _isArray15 ? _iterator15 : _iterator15[Symbol.iterator]();;) { + var _ref28; + + if (_isArray15) { + if (_i15 >= _iterator15.length) break; + _ref28 = _iterator15[_i15++]; + } else { + _i15 = _iterator15.next(); + if (_i15.done) break; + _ref28 = _i15.value; + } + + const manifest = _ref28; + + const ref = manifest._reference; + invariant(ref, 'expected reference'); + const type = ref.remote.type; + // link specifier won't ever hit cache + + let loc = ''; + if (type === 'link') { + continue; + } else if (type === 'workspace') { + if (!ref.remote.reference) { + continue; + } + loc = ref.remote.reference; + } else { + loc = _this12.config.generateModuleCachePath(ref); + } + const newPkg = yield _this12.config.readManifest(loc); + yield _this12.resolver.updateManifest(ref, newPkg); + } + + return request; + })(); + } + + /** + * Check for updates every day and output a nag message if there's a newer version. + */ + + checkUpdate() { + if (this.config.nonInteractive) { + // don't show upgrade dialog on CI or non-TTY terminals + return; + } + + // don't check if disabled + if (this.config.getOption('disable-self-update-check')) { + return; + } + + // only check for updates once a day + const lastUpdateCheck = Number(this.config.getOption('lastUpdateCheck')) || 0; + if (lastUpdateCheck && Date.now() - lastUpdateCheck < ONE_DAY) { + return; + } + + // don't bug for updates on tagged releases + if ((_yarnVersion || _load_yarnVersion()).version.indexOf('-') >= 0) { + return; + } + + this._checkUpdate().catch(() => { + // swallow errors + }); + } + + _checkUpdate() { + var _this13 = this; + + return (0, (_asyncToGenerator2 || _load_asyncToGenerator()).default)(function* () { + let latestVersion = yield _this13.config.requestManager.request({ + url: (_constants || _load_constants()).SELF_UPDATE_VERSION_URL + }); + invariant(typeof latestVersion === 'string', 'expected string'); + latestVersion = latestVersion.trim(); + if (!semver.valid(latestVersion)) { + return; + } + + // ensure we only check for updates periodically + _this13.config.registries.yarn.saveHomeConfig({ + lastUpdateCheck: Date.now() + }); + + if (semver.gt(latestVersion, (_yarnVersion || _load_yarnVersion()).version)) { + const installationMethod = yield (0, (_yarnVersion || _load_yarnVersion()).getInstallationMethod)(); + _this13.maybeOutputUpdate = function () { + _this13.reporter.warn(_this13.reporter.lang('yarnOutdated', latestVersion, (_yarnVersion || _load_yarnVersion()).version)); + + const command = getUpdateCommand(installationMethod); + if (command) { + _this13.reporter.info(_this13.reporter.lang('yarnOutdatedCommand')); + _this13.reporter.command(command); + } else { + const installer = getUpdateInstaller(installationMethod); + if (installer) { + _this13.reporter.info(_this13.reporter.lang('yarnOutdatedInstaller', installer)); + } + } + }; + } + })(); + } + + /** + * Method to override with a possible upgrade message. + */ + + maybeOutputUpdate() {} +} + +exports.Install = Install; +function hasWrapper(commander, args) { + return true; +} + +function setFlags(commander) { + commander.description('Yarn install is used to install all dependencies for a project.'); + commander.usage('install [flags]'); + commander.option('-A, --audit', 'Run vulnerability audit on installed packages'); + commander.option('-g, --global', 'DEPRECATED'); + commander.option('-S, --save', 'DEPRECATED - save package to your `dependencies`'); + commander.option('-D, --save-dev', 'DEPRECATED - save package to your `devDependencies`'); + commander.option('-P, --save-peer', 'DEPRECATED - save package to your `peerDependencies`'); + commander.option('-O, --save-optional', 'DEPRECATED - save package to your `optionalDependencies`'); + commander.option('-E, --save-exact', 'DEPRECATED'); + commander.option('-T, --save-tilde', 'DEPRECATED'); +} + +/***/ }), +/* 35 */ +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__(53); +module.exports = function (it) { + if (!isObject(it)) throw TypeError(it + ' is not an object!'); + return it; +}; + + +/***/ }), +/* 36 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return SubjectSubscriber; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Subject; }); +/* unused harmony export AnonymousSubject */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_tslib__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Observable__ = __webpack_require__(12); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__Subscriber__ = __webpack_require__(7); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__Subscription__ = __webpack_require__(25); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__ = __webpack_require__(190); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__SubjectSubscription__ = __webpack_require__(422); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__internal_symbol_rxSubscriber__ = __webpack_require__(322); +/** PURE_IMPORTS_START tslib,_Observable,_Subscriber,_Subscription,_util_ObjectUnsubscribedError,_SubjectSubscription,_internal_symbol_rxSubscriber PURE_IMPORTS_END */ + + + + + + + +var SubjectSubscriber = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](SubjectSubscriber, _super); + function SubjectSubscriber(destination) { + var _this = _super.call(this, destination) || this; + _this.destination = destination; + return _this; + } + return SubjectSubscriber; +}(__WEBPACK_IMPORTED_MODULE_2__Subscriber__["a" /* Subscriber */])); + +var Subject = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](Subject, _super); + function Subject() { + var _this = _super.call(this) || this; + _this.observers = []; + _this.closed = false; + _this.isStopped = false; + _this.hasError = false; + _this.thrownError = null; + return _this; + } + Subject.prototype[__WEBPACK_IMPORTED_MODULE_6__internal_symbol_rxSubscriber__["a" /* rxSubscriber */]] = function () { + return new SubjectSubscriber(this); + }; + Subject.prototype.lift = function (operator) { + var subject = new AnonymousSubject(this, this); + subject.operator = operator; + return subject; + }; + Subject.prototype.next = function (value) { + if (this.closed) { + throw new __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__["a" /* ObjectUnsubscribedError */](); + } + if (!this.isStopped) { + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].next(value); + } + } + }; + Subject.prototype.error = function (err) { + if (this.closed) { + throw new __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__["a" /* ObjectUnsubscribedError */](); + } + this.hasError = true; + this.thrownError = err; + this.isStopped = true; + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].error(err); + } + this.observers.length = 0; + }; + Subject.prototype.complete = function () { + if (this.closed) { + throw new __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__["a" /* ObjectUnsubscribedError */](); + } + this.isStopped = true; + var observers = this.observers; + var len = observers.length; + var copy = observers.slice(); + for (var i = 0; i < len; i++) { + copy[i].complete(); + } + this.observers.length = 0; + }; + Subject.prototype.unsubscribe = function () { + this.isStopped = true; + this.closed = true; + this.observers = null; + }; + Subject.prototype._trySubscribe = function (subscriber) { + if (this.closed) { + throw new __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__["a" /* ObjectUnsubscribedError */](); + } + else { + return _super.prototype._trySubscribe.call(this, subscriber); + } + }; + Subject.prototype._subscribe = function (subscriber) { + if (this.closed) { + throw new __WEBPACK_IMPORTED_MODULE_4__util_ObjectUnsubscribedError__["a" /* ObjectUnsubscribedError */](); + } + else if (this.hasError) { + subscriber.error(this.thrownError); + return __WEBPACK_IMPORTED_MODULE_3__Subscription__["a" /* Subscription */].EMPTY; + } + else if (this.isStopped) { + subscriber.complete(); + return __WEBPACK_IMPORTED_MODULE_3__Subscription__["a" /* Subscription */].EMPTY; + } + else { + this.observers.push(subscriber); + return new __WEBPACK_IMPORTED_MODULE_5__SubjectSubscription__["a" /* SubjectSubscription */](this, subscriber); + } + }; + Subject.prototype.asObservable = function () { + var observable = new __WEBPACK_IMPORTED_MODULE_1__Observable__["a" /* Observable */](); + observable.source = this; + return observable; + }; + Subject.create = function (destination, source) { + return new AnonymousSubject(destination, source); + }; + return Subject; +}(__WEBPACK_IMPORTED_MODULE_1__Observable__["a" /* Observable */])); + +var AnonymousSubject = /*@__PURE__*/ (function (_super) { + __WEBPACK_IMPORTED_MODULE_0_tslib__["a" /* __extends */](AnonymousSubject, _super); + function AnonymousSubject(destination, source) { + var _this = _super.call(this) || this; + _this.destination = destination; + _this.source = source; + return _this; + } + AnonymousSubject.prototype.next = function (value) { + var destination = this.destination; + if (destination && destination.next) { + destination.next(value); + } + }; + AnonymousSubject.prototype.error = function (err) { + var destination = this.destination; + if (destination && destination.error) { + this.destination.error(err); + } + }; + AnonymousSubject.prototype.complete = function () { + var destination = this.destination; + if (destination && destination.complete) { + this.destination.complete(); + } + }; + AnonymousSubject.prototype._subscribe = function (subscriber) { + var source = this.source; + if (source) { + return this.source.subscribe(subscriber); + } + else { + return __WEBPACK_IMPORTED_MODULE_3__Subscription__["a" /* Subscription */].EMPTY; + } + }; + return AnonymousSubject; +}(Subject)); + +//# sourceMappingURL=Subject.js.map + + +/***/ }), +/* 37 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.normalizePattern = normalizePattern; + +/** + * Explode and normalize a pattern into its name and range. + */ + +function normalizePattern(pattern) { + let hasVersion = false; + let range = 'latest'; + let name = pattern; + + // if we're a scope then remove the @ and add it back later + let isScoped = false; + if (name[0] === '@') { + isScoped = true; + name = name.slice(1); + } + + // take first part as the name + const parts = name.split('@'); + if (parts.length > 1) { + name = parts.shift(); + range = parts.join('@'); + + if (range) { + hasVersion = true; + } else { + range = '*'; + } + } + + // add back @ scope suffix + if (isScoped) { + name = `@${name}`; + } + + return { name, range, hasVersion }; +} + +/***/ }), +/* 38 */ +/***/ (function(module, exports, __webpack_require__) { + +/* WEBPACK VAR INJECTION */(function(module) {var __WEBPACK_AMD_DEFINE_RESULT__;/** + * @license + * Lodash + * Copyright JS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '4.17.10'; + + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; + + /** Error message constants. */ + var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', + FUNC_ERROR_TEXT = 'Expected a function'; + + /** Used to stand-in for `undefined` hash values. */ + var HASH_UNDEFINED = '__lodash_hash_undefined__'; + + /** Used as the maximum memoize cache size. */ + var MAX_MEMOIZE_SIZE = 500; + + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; + + /** Used to compose bitmasks for cloning. */ + var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; + + /** Used as default options for `_.truncate`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; + + /** Used to detect hot functions by number of calls within a span of milliseconds. */ + var HOT_COUNT = 800, + HOT_SPAN = 16; + + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2, + LAZY_WHILE_FLAG = 3; + + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991, + MAX_INTEGER = 1.7976931348623157e+308, + NAN = 0 / 0; + + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + + /** Used to associate wrap methods with their bit flags. */ + var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] + ]; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + domExcTag = '[object DOMException]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + nullTag = '[object Null]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + undefinedTag = '[object Undefined]', + weakMapTag = '[object WeakMap]', + weakSetTag = '[object WeakSet]'; + + var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; + + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, + reUnescapedHtml = /[&<>"']/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; + + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; + + /** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ + var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); + + /** Used to match leading and trailing whitespace. */ + var reTrim = /^\s+|\s+$/g, + reTrimStart = /^\s+/, + reTrimEnd = /\s+$/; + + /** Used to match wrap detail comments. */ + var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, + reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; + + /** Used to match words composed of alphanumeric characters. */ + var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; + + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; + + /** + * Used to match + * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; + + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; + + /** Used to detect bad signed hexadecimal string values. */ + var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; + + /** Used to detect binary string values. */ + var reIsBinary = /^0b[01]+$/i; + + /** Used to detect host constructors (Safari). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; + + /** Used to detect octal string values. */ + var reIsOctal = /^0o[0-7]+$/i; + + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; + + /** Used to match Latin Unicode letters (excluding mathematical operators). */ + var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; + + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; + + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; + + /** Used to compose unicode character classes. */ + var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; + + /** Used to compose unicode capture groups. */ + var rsApos = "['\u2019]", + rsAstral = '[' + rsAstralRange + ']', + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; + + /** Used to compose unicode regexes. */ + var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + + /** Used to match apostrophes. */ + var reApos = RegExp(rsApos, 'g'); + + /** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ + var reComboMark = RegExp(rsCombo, 'g'); + + /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ + var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + + /** Used to match complex or compound words. */ + var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji + ].join('|'), 'g'); + + /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ + var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + + /** Used to detect strings that need a more robust regexp to match words. */ + var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; + + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', + 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', + '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' + ]; + + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; + + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = + typedArrayTags[errorTag] = typedArrayTags[funcTag] = + typedArrayTags[mapTag] = typedArrayTags[numberTag] = + typedArrayTags[objectTag] = typedArrayTags[regexpTag] = + typedArrayTags[setTag] = typedArrayTags[stringTag] = + typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = + cloneableTags[boolTag] = cloneableTags[dateTag] = + cloneableTags[float32Tag] = cloneableTags[float64Tag] = + cloneableTags[int8Tag] = cloneableTags[int16Tag] = + cloneableTags[int32Tag] = cloneableTags[mapTag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[setTag] = + cloneableTags[stringTag] = cloneableTags[symbolTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map Latin Unicode letters to basic Latin letters. */ + var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" + }; + + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + /** Built-in method references without a dependency on `root`. */ + var freeParseFloat = parseFloat, + freeParseInt = parseInt; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); + + /** Detect free variable `exports`. */ + var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports; + + /** Detect free variable `process` from Node.js. */ + var freeProcess = moduleExports && freeGlobal.process; + + /** Used to access faster Node.js helpers. */ + var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; + } + + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} + }()); + + /* Node.js helper references. */ + var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, + nodeIsDate = nodeUtil && nodeUtil.isDate, + nodeIsMap = nodeUtil && nodeUtil.isMap, + nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, + nodeIsSet = nodeUtil && nodeUtil.isSet, + nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + + /*--------------------------------------------------------------------------*/ + + /** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ + function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); + } + + /** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; + } + + /** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + + /** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; + } + + /** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (comparator(value, array[index])) { + return true; + } + } + return false; + } + + /** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; + } + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; + } + + /** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; + + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } + + /** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; + } + + /** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; + } + + /** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + var asciiSize = baseProperty('length'); + + /** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function asciiToArray(string) { + return string.split(''); + } + + /** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function asciiWords(string) { + return string.match(reAsciiWord) || []; + } + + /** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; + } + }); + return result; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); + } + + /** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ + function baseIsNaN(value) { + return value !== value; + } + + /** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ + function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; + } + + /** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); + } + } + return result; + } + + /** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ + function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; + } + + /** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ + function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); + } + + /** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ + function baseUnary(func) { + return function(value) { + return func(value); + }; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); + } + + /** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function cacheHas(cache, key) { + return cache.has(key); + } + + /** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ + function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; + + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ + function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; + + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ + function countHolders(array, placeholder) { + var length = array.length, + result = 0; + + while (length--) { + if (array[length] === placeholder) { + ++result; + } + } + return result; + } + + /** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + var deburrLetter = basePropertyOf(deburredLetters); + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); + + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } + + /** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function getValue(object, key) { + return object == null ? undefined : object[key]; + } + + /** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ + function hasUnicode(string) { + return reHasUnicode.test(string); + } + + /** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ + function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); + } + + /** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ + function iteratorToArray(iterator) { + var data, + result = []; + + while (!(data = iterator.next()).done) { + result.push(data.value); + } + return result; + } + + /** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ + function mapToArray(map) { + var index = -1, + result = Array(map.size); + + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; + } + + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } + + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; + } + } + return result; + } + + /** + * Gets the value at `key`, unless `key` is "__proto__". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function safeGet(object, key) { + return key == '__proto__' + ? undefined + : object[key]; + } + + /** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ + function setToArray(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = value; + }); + return result; + } + + /** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ + function setToPairs(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; + } + + /** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } + } + return index; + } + + /** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ + function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); + } + + /** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); + } + + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + + /** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; + } + + /** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function unicodeToArray(string) { + return string.match(reUnicode) || []; + } + + /** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function unicodeWords(string) { + return string.match(reUnicodeWord) || []; + } + + /*--------------------------------------------------------------------------*/ + + /** + * Create a new pristine `lodash` function using the `context` object. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Util + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // Create a suped-up `defer` in Node.js. + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + var runInContext = (function runInContext(context) { + context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); + + /** Built-in constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; + + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + funcProto = Function.prototype, + objectProto = Object.prototype; + + /** Used to detect overreaching core-js shims. */ + var coreJsData = context['__core-js_shared__']; + + /** Used to resolve the decompiled source of functions. */ + var funcToString = funcProto.toString; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** Used to detect methods masquerading as native. */ + var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; + }()); + + /** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ + var nativeObjectToString = objectProto.toString; + + /** Used to infer the `Object` constructor. */ + var objectCtorString = funcToString.call(Object); + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Built-in value references. */ + var Buffer = moduleExports ? context.Buffer : undefined, + Symbol = context.Symbol, + Uint8Array = context.Uint8Array, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, + getPrototype = overArg(Object.getPrototypeOf, Object), + objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + splice = arrayProto.splice, + spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, + symIterator = Symbol ? Symbol.iterator : undefined, + symToStringTag = Symbol ? Symbol.toStringTag : undefined; + + var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} + }()); + + /** Mocked built-ins. */ + var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, + ctxNow = Date && Date.now !== root.Date.now && Date.now, + ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; + + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeGetSymbols = Object.getOwnPropertySymbols, + nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, + nativeIsFinite = context.isFinite, + nativeJoin = arrayProto.join, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = Date.now, + nativeParseInt = context.parseInt, + nativeRandom = Math.random, + nativeReverse = arrayProto.reverse; + + /* Built-in method references that are verified to be native. */ + var DataView = getNative(context, 'DataView'), + Map = getNative(context, 'Map'), + Promise = getNative(context, 'Promise'), + Set = getNative(context, 'Set'), + WeakMap = getNative(context, 'WeakMap'), + nativeCreate = getNative(Object, 'create'); + + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; + + /** Used to lookup unminified function names. */ + var realNames = {}; + + /** Used to detect maps, sets, and weakmaps. */ + var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); + + /** Used to convert symbols to primitives and strings. */ + var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. + * + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. + * + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; + }()); + + /** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ + function baseLodash() { + // No operation performed. + } + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; + } + + /** + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB) as well as ES2015 template strings. Change the + * following template settings to use alternative delimiters. + * + * @static + * @memberOf _ + * @type {Object} + */ + lodash.templateSettings = { + + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'escape': reEscape, + + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'evaluate': reEvaluate, + + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'interpolate': reInterpolate, + + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type {string} + */ + 'variable': '', + + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type {Object} + */ + 'imports': { + + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type {Function} + */ + '_': lodash + } + }; + + // Ensure wrappers are instances of `baseLodash`. + lodash.prototype = baseLodash.prototype; + lodash.prototype.constructor = lodash; + + LodashWrapper.prototype = baseCreate(baseLodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; + } + + /** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; + } + + /** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; + } + + /** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; + } + + // Ensure `LazyWrapper` is an instance of `baseLodash`. + LazyWrapper.prototype = baseCreate(baseLodash.prototype); + LazyWrapper.prototype.constructor = LazyWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; + } + + /** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; + } + return hasOwnProperty.call(data, key) ? data[key] : undefined; + } + + /** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); + } + + /** + * Sets the hash `key` to `value`. + * + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. + */ + function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; + } + + // Add methods to `Hash`. + Hash.prototype.clear = hashClear; + Hash.prototype['delete'] = hashDelete; + Hash.prototype.get = hashGet; + Hash.prototype.has = hashHas; + Hash.prototype.set = hashSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ + function listCacheClear() { + this.__data__ = []; + this.size = 0; + } + + /** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; + } + + /** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; + } + + /** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; + } + + /** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ + function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; + } + + // Add methods to `ListCache`. + ListCache.prototype.clear = listCacheClear; + ListCache.prototype['delete'] = listCacheDelete; + ListCache.prototype.get = listCacheGet; + ListCache.prototype.has = listCacheHas; + ListCache.prototype.set = listCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ + function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; + } + + /** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } + + /** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } + + /** + * Sets the map `key` to `value`. + * + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. + */ + function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; + } + + // Add methods to `MapCache`. + MapCache.prototype.clear = mapCacheClear; + MapCache.prototype['delete'] = mapCacheDelete; + MapCache.prototype.get = mapCacheGet; + MapCache.prototype.has = mapCacheHas; + MapCache.prototype.set = mapCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ + function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); + } + } + + /** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ + function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; + } + + /** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ + function setCacheHas(value) { + return this.__data__.has(value); + } + + // Add methods to `SetCache`. + SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; + SetCache.prototype.has = setCacheHas; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; + } + + /** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ + function stackClear() { + this.__data__ = new ListCache; + this.size = 0; + } + + /** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; + } + + /** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function stackGet(key) { + return this.__data__.get(key); + } + + /** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function stackHas(key) { + return this.__data__.has(key); + } + + /** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ + function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; + } + + // Add methods to `Stack`. + Stack.prototype.clear = stackClear; + Stack.prototype['delete'] = stackDelete; + Stack.prototype.get = stackGet; + Stack.prototype.has = stackHas; + Stack.prototype.set = stackSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ + function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } + } + return result; + } + + /** + * A specialized version of `_.sample` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. + */ + function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; + } + + /** + * A specialized version of `_.sampleSize` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); + } + + /** + * A specialized version of `_.shuffle` for arrays. + * + * @private + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); + } + + /** + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; + } + + /** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); + } + + /** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); + } + + /** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } + } + + /** + * The base implementation of `_.at` without support for individual paths. + * + * @private + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. + */ + function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; + } + + /** + * The base implementation of `_.clamp` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + */ + function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; + } + + /** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ + function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + + return result; + } + + if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + + return result; + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; + } + + /** + * The base implementation of `_.conforms` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + */ + function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; + } + + /** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ + function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } + } + return true; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.forEachRight` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEachRight = createBaseEach(baseForOwnRight, true); + + /** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; + } + + /** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ + function baseFill(array, value, start, end) { + var length = array.length; + + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; + } + return array; + } + + /** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseForRight = createBaseFor(true); + + /** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ + function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); + } + + /** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ + function baseGet(object, path) { + path = castPath(path, object); + + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; + } + + /** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ + function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); + } + + /** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); + } + + /** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ + function baseGt(value, other) { + return value > other; + } + + /** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); + } + + /** + * The base implementation of `_.hasIn` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHasIn(object, key) { + return object != null && key in Object(object); + } + + /** + * The base implementation of `_.inRange` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + */ + function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); + } + + /** + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + */ + function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; + + var index = -1, + seen = caches[0]; + + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. + */ + function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; + } + + /** + * The base implementation of `_.invoke` without support for individual + * method arguments. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ + function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); + } + + /** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ + function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; + } + + /** + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + */ + function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; + } + + /** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; + } + + /** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); + } + + /** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ + function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; + } + + /** + * The base implementation of `_.isMatch` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ + function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } + } + return true; + } + + /** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ + function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); + } + + /** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; + } + + /** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ + function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; + } + + /** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ + function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; + } + + /** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ + function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); + } + + /** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; + + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ + function baseLt(value, other) { + return value < other; + } + + /** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; + } + + /** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; + } + + /** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + if (isObject(srcValue)) { + stack || (stack = new Stack); + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); + } + + /** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); + } + + /** + * The base implementation of `_.nth` which doesn't coerce arguments. + * + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. + */ + function baseNth(array, n) { + var length = array.length; + if (!length) { + return; + } + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; + } + + /** + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ + function baseOrderBy(collection, iteratees, orders) { + var index = -1; + iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(getIteratee())); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); + } + + /** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ + function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); + } + + /** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ + function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } + } + return result; + } + + /** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; + } + + /** + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + */ + function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; + } + + /** + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; + } + + /** + * The base implementation of `_.random` without support for returning + * floating-point numbers. + * + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. + */ + function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); + } + + /** + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. + * + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. + */ + function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; + } + + /** + * The base implementation of `_.repeat` which doesn't coerce arguments. + * + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. + */ + function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); + + return result; + } + + /** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.sample`. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ + function baseSample(collection) { + return arraySample(values(collection)); + } + + /** + * The base implementation of `_.sampleSize` without param guards. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); + } + + /** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; + } + + /** + * The base implementation of `setData` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); + }; + + /** + * The base implementation of `_.shuffle`. + * + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function baseShuffle(collection) { + return shuffleSelf(values(collection)); + } + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); + } + + /** + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndexBy(array, value, iteratee, retHighest) { + value = iteratee(value); + + var low = 0, + high = array == null ? 0 : array.length, + valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); + } + + /** + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; + } + } + return result; + } + + /** + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. + * + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. + */ + function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; + } + + /** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ + function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * The base implementation of `_.uniqBy` without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); + } + isCommon = false; + includes = cacheHas; + seen = new SetCache; + } + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ + function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; + } + + /** + * The base implementation of `_.update`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); + } + + /** + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); + } + + /** + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + */ + function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; + } + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); + } + + /** + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. + * + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. + */ + function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; + } + + /** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ + function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; + } + + /** + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. + */ + function castFunction(value) { + return typeof value == 'function' ? value : identity; + } + + /** + * Casts `value` to a path array if it's not one. + * + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. + */ + function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); + } + + /** + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. + * + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + var castRest = baseRest; + + /** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ + function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); + } + + /** + * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). + * + * @private + * @param {number|Object} id The timer id or timeout object of the timer to clear. + */ + var clearTimeout = ctxClearTimeout || function(id) { + return root.clearTimeout(id); + }; + + /** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ + function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; + } + + /** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; + } + + /** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ + function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); + } + + /** + * Creates a clone of `regexp`. + * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. + */ + function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; + } + + /** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ + function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; + } + + /** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ + function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); + } + + /** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; + } + + /** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; + } + + /** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } + + /** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } + + /** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); + } + + /** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); + } + + /** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ + function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, getIteratee(iteratee, 2), accumulator); + }; + } + + /** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; + } + + /** + * Creates a function like `_.lowerFirst`. + * + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. + */ + function createCaseFirst(methodName) { + return function(string) { + string = toString(string); + + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; + } + + /** + * Creates a function like `_.camelCase`. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ + function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a function that wraps `func` to enable currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = getIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; + } + + /** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ + function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); + } + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); + } + + /** + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; + } + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); + } + return wrapper; + } + + /** + * Creates a function like `_.invertBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. + */ + function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; + } + + /** + * Creates a function that performs a mathematical operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. + */ + function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; + } + + /** + * Creates a function like `_.over`. + * + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. + */ + function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); + } + + /** + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. + * + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. + */ + function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); + } + + /** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ + function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * Creates a `_.range` or `_.rangeRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. + */ + function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; + } + + /** + * Creates a function that performs a relational operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. + */ + function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; + } + + /** + * Creates a function that wraps `func` to continue currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); + } + + /** + * Creates a function like `_.round`. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; + } + + /** + * Creates a set object of `values`. + * + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. + */ + var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); + }; + + /** + * Creates a `_.toPairs` or `_.toPairsIn` function. + * + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. + */ + function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; + } + + /** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); + } else { + result = createHybrid.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); + } + + /** + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. + */ + function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; + } + return objValue; + } + + /** + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ + function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; + } + + /** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ + function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(array); + if (stacked && stack.get(other)) { + return stacked == other; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; + + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked && stack.get(other)) { + return stacked == other; + } + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } + + /** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); + } + + /** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); + } + + /** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ + function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; + } + + /** + * Gets the argument placeholder value for `func`. + * + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. + */ + function getHolder(func) { + var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; + return object.placeholder; + } + + /** + * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, + * this function returns the custom method, otherwise it returns `baseIteratee`. + * If arguments are provided, the chosen function is invoked with them and + * its result is returned. + * + * @private + * @param {*} [value] The value to convert to an iteratee. + * @param {number} [arity] The arity of the created iteratee. + * @returns {Function} Returns the chosen function or its result. + */ + function getIteratee() { + var result = lodash.iteratee || iteratee; + result = result === iteratee ? baseIteratee : result; + return arguments.length ? result(arguments[0], arguments[1]) : result; + } + + /** + * Gets the data for `map`. + * + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. + */ + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; + } + + /** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ + function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; + } + return result; + } + + /** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; + } + + /** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ + function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; + } + + /** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); + }; + + /** + * Creates an array of the own and inherited enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; + }; + + /** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + var getTag = baseGetTag; + + // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. + if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; + } + + /** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; + } + + /** + * Extracts wrapper details from the `source` body comment. + * + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. + */ + function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; + } + + /** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ + function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; + } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); + } + + /** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; + } + + /** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; + } + + /** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return new Ctor; + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return new Ctor; + + case symbolTag: + return cloneSymbol(object); + } + } + + /** + * Inserts wrapper `details` in a comment at the top of the `source` body. + * + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. + */ + function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + } + + /** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ + function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); + } + + /** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; + } + + /** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ + function isKey(value, object) { + if (isArray(value)) { + return false; + } + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); + } + + /** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ + function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); + } + + /** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ + function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; + + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } + + /** + * Checks if `func` has its source masked. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. + */ + function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); + } + + /** + * Checks if `func` is capable of being masked. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + */ + var isMaskable = coreJsData ? isFunction : stubFalse; + + /** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ + function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; + } + + /** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ + function isStrictComparable(value) { + return value === value && !isObject(value); + } + + /** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; + } + + /** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ + function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); + + var cache = result.cache; + return result; + } + + /** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); + + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; + } + + /** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ + function objectToString(value) { + return nativeObjectToString.call(value); + } + + /** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; + } + + /** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ + function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); + } + + /** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; + } + + /** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var setData = shortOut(baseSetData); + + /** + * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @returns {number|Object} Returns the timer id or timeout object. + */ + var setTimeout = ctxSetTimeout || function(func, wait) { + return root.setTimeout(func, wait); + }; + + /** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = shortOut(baseSetToString); + + /** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. + * + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. + */ + function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); + } + + /** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ + function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; + } + + /** + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. + */ + function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; + } + + /** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ + var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + }); + + /** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ + function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ + function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; + } + + /** + * Updates wrapper `details` based on `bitmask` flags. + * + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. + */ + function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); + } + + /** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ + function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; + } + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } + + /** + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] + */ + var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] + * + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] + */ + var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; + }); + + /** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] + * + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] + * + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true, true) + : []; + } + + /** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true) + : []; + } + + /** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] + */ + function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, getIteratee(predicate, 3), index); + } + + /** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 + * + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 + */ + function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, getIteratee(predicate, 3), index, true); + } + + /** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } + + /** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; + } + + /** + * Recursively flatten `array` up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * var array = [1, [2, [3, [4]], 5]]; + * + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] + * + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] + */ + function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); + } + + /** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } + */ + function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; + } + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ + function head(array) { + return (array && array.length) ? array[0] : undefined; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); + } + + /** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ + function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; + } + + /** + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersection([2, 1], [2, 3]); + * // => [2] + */ + var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ + var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ + var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; + }); + + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ + function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); + } + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } + + /** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + */ + function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); + } + + /** + * Gets the element at index `n` of `array`. If `n` is negative, the nth + * element from the end is returned. + * + * @static + * @memberOf _ + * @since 4.11.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=0] The index of the element to return. + * @returns {*} Returns the nth element of `array`. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * + * _.nth(array, 1); + * // => 'b' + * + * _.nth(array, -2); + * // => 'c'; + */ + function nth(array, n) { + return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; + } + + /** + * Removes all given values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` + * to remove elements from an array by predicate. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pull(array, 'a', 'c'); + * console.log(array); + * // => ['b', 'b'] + */ + var pull = baseRest(pullAll); + + /** + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pullAll(array, ['a', 'c']); + * console.log(array); + * // => ['b', 'b'] + */ + function pullAll(array, values) { + return (array && array.length && values && values.length) + ? basePullAll(array, values) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ + function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, getIteratee(iteratee, 2)) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `comparator` which + * is invoked to compare elements of `array` to `values`. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.differenceWith`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; + * + * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); + * console.log(array); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] + */ + function pullAllWith(array, values, comparator) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, undefined, comparator) + : array; + } + + /** + * Removes elements from `array` corresponding to `indexes` and returns an + * array of removed elements. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * var pulled = _.pullAt(array, [1, 3]); + * + * console.log(array); + * // => ['a', 'c'] + * + * console.log(pulled); + * // => ['b', 'd'] + */ + var pullAt = flatRest(function(array, indexes) { + var length = array == null ? 0 : array.length, + result = baseAt(array, indexes); + + basePullAt(array, arrayMap(indexes, function(index) { + return isIndex(index, length) ? +index : index; + }).sort(compareAscending)); + + return result; + }); + + /** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is invoked + * with three arguments: (value, index, array). + * + * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` + * to pull elements from an array by value. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ + function remove(array, predicate) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getIteratee(predicate, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } + + /** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function reverse(array) { + return array == null ? array : nativeReverse.call(array); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + else { + start = start == null ? 0 : toInteger(start); + end = end === undefined ? length : toInteger(end); + } + return baseSlice(array, start, end); + } + + /** + * Uses a binary search to determine the lowest index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + */ + function sortedIndex(array, value) { + return baseSortedIndex(array, value); + } + + /** + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); + * // => 0 + */ + function sortedIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); + } + + /** + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedIndexOf([4, 5, 5, 5, 6], 5); + * // => 1 + */ + function sortedIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value); + if (index < length && eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 5, 5, 5, 6], 5); + * // => 4 + */ + function sortedLastIndex(array, value) { + return baseSortedIndex(array, value, true); + } + + /** + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 1 + * + * // The `_.property` iteratee shorthand. + * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); + * // => 1 + */ + function sortedLastIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); + } + + /** + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); + * // => 3 + */ + function sortedLastIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value, true) - 1; + if (eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] + */ + function sortedUniq(array) { + return (array && array.length) + ? baseSortedUniq(array) + : []; + } + + /** + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.3] + */ + function sortedUniqBy(array, iteratee) { + return (array && array.length) + ? baseSortedUniq(array, getIteratee(iteratee, 2)) + : []; + } + + /** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.tail([1, 2, 3]); + * // => [2, 3] + */ + function tail(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 1, length) : []; + } + + /** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ + function take(array, n, guard) { + if (!(array && array.length)) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ + function takeRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.takeRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeRightWhile(users, ['active', false]); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.takeRightWhile(users, 'active'); + * // => [] + */ + function takeRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), false, true) + : []; + } + + /** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.takeWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matches` iteratee shorthand. + * _.takeWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeWhile(users, ['active', false]); + * // => objects for ['barney', 'fred'] + * + * // The `_.property` iteratee shorthand. + * _.takeWhile(users, 'active'); + * // => [] + */ + function takeWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3)) + : []; + } + + /** + * Creates an array of unique values, in order, from all given arrays using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([2], [1, 2]); + * // => [2, 1] + */ + var union = baseRest(function(arrays) { + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); + }); + + /** + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which uniqueness is computed. Result values are chosen from the first + * array in which the value occurs. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.unionBy([2.1], [1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + var unionBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. Result values are chosen from + * the first array in which the value occurs. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var unionWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); + }); + + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. The order of result values is determined by the order they occur + * in the array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + function uniq(array) { + return (array && array.length) ? baseUniq(array) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The order of result values is determined by the + * order they occur in the array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + function uniqBy(array, iteratee) { + return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ + function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; + } + + /** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + * + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] + */ + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); + } + + /** + * This method is like `_.unzip` except that it accepts `iteratee` to specify + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee=_.identity] The function to combine + * regrouped values. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ + function unzipWith(array, iteratee) { + if (!(array && array.length)) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + return arrayMap(result, function(group) { + return apply(iteratee, undefined, group); + }); + } + + /** + * Creates an array excluding all given values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.pull`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.xor + * @example + * + * _.without([2, 1, 2, 3], 1, 2); + * // => [3] + */ + var without = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, values) + : []; + }); + + /** + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without + * @example + * + * _.xor([2, 1], [2, 3]); + * // => [1, 3] + */ + var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); + }); + + /** + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which by which they're compared. The order of result values is determined + * by the order they occur in the arrays. The iteratee is invoked with one + * argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2, 3.4] + * + * // The `_.property` iteratee shorthand. + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var xorBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The order of result values is + * determined by the order they occur in the arrays. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var xorWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); + }); + + /** + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ + var zip = baseRest(unzip); + + /** + * This method is like `_.fromPairs` except that it accepts two arrays, + * one of property identifiers and one of corresponding values. + * + * @static + * @memberOf _ + * @since 0.4.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject(['a', 'b'], [1, 2]); + * // => { 'a': 1, 'b': 2 } + */ + function zipObject(props, values) { + return baseZipObject(props || [], values || [], assignValue); + } + + /** + * This method is like `_.zipObject` except that it supports property paths. + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); + * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } + */ + function zipObjectDeep(props, values) { + return baseZipObject(props || [], values || [], baseSet); + } + + /** + * This method is like `_.zip` except that it accepts `iteratee` to specify + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee=_.identity] The function to combine + * grouped values. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { + * return a + b + c; + * }); + * // => [111, 222] + */ + var zipWith = baseRest(function(arrays) { + var length = arrays.length, + iteratee = length > 1 ? arrays[length - 1] : undefined; + + iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; + return unzipWith(arrays, iteratee); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor) { + interceptor(value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * This method is the wrapper version of `_.at`. + * + * @name at + * @memberOf _ + * @since 1.0.0 + * @category Seq + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _(object).at(['a[0].b.c', 'a[1]']).value(); + * // => [3, 4] + */ + var wrapperAt = flatRest(function(paths) { + var length = paths.length, + start = length ? paths[0] : 0, + value = this.__wrapped__, + interceptor = function(object) { return baseAt(object, paths); }; + + if (length > 1 || this.__actions__.length || + !(value instanceof LazyWrapper) || !isIndex(start)) { + return this.thru(interceptor); + } + value = value.slice(start, +start + (length ? 1 : 0)); + value.__actions__.push({ + 'func': thru, + 'args': [interceptor], + 'thisArg': undefined + }); + return new LodashWrapper(value, this.__chain__).thru(function(array) { + if (length && !array.length) { + array.push(undefined); + } + return array; + }); + }); + + /** + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. + * + * @name chain + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chain sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); + } + + /** + * Gets the next value on a wrapped object following the + * [iterator protocol](https://mdn.io/iteration_protocols#iterator). + * + * @name next + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the next iterator value. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped.next(); + * // => { 'done': false, 'value': 1 } + * + * wrapped.next(); + * // => { 'done': false, 'value': 2 } + * + * wrapped.next(); + * // => { 'done': true, 'value': undefined } + */ + function wrapperNext() { + if (this.__values__ === undefined) { + this.__values__ = toArray(this.value()); + } + var done = this.__index__ >= this.__values__.length, + value = done ? undefined : this.__values__[this.__index__++]; + + return { 'done': done, 'value': value }; + } + + /** + * Enables the wrapper to be iterable. + * + * @name Symbol.iterator + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the wrapper object. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped[Symbol.iterator]() === wrapped; + * // => true + * + * Array.from(wrapped); + * // => [1, 2] + */ + function wrapperToIterator() { + return this; + } + + /** + * Creates a clone of the chain sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @param {*} value The value to plant. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2]).map(square); + * var other = wrapped.plant([3, 4]); + * + * other.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ + function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + clone.__index__ = 0; + clone.__values__ = undefined; + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; + } + + /** + * This method is the wrapper version of `_.reverse`. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function wrapperReverse() { + var value = this.__wrapped__; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ + 'func': thru, + 'args': [reverse], + 'thisArg': undefined + }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(reverse); + } + + /** + * Executes the chain sequence to resolve the unwrapped value. + * + * @name value + * @memberOf _ + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the number of times the key was returned by `iteratee`. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': 1, '6': 2 } + * + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ + var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); + } + }); + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + */ + function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ + var find = createFind(findIndex); + + /** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ + var findLast = createFind(findLastIndex); + + /** + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] + */ + function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); + } + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach + * @example + * + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ + function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } + }); + + /** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ + function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); + } + + /** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ + var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; + }); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ + var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); + }); + + /** + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + */ + function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseOrderBy(collection, iteratees, orders); + } + + /** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * _.partition(users, function(o) { return o.active; }); + * // => objects for [['fred'], ['barney', 'pebbles']] + * + * // The `_.matches` iteratee shorthand. + * _.partition(users, { 'age': 1, 'active': false }); + * // => objects for [['pebbles'], ['barney', 'fred']] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.partition(users, ['active', false]); + * // => objects for [['barney', 'pebbles'], ['fred']] + * + * // The `_.property` iteratee shorthand. + * _.partition(users, 'active'); + * // => objects for [['fred'], ['barney', 'pebbles']] + */ + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight + * @example + * + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + */ + function reduce(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduce : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + } + + /** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduce + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ + function reduceRight(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduceRight : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + } + + /** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.filter + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * _.reject(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.reject(users, { 'age': 40, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.reject(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.reject(users, 'active'); + * // => objects for ['barney'] + */ + function reject(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, negate(getIteratee(predicate, 3))); + } + + /** + * Gets a random element from `collection`. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + */ + function sample(collection) { + var func = isArray(collection) ? arraySample : baseSample; + return func(collection); + } + + /** + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. + * @example + * + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] + * + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] + */ + function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); + } + + /** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ + function shuffle(collection) { + var func = isArray(collection) ? arrayShuffle : baseShuffle; + return func(collection); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]] + */ + var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Gets the timestamp of the number of milliseconds that have elapsed since + * the Unix epoch (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Date + * @returns {number} Returns the timestamp. + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => Logs the number of milliseconds it took for the deferred invocation. + */ + var now = ctxNow || function() { + return root.Date.now(); + }; + + /*------------------------------------------------------------------------*/ + + /** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. + */ + function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; + } + + /** + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ + function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); + } + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(func, bitmask, thisArg, partials, holders); + }); + + /** + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ + var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(key, bitmask, object, partials, holders); + }); + + /** + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ + function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; + } + + /** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ + function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; + } + + /** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); + */ + function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); + } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); + } + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; + } + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); + }); + + /** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ + function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); + } + + /** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; + * + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] + * + * values(other); + * // => [3, 4] + * + * object.a = 2; + * values(object); + * // => [1, 2] + * + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] + * + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; + */ + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; + } + + // Expose `MapCache`. + memoize.Cache = MapCache; + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with its arguments transformed. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms=[_.identity]] + * The argument transforms. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var func = _.overArgs(function(x, y) { + * return [x, y]; + * }, [square, doubled]); + * + * func(9, 3); + * // => [81, 6] + * + * func(10, 5); + * // => [100, 10] + */ + var overArgs = castRest(function(func, transforms) { + transforms = (transforms.length == 1 && isArray(transforms[0])) + ? arrayMap(transforms[0], baseUnary(getIteratee())) + : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); + + var funcsLength = transforms.length; + return baseRest(function(args) { + var index = -1, + length = nativeMin(args.length, funcsLength); + + while (++index < length) { + args[index] = transforms[index].call(this, args[index]); + } + return apply(func, this, args); + }); + }); + + /** + * Creates a function that invokes `func` with `partials` prepended to the + * arguments it receives. This method is like `_.bind` except it does **not** + * alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 0.2.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // Partially applied with placeholders. + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ + var partial = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partial)); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); + }); + + /** + * This method is like `_.partial` except that partially applied arguments + * are appended to the arguments it receives. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // Partially applied with placeholders. + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ + var partialRight = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partialRight)); + return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); + }); + + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified `indexes` where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, [2, 0, 1]); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + */ + var rearg = flatRest(function(func, indexes) { + return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); + }); + + /** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as + * an array. + * + * **Note:** This method is based on the + * [rest parameter](https://mdn.io/rest_parameters). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.rest(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ + function rest(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start === undefined ? start : toInteger(start); + return baseRest(func, start); + } + + /** + * Creates a function that invokes `func` with the `this` binding of the + * create function and an array of arguments much like + * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). + * + * **Note:** This method is based on the + * [spread operator](https://mdn.io/spread_operator). + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Function + * @param {Function} func The function to spread arguments over. + * @param {number} [start=0] The start position of the spread. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ + function spread(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start == null ? 0 : nativeMax(toInteger(start), 0); + return baseRest(function(args) { + var array = args[start], + otherArgs = castSlice(args, 0, start); + + if (array) { + arrayPush(otherArgs, array); + } + return apply(func, this, otherArgs); + }); + } + + /** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed `func` invocations and a `flush` method to + * immediately invoke them. Provide `options` to indicate whether `func` + * should be invoked on the leading and/or trailing edge of the `wait` + * timeout. The `func` is invoked with the last arguments provided to the + * throttled function. Subsequent calls to the throttled function return the + * result of the last `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the throttled function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=true] + * Specify invoking on the leading edge of the timeout. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // Avoid excessively updating the position while scrolling. + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. + * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); + * jQuery(element).on('click', throttled); + * + * // Cancel the trailing throttled invocation. + * jQuery(window).on('popstate', throttled.cancel); + */ + function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { + 'leading': leading, + 'maxWait': wait, + 'trailing': trailing + }); + } + + /** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ + function unary(func) { + return ary(func, 1); + } + + /** + * Creates a function that provides `value` to `wrapper` as its first + * argument. Any additional arguments provided to the function are appended + * to those provided to the `wrapper`. The wrapper is invoked with the `this` + * binding of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {*} value The value to wrap. + * @param {Function} [wrapper=identity] The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ + function wrap(value, wrapper) { + return partial(castFunction(wrapper), value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Casts `value` as an array if it's not one. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. + * @example + * + * _.castArray(1); + * // => [1] + * + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true + */ + function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; + } + + /** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ + function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 + */ + function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ + function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.cloneWith` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } + * + * var el = _.cloneDeepWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 + */ + function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. + * + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false + */ + function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); + } + + /** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + function eq(value, other) { + return value === other || (value !== value && other !== other); + } + + /** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ + var gt = createRelationalOperation(baseGt); + + /** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ + var gte = createRelationalOperation(function(value, other) { + return value >= other; + }); + + /** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + * @example + * + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true + * + * _.isArrayBuffer(new Array(2)); + * // => false + */ + var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); + } + + /** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ + function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false + */ + var isBuffer = nativeIsBuffer || stubFalse; + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + + /** + * Checks if `value` is likely a DOM element. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ + function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); + } + + /** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + function isEqual(value, other) { + return baseIsEqual(value, other); + } + + /** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ + function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; + } + + /** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ + function isError(value) { + if (!isObjectLike(value)) { + return false; + } + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + } + + /** + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ + function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } + + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + function isObjectLike(value) { + return value != null && typeof value == 'object'; + } + + /** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ + var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + + /** + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. + * + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.isMatch(object, { 'b': 2 }); + * // => true + * + * _.isMatch(object, { 'b': 1 }); + * // => false + */ + function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); + } + + /** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ + function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ + function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ + function isNil(value) { + return value == null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); + } + + /** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ + function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + + /** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ + function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ + var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } + + /** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ + function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); + } + + /** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ + var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + + /** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ + function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; + } + + /** + * Checks if `value` is classified as a `WeakSet` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @example + * + * _.isWeakSet(new WeakSet); + * // => true + * + * _.isWeakSet(new Set); + * // => false + */ + function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; + } + + /** + * Checks if `value` is less than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + * @see _.gt + * @example + * + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false + */ + var lt = createRelationalOperation(baseLt); + + /** + * Checks if `value` is less than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to + * `other`, else `false`. + * @see _.gte + * @example + * + * _.lte(1, 3); + * // => true + * + * _.lte(3, 3); + * // => true + * + * _.lte(3, 1); + * // => false + */ + var lte = createRelationalOperation(function(value, other) { + return value <= other; + }); + + /** + * Converts `value` to an array. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] + * + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] + */ + function toArray(value) { + if (!value) { + return []; + } + if (isArrayLike(value)) { + return isString(value) ? stringToArray(value) : copyArray(value); + } + if (symIterator && value[symIterator]) { + return iteratorToArray(value[symIterator]()); + } + var tag = getTag(value), + func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); + + return func(value); + } + + /** + * Converts `value` to a finite number. + * + * @static + * @memberOf _ + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. + * @example + * + * _.toFinite(3.2); + * // => 3.2 + * + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toFinite('3.2'); + * // => 3.2 + */ + function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; + } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; + } + + /** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ + function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; + + return result === result ? (remainder ? result - remainder : result) : 0; + } + + /** + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toLength(3.2); + * // => 3 + * + * _.toLength(Number.MIN_VALUE); + * // => 0 + * + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3.2'); + * // => 3 + */ + function toLength(value) { + return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + } + + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ + function toNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = value.replace(reTrim, ''); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); + } + + /** + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } + */ + function toPlainObject(value) { + return copyObject(value, keysIn(value)); + } + + /** + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toSafeInteger(3.2); + * // => 3 + * + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3.2'); + * // => 3 + */ + function toSafeInteger(value) { + return value + ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) + : (value === 0 ? value : 0); + } + + /** + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + return value == null ? '' : baseToString(value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); + } + } + }); + + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); + }); + + /** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); + }); + + /** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); + }); + + /** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ + var at = flatRest(baseAt); + + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); + } + + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; + }); + + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ + var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); + }); + + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ + function findKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + } + + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + function findLastKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + } + + /** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ + function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ + function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forOwn(object, iteratee) { + return object && baseForOwn(object, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ + function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, getIteratee(iteratee, 3)); + } + + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); + } + + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); + } + + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; + } + + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasPath(object, path, baseHas); + } + + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); + } + + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ + var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + result[value] = key; + }, constant(identity)); + + /** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ + var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + }, getIteratee); + + /** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ + var invoke = baseRest(baseInvoke); + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + } + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + } + + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * string keyed property of `object` thru `iteratee`. The iteratee is invoked + * with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapValues + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + function mapKeys(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, iteratee(value, key, object), value); + }); + return result; + } + + /** + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys + * @example + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * + * // The `_.property` iteratee shorthand. + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + function mapValues(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; + } + + /** + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ + var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); + }); + + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined`, merging is handled by the + * method instead. The `customizer` is invoked with six arguments: + * (objValue, srcValue, key, object, source, stack). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { 'a': [1], 'b': [2] }; + * var other = { 'a': [3], 'b': [4] }; + * + * _.mergeWith(object, other, customizer); + * // => { 'a': [1, 3], 'b': [2, 4] } + */ + var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { + baseMerge(object, source, srcIndex, customizer); + }); + + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; + }); + + /** + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + function omitBy(object, predicate) { + return pickBy(object, negate(getIteratee(predicate))); + } + + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); + + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = getIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); + } + + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + path = castPath(path, object); + + var index = -1, + length = path.length; + + // Ensure the loop is entered when path is empty. + if (!length) { + length = 1; + object = undefined; + } + while (++index < length) { + var value = object == null ? undefined : object[toKey(path[index])]; + if (value === undefined) { + index = length; + value = defaultValue; + } + object = isFunction(value) ? value.call(object) : value; + } + return object; + } + + /** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); + } + + /** + * This method is like `_.set` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.setWith(object, '[0][1]', 'a', Object); + * // => { '0': { '1': 'a' } } + */ + function setWith(object, path, value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseSet(object, path, value, customizer); + } + + /** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ + var toPairs = createToPairs(keys); + + /** + * Creates an array of own and inherited enumerable string keyed-value pairs + * for `object` which can be consumed by `_.fromPairs`. If `object` is a map + * or set, its entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entriesIn + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairsIn(new Foo); + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + */ + var toPairsIn = createToPairs(keysIn); + + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); + + iteratee = getIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } + + /** + * Removes the property at `path` of `object`. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 7 } }] }; + * _.unset(object, 'a[0].b.c'); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + * + * _.unset(object, ['a', '0', 'b', 'c']); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + */ + function unset(object, path) { + return object == null ? true : baseUnset(object, path); + } + + /** + * This method is like `_.set` except that accepts `updater` to produce the + * value to set. Use `_.updateWith` to customize `path` creation. The `updater` + * is invoked with one argument: (value). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.update(object, 'a[0].b.c', function(n) { return n * n; }); + * console.log(object.a[0].b.c); + * // => 9 + * + * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); + * console.log(object.x[0].y.z); + * // => 0 + */ + function update(object, path, updater) { + return object == null ? object : baseUpdate(object, path, castFunction(updater)); + } + + /** + * This method is like `_.update` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.updateWith(object, '[0][1]', _.constant('a'), Object); + * // => { '0': { '1': 'a' } } + */ + function updateWith(object, path, updater, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); + } + + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } + + /** + * Creates an array of the own and inherited enumerable string keyed property + * values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return object == null ? [] : baseValues(object, keysIn(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); + } + + /** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ + function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); + } + + /** + * Produces a random number between the inclusive `lower` and `upper` bounds. + * If only one argument is provided a number between `0` and the given number + * is returned. If `floating` is `true`, or either `lower` or `upper` are + * floats, a floating-point number is returned instead of an integer. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Number + * @param {number} [lower=0] The lower bound. + * @param {number} [upper=1] The upper bound. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(lower, upper, floating) { + if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { + upper = floating = undefined; + } + if (floating === undefined) { + if (typeof upper == 'boolean') { + floating = upper; + upper = undefined; + } + else if (typeof lower == 'boolean') { + floating = lower; + lower = undefined; + } + } + if (lower === undefined && upper === undefined) { + lower = 0; + upper = 1; + } + else { + lower = toFinite(lower); + if (upper === undefined) { + upper = lower; + lower = 0; + } else { + upper = toFinite(upper); + } + } + if (lower > upper) { + var temp = lower; + lower = upper; + upper = temp; + } + if (floating || lower % 1 || upper % 1) { + var rand = nativeRandom(); + return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); + } + return baseRandom(lower, upper); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); + }); + + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ + function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); + } + + /** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + } + + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); + + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); + + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; + } + + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ + function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; + } + + /** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); + + /** + * Converts `string`, as space separated words, to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.lowerCase('--Foo-Bar--'); + * // => 'foo bar' + * + * _.lowerCase('fooBar'); + * // => 'foo bar' + * + * _.lowerCase('__FOO_BAR__'); + * // => 'foo bar' + */ + var lowerCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toLowerCase(); + }); + + /** + * Converts the first character of `string` to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.lowerFirst('Fred'); + * // => 'fred' + * + * _.lowerFirst('FRED'); + * // => 'fRED' + */ + var lowerFirst = createCaseFirst('toLowerCase'); + + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + if (!length || strLength >= length) { + return string; + } + var mid = (length - strLength) / 2; + return ( + createPadding(nativeFloor(mid), chars) + + string + + createPadding(nativeCeil(mid), chars) + ); + } + + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padEnd('abc', 6); + * // => 'abc ' + * + * _.padEnd('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padEnd('abc', 3); + * // => 'abc' + */ + function padEnd(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (string + createPadding(length - strLength, chars)) + : string; + } + + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padStart('abc', 6); + * // => ' abc' + * + * _.padStart('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padStart('abc', 3); + * // => 'abc' + */ + function padStart(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (createPadding(length - strLength, chars) + string) + : string; + } + + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a + * hexadecimal, in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the + * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category String + * @param {string} string The string to convert. + * @param {number} [radix=10] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + if (guard || radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); + } + + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=1] The number of times to repeat the string. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n, guard) { + if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + return baseRepeat(toString(string), n); + } + + /** + * Replaces matches for `pattern` in `string` with `replacement`. + * + * **Note:** This method is based on + * [`String#replace`](https://mdn.io/String/replace). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to modify. + * @param {RegExp|string} pattern The pattern to replace. + * @param {Function|string} replacement The match replacement. + * @returns {string} Returns the modified string. + * @example + * + * _.replace('Hi Fred', 'Fred', 'Barney'); + * // => 'Hi Barney' + */ + function replace() { + var args = arguments, + string = toString(args[0]); + + return args.length < 3 ? string : string.replace(args[1], args[2]); + } + + /** + * Converts `string` to + * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--FOO-BAR--'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); + + /** + * Splits `string` by `separator`. + * + * **Note:** This method is based on + * [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ + function split(string, separator, limit) { + if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { + separator = limit = undefined; + } + limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; + if (!limit) { + return []; + } + string = toString(string); + if (string && ( + typeof separator == 'string' || + (separator != null && !isRegExp(separator)) + )) { + separator = baseToString(separator); + if (!separator && hasUnicode(string)) { + return castSlice(stringToArray(string), 0, limit); + } + } + return string.split(separator, limit); + } + + /** + * Converts `string` to + * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @since 3.1.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar--'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__FOO_BAR__'); + * // => 'FOO BAR' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + upperFirst(word); + }); + + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); + + target = baseToString(target); + return string.slice(position, position + target.length) == target; + } + + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is given, it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options={}] The options object. + * @param {RegExp} [options.escape=_.templateSettings.escape] + * The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] + * The "evaluate" delimiter. + * @param {Object} [options.imports=_.templateSettings.imports] + * An object to import into the template as free variables. + * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] + * The "interpolate" delimiter. + * @param {string} [options.sourceURL='lodash.templateSources[n]'] + * The sourceURL of the compiled template. + * @param {string} [options.variable='obj'] + * The data object variable name. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the compiled template function. + * @example + * + * // Use the "interpolate" delimiter to create a compiled template. + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // Use the HTML "escape" delimiter to escape data property values. + * var compiled = _.template('<%- value %>'); + * compiled({ 'value': ' - - - + diff --git a/wwwroot/500.html b/wwwroot/500.html index 5a93f177f0..db1915924e 100644 --- a/wwwroot/500.html +++ b/wwwroot/500.html @@ -1,94 +1,50 @@ - - - - 500 - Internal server error - - - - - - - - - -
- - -
-
-
- - - - - -
-
- -

Internal server error

-

Something went wrong on our server. Please send an email to data@pmc.gov.au, explaining what you were doing at the time it happened. This will help us track down the cause.

-

← Return to NationalMap. -

500
- - -
-
- - -
- -
-
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

- Terms and conditions – - Privacy -

-
+ + + TerriaJS + + + + + + +

500

+
+

Internal server error.

-
- - - - + diff --git a/wwwroot/about.html b/wwwroot/about.html deleted file mode 100644 index d5ad3dd657..0000000000 --- a/wwwroot/about.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - The National Map - About - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -

About the NationalMap

- -

The NationalMap is a website for map-based access to spatial data from Australian government agencies. - It is an initiative of the Department of Communications and the Arts now currently managed by the Department of the Prime Minister and Cabinet and the software has been developed by Data61 working closely with the Department of Communications and the Arts, Geoscience Australia and other government agencies.

- - -
- -
- -

The NationalMap is a fully open architecture. When you access data through it, you are typically - accessing the data directly from the government department or agency which is the custodian of that data.

- -

The NationalMap...

-
    -
  • provides easy access to authoritative and other spatial data to government, business and the public
  • -
  • facilitates the opening of data by federal, state and local government bodies
  • -
  • provides an open framework of geospatial data services that supports commercial and community innovation
  • -
- -

To see what data is available on the NationalMap, refer to the Data Catalogue in the - NationalMap itself. Click the Data Catalogue tab and expand the Data Set group names.

- -

How to use the NationalMap

- -

Just go to http://nationalmap.gov.au/. Most operations are obvious, - but you can click the Help and FAQs button near the top of this page for specific instructions.

- -

For further information email data@pmc.gov.au. - Feel free to send us feedback and bug reports.

- -

Contributing Data to NationalMap

- -

Spatial data sets which are placed on data.gov.au using supported data formats and protocols (such as WMS) will - automatically be included in the NationalMap. See the How To... page for more information.

- -

Australian government agencies that wish to find out more information about contributing data sets to the NationalMap - should email data@pmc.gov.au with their questions. - Typically, the NationalMap does not store the data itself, but refers to the data servers of the data contributors, - directly taking that data and presenting it overlaid over a map. Therefore, agencies providing data directly must have the data - available via an online server using a standard protocol.

- -

NationalMap Software

- -

The NationalMap is Open Source software available as a - Github project. The core platform, TerriaJS, was initially - developed by Data61 for the NationalMap, but has subsequently been used for other projects. It has been made available - to assist with the development of other spatial data viewing applications.

- -

The NationalMap core software is licensed under the Apache License, Version 2.0 (the "License"). You may not use the source code files - except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0. - Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - specific language governing permissions and limitations under the License.

- -

Additional Open Source Software Used

- -

In developing the NationalMap, Data61 has used open source software and contributed back to it. NationalMap leverages these - excellent open source libraries:

- - -

The complete list is available with the NationalMap source code

- -

Terms & Conditions

-

The information displayed on the NationalMap is for general informational purposes only, and is not - intended to provide any commercial, financial, or legal advice. Any information in connection with - the NationalMap may not be appropriate to your individual needs. You must exercise your own - independent, skill, care and judgment with respect to how you use the information displayed on the - National Map.

- -

As a condition of using the NationalMap, you must comply with all applicable laws, regulations and - third party rights (including, without limitation, laws regarding the import or export of data or - software, privacy and local laws). You must not use NationalMap to encourage or promote illegal - activity or violation of third party rights. Some parts of NationalMap (like the URL shortening - function) rely upon third party APIs.

- -

In any important matter, you should seek professional advice relevant to your own - circumstances.

- -

The information displayed on the NationalMap was consolidated by the Department of the Prime Minister and Cabinet.

- -

The Department, Data61 and Geoscience Australia (“We”) make no representations or warranties - regarding the accuracy or completeness of any content or the product in connection with the - NationalMap. We disclaim all responsibility and all liability (including without limitation, liability in - negligence, for errors or omissions) for all expenses, loss, damage and costs which you might incur - as a result of the information displayed on the NationalMap and your use of it.

- -

The NationalMap must not be used for navigation or precise spatial analysis or for any activities - where the use or failure of the NationalMap could lead to death, personal injury, or environmental damage - (such as the operation of nuclear facilities, air traffic control, or life support systems).

- -

Access to data:

-

Any information provided by data custodians displayed on the NationalMap is provided as is and on - the understanding that the respective data custodian is not responsible for, nor guarantees the - timeliness, accuracy or completeness of that information. If you intend to rely on any information - displayed on the NationalMap or data.gov.au, then you must apply in writing to the respective data - custodian for further authorisation.

- -

You acknowledge that your use of the NationalMap or data.gov.au means that you have provided - your acceptance of these terms and conditions.

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

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/config.json b/wwwroot/config.json index 2a0713aade..c874fe1061 100644 --- a/wwwroot/config.json +++ b/wwwroot/config.json @@ -1,78 +1,372 @@ { - /* Names of init files (in wwwroot/init), without the .json extension, to load by default */ - initializationUrls: [ - "terria" - ], - parameters: { - googleUrlShortenerKey: null, - googleAnalyticsKey: null, - googleAnalyticsOptions: null, - /* Text that appears at the bottom of the map */ - disclaimer: { - text: "Disclaimer: This map must not be used for navigation or precise spatial analysis", - url: "" - }, - /* + /* Names of init files (in wwwroot/init), without the .json extension, to load by default */ + "initializationUrls": ["simple"], + "parameters": { + "googleUrlShortenerKey": null, + "googleAnalyticsKey": null, + "googleAnalyticsOptions": null, + // Log ConsoleAnalytics events to console + // logToConsole: true, + /* Text that appears at the bottom of the map */ + "disclaimer": { + "text": "Disclaimer: This map must not be used for navigation or precise spatial analysis", + "url": "" + }, + /* // Text that will be added to any pages printed from your site. printDisclaimer:{ text:"Put your print disclaimer here.", url: "#" }, */ - - // Pop-up disclaimer that will be shown at the start - // The text of the disclaimer is in lib/Views/GlobalDisclaimer.html - // globalDisclaimer: { - // confirmationRequired: false, - // buttonTitle: "I agree", - // title: "Disclaimer", - // // If the current browser location is not prod, or is dev, then show a "not the real site" warning. - // // The text of that is in lib/Views/DevelopmentDisclaimerPreamble.html - // //prodHostRegex: "gov.\\.au$", - // //devHostRegex: "\\b(staging|preview|test|dev)\\.", - // enableOnLocalhost: true // If false, don't show this when running on localhost - // }, - - /* + // Pop-up disclaimer that will be shown at the start + // The text of the disclaimer is in lib/Views/GlobalDisclaimer.html + // globalDisclaimer: { + // confirmationRequired: false, + // buttonTitle: "I agree", + // title: "Disclaimer", + // // If the current browser location is not prod, or is dev, then show a "not the real site" warning. + // // The text of that is in lib/Views/DevelopmentDisclaimerPreamble.html + // //prodHostRegex: "gov.\\.au$", + // //devHostRegex: "\\b(staging|preview|test|dev)\\.", + // enableOnLocalhost: true // If false, don't show this when running on localhost + // }, + /* developerAttribution: { text: "Your organisation", link: "http://www.example.com" },*/ - // This is used in various text messages. You should also set in index.html - appName: "Terria Map", - - // See comments in lib/Views/global.scss for further information about customising colors, logos, fonts etc. - brandBarElements: [ - "", - "<a target=\"_blank\" href=\"https://terria.io\"><img src=\"images/terria_logo.png\" height=\"52\" title=\"Version: {{version}}\" /></a>", - "" - ], - // Shown when things go wrong. - supportEmail: "help@example.com", - // You probably shouldn't change this. - proj4ServiceBaseUrl: "proj4def/", - // Or this - feedbackUrl: "feedback", - - // Default mobile viewer mode when loading the map for the first time on mobile platforms. - // Options are: "3DTerrain", "3DSmooth", "2D" - mobileDefaultViewerMode: "2d", - // Enable experimental features, since its nice to have the bleeding edge. - // Disable it if things go wrong with the experimental features or your users aren't robust to features which might change or disapear completly. - "experimentalFeatures": true, - - // To override TerriaJS's region mapping file with a local one. - // regionMappingDefinitionsUrl: "data/regionMapping.json" - - // True to display welcome message on startup. - // "showWelcomeMessage": false, - - // True to display in-app guides. - // "showInAppGuides": false, - - // True to display new feature popups. - // "showFeaturePrompts": false, - - } + // This is used in various text messages. You should also set <title> in index.html + "appName": "Terria Map", + // See comments in lib/Views/global.scss for further information about customising colors, logos, fonts etc. + "brandBarElements": [ + "", + "<a target=\"_blank\" href=\"https://terria.io\"><img src=\"images/terria_logo.png\" height=\"52\" title=\"Version: {{version}}\" /></a>", + "" + ], + // Shown when things go wrong. + "supportEmail": "help@example.com", + // You probably shouldn't change this. + "proj4ServiceBaseUrl": "proj4def/", + // Or this + "feedbackUrl": "feedback", + // Default mobile viewer mode when loading the map for the first time on mobile platforms. + // Options are: "3DTerrain", "3DSmooth", "2D" + "mobileDefaultViewerMode": "2d", + // Enable experimental features, since its nice to have the bleeding edge. + // Disable it if things go wrong with the experimental features or your users aren't robust to features which might change or disapear completly. + "experimentalFeatures": true, + // To enable welcome message when map first loads + // "showWelcomeMessage": true, + // To override the welcome message video displayed on the welcome message + // By default, the Getting Started to Terria video is displayed + // "welcomeMessageVideo": { + // "videoTitle": "Getting started with the map", + // "videoUrl": "https://www.youtube-nocookie.com/embed/NTtSM70rIvI", // use an embedded video link + // "placeholderImage": "https://img.youtube.com/vi/NTtSM70rIvI/maxresdefault.jpg" + // }, + // True to display in-app guides. + // "showInAppGuides": false, + // see `languageOverrides.json` in languages/en + "languageConfiguration": { + "enabled": false, + "debug": false, + "languages": { + "en": "English", + "fr": "Français" + }, + "fallbackLanguage": "en" + }, + "searchBarConfig": {}, + "searchProviders": [ + { + "id": "search-provider/cesium-ion", + "type": "cesium-ion-search-provider", + "name": "translate#viewModels.searchLocations", + "flightDurationSeconds": 1.5, + "minCharacters": 3 + } + ], + "helpContent": [ + { + "title": "translate#gettingstarted.title", + "itemName": "gettingstarted", + "paneMode": "videoAndContent", + "markdownText": "translate#gettingstarted.markdownText", + "icon": "video", + "videoUrl": "translate#gettingstarted.videoUrl", + "placeholderImage": "translate#gettingstarted.placeholderImage" + }, + { + "title": "translate#stepbystepguide.title", + "itemName": "stepbystepguide", + "paneMode": "trainer", + "markdownText": "translate#stepbystepguide.markdownText", + "icon": "oneTwoThree", + "trainerItems": [ + { + "title": "translate#stepbystepguide.gettingstarted.title", + "footnote": "translate#stepbystepguide.gettingstarted.footnote", + "steps": [ + { + "title": "translate#stepbystepguide.gettingstarted.step1.title", + "markdownDescription": "translate#stepbystepguide.gettingstarted.step1.markdownDescription" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step2.title", + "markdownDescription": "translate#stepbystepguide.gettingstarted.step2.markdownDescription" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step3.title", + "markdownDescription": "translate#stepbystepguide.gettingstarted.step3.markdownDescription" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step4.title" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step5.title" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step6.title" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step7.title" + }, + { + "title": "translate#stepbystepguide.gettingstarted.step8.title" + } + ] + } + // -- Uncomment to enable the following trainer guides -- + // { + // "title": "translate#stepbystepguide.satelliteimagery.title", + // "footnote": "translate#stepbystepguide.satelliteimagery.footnote", + // "steps": [ + // { + // "title": "translate#stepbystepguide.satelliteimagery.step1.title", + // "markdownDescription": "translate#stepbystepguide.satelliteimagery.step1.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.satelliteimagery.step2.title", + // "markdownDescription": "translate#stepbystepguide.satelliteimagery.step2.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.satelliteimagery.step3.title", + // "markdownDescription": "translate#stepbystepguide.satelliteimagery.step3.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.satelliteimagery.step4.title", + // "markdownDescription": "translate#stepbystepguide.satelliteimagery.step4.markdownDescription" + // } + // ] + // }, + // { + // "title": "translate#stepbystepguide.comparetimeseries.title", + // "footnote": "translate#stepbystepguide.comparetimeseries.footnote", + // "steps": [ + // { + // "title": "translate#stepbystepguide.comparetimeseries.step1.title", + // "markdownDescription": "translate#stepbystepguide.comparetimeseries.step1.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.comparetimeseries.step2.title", + // "markdownDescription": "translate#stepbystepguide.comparetimeseries.step2.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.comparetimeseries.step3.title", + // "markdownDescription": "translate#stepbystepguide.comparetimeseries.step3.markdownDescription" + // }, + // { + // "title": "translate#stepbystepguide.comparetimeseries.step4.title", + // "markdownDescription": "translate#stepbystepguide.comparetimeseries.step4.markdownDescription" + // } + // ] + // } + ] + }, + { + "icon": "story", + "itemName": "storymigration", + "markdownText": "## Share & Story Migration\n\n### Guide on updating share links, including stories\n\nIf you've received a warning telling you that a share link was based off an older version of TerriaJS, you'll want to do a few things to recreate them in the latest version of Terria!\n\n#### Creators\n\n1. Identify the share URL which causes a notification of share preservation effort when loading them into Terria. e.g. you may know where they are embedded, or come across them accidentally\n2. Open them in the newer (v8) based map application \n3. Check that everything is sharing as you expect, tweak the layers to fit if some are missing or not behaving correctly.\n4. Update the share link by clicking the Share/Print button and copy the new link\n5. If distribution of share link is known, update the url in your web page (if embedded), or send the new link to users \n\n#### Consumers\n1. Load the share URL\n2. If it doesn't quite look right, notify the provider so they can follow the above steps to recreate it in the latest version of Terria", + "title": "Share & Story migration" + } + // For maps with satellite imagery, also see `showInAppGuides` + // { + // "itemName": "satelliteimagery", + // "title": "Satellite Imagery", + // "paneMode": "slider", + // "icon": "satellite" + // } + ], + "helpContentTerms": [ + { + "term": "translate#helpContentTerm1.term", + "aliases": "translate#helpContentTerm1.aliases", + "content": "translate#helpContentTerm1.content" + }, + { + "term": "translate#helpContentTerm2.term", + "aliases": "translate#helpContentTerm2.aliases", + "content": "translate#helpContentTerm1.content" + }, + { + "term": "translate#helpContentTerm3.term", + "content": "translate#helpContentTerm3.content" + }, + { + "term": "translate#helpContentTerm4.term", + "content": "translate#helpContentTerm4.content" + }, + { + "term": "translate#helpContentTerm5.term", + "aliases": ["catalogue"], + "content": "translate#helpContentTerm5.content" + }, + { + "term": "translate#helpContentTerm6.term", + "aliases": "translate#helpContentTerm6.aliases", + "content": "translate#helpContentTerm6.content" + }, + { + "term": "translate#helpContentTerm7.term", + "content": "translate#helpContentTerm7.content" + }, + { + "term": "translate#helpContentTerm8.term", + "content": "translate#helpContentTerm8.content" + } + ] + // Or direct strings + // "helpContent": [ + // { + // "title": "Getting started with the map", + // "itemName": "gettingstarted", + // "paneMode": "videoAndContent", + // "markdownText": "# Getting started with the map\n\nIf you're new to the map or using spatial data, our Getting Started video quickly covers the basic functionality you'll need to use to add and interrogate data sets.\n\nIf you don't have time to watch the video, we suggest exploring the following areas:\n\n1. Search for a location to quickly find an area of interest\n2. Use 'Explore map data' to view the catalogue of available data sets and add them to the map\n3. Interact with the data layer, including opacity and toggling on and off on the left in your workbench\n4. Click on the data on the map to view more detailed data, including the raw data\n5. Change your basemap using options in 'Map Settings' to help make some data sets more visible\n6. Zoom and change your view, including tilting the view angle using the controls on the right-hand side of the screen", + // "icon": "video", + // "videoUrl": "https://www.youtube-nocookie.com/embed/FjSxaviSLhc", + // "placeholderImage": "https://img.youtube.com/vi/FjSxaviSLhc/maxresdefault.jpg" + // }, + // { + // "title": "Step by step guide", + // "itemName": "stepbystepguide", + // "paneMode": "trainer", + // "markdownText": "# Step by step guide\n\nLaunch a step by step guide for various popular workflows below:", + // "icon": "oneTwoThree", + // "trainerItems": [ + // { + // "title": "Adding satellite imagery", + // "footnote": "Important: Satellite imagery can take a little while to load so please be patient. If images don’t seem to be loading, zoom out a little bit", + // "steps": [ + // { + // "title": "Find the location to view satellite imagery", + // "markdownDescription": "- Use the location search or zoom and pan around the map using your mouse or the zoom controls" + // }, + // { + // "title": "Add the satellite imagery to the map", + // "markdownDescription": "- Open the data catalogue using \"Explore map data\" button\n- Navigate through datasets to select your satellite option: Landsat or Sentinel, and daily or composite images. This can depend on resolution of the image you need (10m or 25m) and whether you want daily, 16 day composite, or annual average images\n - Select \"Add to the map\" to view the satellite imagery" + // }, + // { + // "title": "Filter images to find satellite imagery", + // "markdownDescription": "- Filter images by location to quickly find satellite images for that location\n - Satellites circle the globe many times a day. You can expect satellite imagery to be available for one location every two weeks\n - If you haven't already selected your point of interest on the map, zoom in to select one. You will see the filter applied in blue in the Workbench on the left" + // }, + // { + // "title": "Select a time and date", + // "markdownDescription": "- Use the date picker to select a time and date. Cycle backwards through previous years using the back arrow\n - Choose another date if your imagery is obscured by clouds. You can quickly cycle back and forward using the arrows next to the date picker" + // } + // ] + // }, + // { + // "title": "View and compare different points in time", + // "footnote": "Important: Any time series data can be compared using the Split Screen Mode, not just satellite imagery", + // "steps": [ + // { + // "title": "Add a time series dataset to the map", + // "markdownDescription": "- Satellite imagery is a good example of time series data, with many satellites going back decades\n- Find your location of interest and filter available imagery by this location\n-See our Adding Satellite Imagery to the Map guide for more" + // }, + // { + // "title": "Select the time and date", + // "markdownDescription": "- In the workbench on the left, select the time and date which will open the date picker\n- Select a year, month and date, or navigate back to other years and even centuries using the back arrow\n- Available dates appear in blue" + // }, + // { + // "title": "Compare different dates at one location", + // "markdownDescription": "- From the 3 dots drop-down menu in the workbench, press 'Compare' to activate Split Screen Mode\n- A duplicate copy of your dataset will appear in the workbench\n- Choose the dates you want to compare on the left and right of the screen\n- Drag the slider using the white button to swipe and compare the two image dates" + // }, + // { + // "title": "Close Split Screen Mode", + // "markdownDescription": "- Escape the Split Screen Mode by pressing the 'x' of Split Screen Mode title in the workbench\n- Remove the duplicate copy of your dataset in the workbench using the 3 dots drop-down menu" + // } + // ] + // }, + // // Only for maps with delta-enabled catalog items + // // { + // // "title": "Detecting change between two points in time", + // // "steps": [ + // // { + // // "title": "Add a Change Detection / Difference-enabled dataset to the map", + // // "markdownDescription": "- This includes the dataset Delta Blended Service\n- Search or scroll to find the location where you want to perform change detection" + // // }, + // // { + // // "title": "Turn on Difference mode", + // // "markdownDescription": "- Behind the 3 dots in the workbench, select the menu item 'Difference'\n- Difference mode will activate, splitting the screen and adding new options on the left" + // // }, + // // { + // // "title": "Select your Difference variables", + // // "markdownDescription": "- Use the date pickers at the bottom to choose your dates for screen A and B\n - The Preview style defaults to True colour to help you find cloud-free images, change if required\n - If you have previously searched for a location, this will be used to refine the imagery to only show available images for that location\n - If you didn't search for a location, select a point on the map in your area of interest to refine the imagery for that area only\n - Select your Difference Output, e.g. NDVI\n - Select Generate Change Detection" + // // }, + // // { + // // "title": "View the change detection results on-screen", + // // "markdownDescription": "- The legend for the Difference calculation will appear on the left to help your analysis\n - You can change dates using the date pickers to toggle between dates and a new Change Detection calculation will be run\n - Close or exit Difference mode when you are finished your analysis" + // // } + // // ] + // // } + // ] + // }, + // // For maps with satellite imagery, also see `showInAppGuides` + // // { + // // "itemName": "satelliteimagery", + // // "title": "Satellite Imagery", + // // "paneMode": "slider", + // // "icon": "satellite" + // // } + // ], + // "helpContentTerms": [ + // { + // term: "dataset", + // aliases: ["data set", "data sets", "datasets"], + // content: "A collection of related information, organised as one using a common data structure, e.g. \"average house prices in Sydney for 2019\" or \"minimum and maximum daily temperature\"" + // }, + // { + // term: "time series", + // aliases: ["timeseries"], + // content: "A sequence of data collected over different points in time, e.g. temperature sensor data or a gallery of images of the same location" + // }, + // { + // term: "workbench", + // content: "The panel on the left side of the screen that shows what datasets you have added to the map" + // }, + // { + // term: "4D", + // content: "3D data that also has a time-series component" + // }, + // { + // term: "catalog", + // aliases: ["catalogue"], + // content: "the inventory of all datasets available to be added to the map" + // }, + // { + // term: "base maps", + // aliases: ["basemap", "base map", "basemaps"], + // content: "Different map options for the blank base map, such as Bing imagery, roads, dark or light maps" + // }, + // { + // term: "source dataset", + // content: "The dataset you added to your workbench that allows for difference calculations" + // }, + // { + // term: "preview style", + // content: "The way the dataset appears in the preview window. We recommend true colour to search for cloud-free images" + // } + // ] + } } - diff --git a/wwwroot/data/2011Census_TOT_AUS.csv b/wwwroot/data/2011Census_TOT_AUS.csv deleted file mode 100644 index f87773a468..0000000000 --- a/wwwroot/data/2011Census_TOT_AUS.csv +++ /dev/null @@ -1,2 +0,0 @@ -AUS,Tot_P_M,Tot_P_F,Tot_P_P -0,10634013,10873706,21507719 diff --git a/wwwroot/data/2011Census_TOT_CED.csv b/wwwroot/data/2011Census_TOT_CED.csv deleted file mode 100644 index 0a3df1ccfc..0000000000 --- a/wwwroot/data/2011Census_TOT_CED.csv +++ /dev/null @@ -1,169 +0,0 @@ -CED,Tot_P_M,Tot_P_F,Tot_P_P -101,71755,76005,147760 -102,70048,72021,142069 -103,72395,76312,148707 -104,64822,66549,131371 -105,78768,79640,158408 -106,68427,74661,143088 -107,72472,72842,145314 -108,64014,67023,131037 -109,82100,84207,166307 -110,66963,70693,137656 -111,65967,68879,134846 -112,71621,73154,144775 -113,66728,71314,138042 -114,67465,67924,135389 -115,66793,68214,135007 -116,73188,75776,148964 -117,65568,67648,133216 -118,71921,75320,147241 -119,77297,77441,154738 -120,70221,71472,141693 -121,69314,69824,139138 -122,69238,69150,138388 -123,77695,79788,157483 -124,73357,75626,148983 -125,61748,65669,127417 -126,69044,71444,140488 -127,68403,71267,139670 -128,67717,70489,138206 -129,70913,72539,143452 -130,67648,70326,137974 -131,71090,73797,144887 -132,65508,66732,132240 -133,71591,76500,148091 -134,64773,68099,132872 -135,75648,75279,150927 -136,82848,81804,164652 -137,62711,65270,127981 -138,83590,82891,166481 -139,65121,68860,133981 -140,72368,72664,145032 -141,64958,69940,134898 -142,62199,65658,127857 -143,88151,82545,170696 -144,65015,68427,133442 -145,70810,75989,146799 -146,80816,80799,161615 -147,77512,79529,157041 -148,72909,75398,148307 -194,7592,5326,12918 -197,57,55,112 -201,64039,66391,130430 -202,68607,72711,141318 -203,66456,70019,136475 -204,68586,72028,140614 -205,67856,67426,135282 -206,83025,84537,167562 -207,64525,67060,131585 -208,68140,71528,139668 -209,69153,72125,141278 -210,64258,67515,131773 -211,61331,65341,126672 -212,67253,71690,138943 -213,69200,71691,140891 -214,74593,74230,148823 -215,68248,69843,138091 -216,64722,69994,134716 -217,94491,95027,189518 -218,63775,68339,132114 -219,94859,95338,190197 -220,66111,67581,133692 -221,63238,64981,128219 -222,76418,79572,155990 -223,62919,66671,129590 -224,62120,67319,129439 -225,71997,73906,145903 -226,108425,109072,217497 -227,63434,64737,128171 -228,63322,65669,128991 -229,90291,91316,181607 -230,67728,70545,138273 -231,87235,90397,177632 -232,75535,77610,153145 -233,59434,62771,122205 -234,64457,65622,130079 -235,65401,66657,132058 -236,62903,63996,126899 -237,73825,76531,150356 -294,4671,3636,8307 -297,36,0,36 -301,67854,68184,136038 -302,68859,72312,141171 -303,67886,70780,138666 -304,72657,72394,145051 -305,75838,71580,147418 -306,77701,73814,151515 -307,67779,69013,136792 -308,71370,74618,145988 -309,63954,68050,132004 -310,60573,64654,125227 -311,76863,71259,148122 -312,71491,73469,144960 -313,70954,71690,142644 -314,67775,71840,139615 -315,74369,74827,149196 -316,65313,69332,134645 -317,79732,75387,155119 -318,81091,81185,162276 -319,71007,74645,145652 -320,69817,71940,141757 -321,74333,73498,147831 -322,68021,73050,141071 -323,72546,75158,147704 -324,72183,73794,145977 -325,72032,72493,144525 -326,67386,72192,139578 -327,83011,84852,167863 -328,72686,75406,148092 -329,67028,68676,135704 -330,68685,68835,137520 -394,7151,5394,12545 -397,276,195,471 -401,74193,75831,150024 -402,74600,73782,148382 -403,64432,69708,134140 -404,73769,71026,144795 -405,66731,70922,137653 -406,73371,75804,149175 -407,65524,67523,133047 -408,68583,71049,139632 -409,79265,80948,160213 -410,67355,72861,140216 -411,77612,78607,156219 -494,1779,1289,3068 -497,5,0,5 -501,77665,78074,155739 -502,73557,73947,147504 -503,70404,72011,142415 -504,67911,70635,138546 -505,98212,79032,177244 -506,69634,69797,139431 -507,71076,73335,144411 -508,74414,74914,149328 -509,71597,72851,144448 -510,77268,73121,150389 -511,76942,76977,153919 -512,73259,71805,145064 -513,69743,72238,141981 -514,80126,78974,159100 -515,69699,72239,141938 -594,4287,3011,7298 -597,382,34,416 -601,48210,51039,99249 -602,47924,50218,98142 -603,47951,51008,98959 -604,47808,49897,97705 -605,50087,50021,100108 -694,613,460,1073 -697,81,34,115 -701,56437,53039,109476 -702,53718,49396,103114 -794,1019,851,1870 -797,91,18,109 -801,82921,85581,168502 -802,93703,94761,188464 -894,328,303,631 -897,3,0,3 -994,7,17,24 -997,0,3,3 diff --git a/wwwroot/data/2011Census_TOT_LGA.csv b/wwwroot/data/2011Census_TOT_LGA.csv deleted file mode 100644 index ffe2e437df..0000000000 --- a/wwwroot/data/2011Census_TOT_LGA.csv +++ /dev/null @@ -1,578 +0,0 @@ -LGA,Tot_P_M,Tot_P_F,Tot_P_P -10050,23072,24738,47810 -10110,11515,12590,24105 -10150,20032,21182,41214 -10200,38225,35513,73738 -10250,18842,20432,39274 -10300,1175,1108,2283 -10350,89928,92424,182352 -10470,19327,19192,38519 -10550,15684,16266,31950 -10600,6074,6444,12518 -10650,4002,4064,8066 -10750,149547,151552,301099 -10800,2919,2946,5865 -10850,3488,3497,6985 -10900,36711,39231,75942 -10950,1478,1422,2900 -11000,1218,1191,2409 -11050,1205,1194,2399 -11100,19494,19862,39356 -11150,1458,1410,2868 -11200,884,882,1766 -11250,9017,9500,18517 -11300,15910,16513,32423 -11350,14285,14924,29209 -11400,6405,6416,12821 -11450,27880,28840,56720 -11500,71339,74628,145967 -11520,36804,38959,75763 -11550,68710,68744,137454 -11600,1365,1222,2587 -11700,1046,945,1991 -11720,25257,25583,50840 -11730,24515,25150,49665 -11750,2461,2249,4710 -11800,33201,35212,68413 -11860,816,724,1540 -12000,2006,2093,4099 -12050,4901,4871,9772 -12150,2030,2000,4030 -12200,3553,3781,7334 -12300,5486,5514,11000 -12350,6055,6092,12147 -12500,3453,3667,7120 -12600,18728,20077,38805 -12700,4188,4130,8318 -12750,17578,18163,35741 -12850,92521,95245,187766 -12900,4548,4622,9170 -12950,2106,2262,4368 -13010,4285,4371,8656 -13050,2430,2447,4877 -13100,78326,84114,162440 -13310,13881,13600,27481 -13320,16860,17570,34430 -13340,4959,4856,9815 -13380,22658,23883,46541 -13450,12236,12128,24364 -13500,1871,1791,3662 -13550,6033,6033,12066 -13650,2204,2193,4397 -13660,2512,2453,4965 -13700,1777,1807,3584 -13800,31056,31297,62353 -13850,1478,1478,2956 -13950,49104,50059,99163 -14000,76457,80390,156847 -14100,6538,6677,13215 -14150,38227,40628,78855 -14200,7898,8177,16075 -14250,801,695,1496 -14300,3339,2539,5878 -14350,14111,14023,28134 -14400,9791,10195,19986 -14450,27247,28559,55806 -14500,52259,57038,109297 -14550,4642,4586,9228 -14600,3247,3229,6476 -14650,92311,96695,189006 -14700,15258,16252,31510 -14750,5437,5600,11037 -14800,24729,27469,52198 -14850,20904,21862,42766 -14870,10290,9870,20160 -14900,89323,90820,180143 -14920,3771,3709,7480 -14950,1526,1472,2998 -15050,33005,34473,67478 -15150,19408,20339,39747 -15200,37836,38664,76500 -15270,11284,11034,22318 -15300,6828,6601,13429 -15350,12820,14633,27453 -15500,3493,3464,6957 -15550,1194,1067,2261 -15650,8163,7628,15791 -15700,9093,9551,18644 -15750,6479,6446,12925 -15800,2919,2983,5902 -15850,3293,3292,6585 -15900,73152,75383,148535 -15950,29667,32622,62289 -16100,2658,2382,5040 -16150,18580,19477,38057 -16180,7194,7158,14352 -16200,7193,7399,14592 -16250,83560,83298,166858 -16350,88089,90378,178467 -16370,27912,29243,57155 -16380,34935,37761,72696 -16400,31907,32900,64807 -16470,19036,18955,37991 -16550,63367,65622,128989 -16610,10905,11132,22037 -16650,48108,49232,97340 -16700,50060,52978,103038 -16900,31158,32447,63605 -16950,45712,47100,92812 -17000,11648,11046,22694 -17050,4013,3495,7508 -17100,17659,17529,35188 -17150,103167,107696,210863 -17200,89566,79939,169505 -17310,27523,28769,56292 -17350,2873,2903,5776 -17400,3390,3421,6811 -17420,83986,85886,169872 -17450,1784,1574,3358 -17500,5526,5408,10934 -17550,41012,44093,85105 -17620,6865,6889,13754 -17640,3604,3589,7193 -17650,2980,3054,6034 -17700,606,553,1159 -17750,28979,30479,59458 -17800,2026,1936,3962 -17850,1505,1516,3021 -17900,3488,2966,6454 -17950,1387,1371,2758 -18000,69112,71629,140741 -18020,4804,4784,9588 -18050,31262,32225,63487 -18100,1860,1805,3665 -18150,4427,4066,8493 -18200,3433,3176,6609 -18250,32464,34892,67356 -18350,21271,23124,44395 -18400,21609,21650,43259 -18450,95249,97169,192418 -18500,24563,27595,52158 -18550,72379,77367,149746 -18710,7450,7570,15020 -18750,5969,6267,12236 -19399,619,550,1169 -19499,7592,5326,12918 -20110,5877,6004,11881 -20260,5700,5483,11183 -20570,44879,48622,93501 -20660,57427,60879,118306 -20740,14499,15115,29614 -20830,21009,21855,42864 -20910,43842,47972,91814 -21010,6638,7009,13647 -21110,76499,82685,159184 -21180,91343,91392,182735 -21270,3228,3156,6384 -21370,17999,18366,36365 -21450,36703,37473,74176 -21610,125451,126931,252382 -21670,6203,6293,12496 -21750,10140,10205,20345 -21830,8230,8146,16376 -21890,66456,70018,136474 -22110,20798,21398,42196 -22170,61851,64607,126458 -22250,5143,5223,10366 -22310,63761,67252,131013 -22410,9790,9785,19575 -22490,9549,9221,18770 -22620,48776,51841,100617 -22670,68521,67084,135605 -22750,102466,108409,210875 -22830,29882,30567,60449 -22910,6951,7416,14367 -22980,2882,2916,5798 -23110,41619,42244,83863 -23190,9410,9869,19279 -23270,83025,84537,167562 -23350,7525,7653,15178 -23430,69629,72796,142425 -23670,73406,75894,149300 -23810,35365,37031,72396 -23940,3810,3649,7459 -24130,20613,21247,41860 -24210,54039,57261,111300 -24250,3933,3960,7893 -24330,36394,35241,71635 -24410,50390,53449,103839 -24600,46775,46850,93625 -24650,54266,54993,109259 -24780,24976,26003,50979 -24850,17349,17288,34637 -24900,13985,14139,28124 -24970,83616,85664,169280 -25060,52061,55382,107443 -25150,14025,14099,28124 -25250,72129,75112,147241 -25340,70042,74566,144608 -25430,8715,8876,17591 -25490,7904,8051,15955 -25620,6615,6443,13058 -25710,29895,30447,60342 -25810,5909,5936,11845 -25900,45315,46057,91372 -25990,3427,3242,6669 -26080,1423,1577,3000 -26170,13415,13793,27208 -26260,8019,8340,16359 -26350,44785,48360,93145 -26430,4746,4740,9486 -26490,12832,13038,25870 -26610,10303,10146,20449 -26670,2976,2915,5891 -26700,12985,13830,26815 -26730,15490,16539,32029 -26810,20783,20657,41440 -26890,2149,2102,4251 -26980,72821,78513,151334 -27070,76793,78087,154880 -27170,17503,18016,35519 -27260,80581,80994,161575 -27350,36154,37936,74090 -27450,71511,73030,144541 -27630,3532,3556,7088 -29399,489,315,804 -29499,4672,3636,8308 -30250,640,654,1294 -30300,2437,2283,4720 -30370,7479,6977,14456 -30410,1620,1595,3215 -30450,190,160,350 -30760,1090,1110,2200 -30900,263,217,480 -31000,513710,528129,1041839 -31750,240,163,403 -31820,44228,45582,89810 -31900,8724,8640,17364 -31950,316,198,514 -32070,77553,78616,156169 -32250,1075,978,2053 -32260,14281,13387,27668 -32270,15393,13322,28715 -32310,6096,6073,12169 -32330,595,630,1225 -32450,1808,1421,3229 -32500,2430,1722,4152 -32600,168,144,312 -32750,155,128,283 -32770,667,622,1289 -33100,509,384,893 -33200,954,837,1791 -33220,46672,48640,95312 -33360,30096,27795,57891 -33430,241600,252901,494501 -33610,5319,5309,10628 -33620,22722,23027,45749 -33800,5894,5674,11568 -33830,521,463,984 -33960,83096,83808,166904 -33980,12549,10039,22588 -34420,502,529,1031 -34570,231,252,483 -34580,17361,17593,34954 -34590,137978,140072,278050 -34710,2044,2145,4189 -34770,58237,54561,112798 -34800,628,422,1050 -34830,137,129,266 -34860,6730,6346,13076 -35010,185672,192373,378045 -35250,560,582,1142 -35300,11325,9912,21237 -35600,2305,2314,4619 -35670,442,413,855 -35760,5135,5008,10143 -35780,1115,1183,2298 -35790,1225,1111,2336 -35800,948,909,1857 -36070,342,320,662 -36150,528,448,976 -36250,67886,70780,138666 -36300,435,392,827 -36360,54750,54586,109336 -36510,17991,18465,36456 -36580,10926,10713,21639 -36630,15432,15596,31028 -36660,16593,17290,33883 -36710,148643,158266,306909 -36810,22056,21671,43727 -36910,73552,77637,151189 -36950,1621,1635,3256 -36960,2179,2069,4248 -37010,87105,87357,174462 -37300,1775,1559,3334 -37310,16282,15308,31590 -37340,16543,14883,31426 -37400,707,629,1336 -37550,447,498,945 -37570,133,137,270 -37600,1202,1207,2409 -39399,276,195,471 -39499,7151,5394,12545 -40070,10148,9491,19639 -40120,19360,19268,38628 -40220,11545,12154,23699 -40250,1197,1242,2439 -40310,10966,11203,22169 -40430,1262,1194,2456 -40520,5266,5317,10583 -40700,19921,22271,42192 -40910,23216,24946,48162 -41010,1751,1729,3480 -41060,51385,53596,104981 -41140,4340,4409,8749 -41190,902,831,1733 -41330,953,742,1695 -41560,6357,6592,12949 -41750,553,493,1046 -41830,862,840,1702 -41960,656,617,1273 -42030,9871,10665,20536 -42110,2091,2071,4162 -42250,4144,3711,7855 -42600,16451,18154,34605 -42750,2259,2158,4417 -43080,537,496,1033 -43220,557,531,1088 -43360,1165,1114,2279 -43650,7009,6774,13783 -43710,2607,2309,4916 -43790,5660,5627,11287 -43920,4252,4091,8343 -44000,38,35,73 -44060,40024,42967,82991 -44210,4324,3812,8136 -44340,30431,32467,62898 -44550,14463,15304,29767 -44620,12205,13042,25247 -44830,1451,1422,2873 -45040,9949,9793,19742 -45090,4164,3952,8116 -45120,2304,2200,4504 -45290,16720,18167,34887 -45340,78409,81167,159576 -45400,453,422,875 -45540,867,864,1731 -45680,39281,39834,79115 -45890,56146,56669,112815 -46090,7110,6875,13985 -46300,6872,7214,14086 -46450,8521,8812,17333 -46510,9898,10057,19955 -46670,4602,4643,9245 -46860,726,672,1398 -46970,2766,1936,4702 -47140,64252,64857,129109 -47290,1076,1024,2100 -47490,1104,998,2102 -47630,3371,3185,6556 -47700,46839,48628,95467 -47800,2844,2681,5525 -47910,1292,1294,2586 -47980,17333,19507,36840 -48050,6568,7273,13841 -48130,3402,3260,6662 -48260,3403,3597,7000 -48340,5862,5762,11624 -48410,26854,28108,54962 -48540,11174,10914,22088 -48640,639,614,1253 -48750,2171,2226,4397 -48830,5629,5395,11024 -49399,2658,1779,4437 -49499,1779,1288,3067 -50080,16577,17073,33650 -50210,31043,31253,62296 -50250,6522,3479,10001 -50280,5898,5863,11761 -50350,7174,7230,14404 -50420,30715,30547,61262 -50490,17888,17321,35209 -50560,809,758,1567 -50630,1388,838,2226 -50770,788,800,1588 -50840,2118,2201,4319 -50910,473,461,934 -50980,7665,7332,14997 -51080,573,566,1139 -51120,489,485,974 -51190,15595,15753,31348 -51260,14767,15563,30330 -51310,12179,12786,24965 -51330,42854,42660,85514 -51400,7262,7376,14638 -51470,285,261,546 -51540,2964,2823,5787 -51610,611,563,1174 -51680,2251,2176,4427 -51750,4486,4794,9280 -51820,44681,45002,89683 -51890,4906,4221,9127 -51960,2180,1819,3999 -52030,571,496,1067 -52100,538,525,1063 -52170,3724,3881,7605 -52240,578,501,1079 -52310,434,436,870 -52380,154,118,272 -52450,696,614,1310 -52520,678,588,1266 -52590,1722,1463,3185 -52660,6188,6217,12405 -52730,2554,2640,5194 -52800,4969,3466,8435 -52870,2679,2641,5320 -52940,348,330,678 -53010,324,281,605 -53080,650,491,1141 -53150,3353,3577,6930 -53220,8040,3910,11950 -53290,6737,6740,13477 -53360,1285,1108,2393 -53430,13004,13578,26582 -53520,18085,18361,36446 -53570,2431,2254,4685 -53640,669,602,1271 -53710,491,494,985 -53780,53754,52831,106585 -53920,1822,1738,3560 -53990,11658,11579,23237 -54060,1822,1745,3567 -54130,569,486,1055 -54170,75365,77041,152406 -54200,26533,27034,53567 -54280,16290,14817,31107 -54340,2082,2101,4183 -54410,597,584,1181 -54480,275,237,512 -54550,983,999,1982 -54620,602,443,1045 -54690,236,201,437 -54760,433,393,826 -54830,14872,14355,29227 -54900,722,638,1360 -54970,846,381,1227 -55040,1676,837,2513 -55110,34092,35811,69903 -55180,4641,4542,9183 -55250,822,555,1377 -55320,46060,49640,95700 -55390,208,176,384 -55460,1737,1545,3282 -55530,261,219,480 -55600,1246,1230,2476 -55670,472,422,894 -55740,3943,4655,8598 -55810,366,277,643 -55880,265,221,486 -55950,256,234,490 -56020,430,285,715 -56090,18766,17763,36529 -56160,60,54,114 -56230,7173,6976,14149 -56300,675,587,1262 -56370,417,395,812 -56450,478,397,875 -56520,2031,2188,4219 -56580,9995,10539,20534 -56620,701,736,1437 -56730,5200,5357,10557 -56790,1636,1556,3192 -56860,129,101,230 -56930,687,841,1528 -57000,608,296,904 -57080,9269,7445,16714 -57140,591,572,1163 -57210,2497,2385,4882 -57280,8574,6470,15044 -57350,505,538,1043 -57420,1174,952,2126 -57490,51853,52252,104105 -57560,13751,9149,22900 -57630,54,51,105 -57700,9018,8728,17746 -57770,458,399,857 -57840,19905,20834,40739 -57910,96173,99529,195702 -57980,8496,9078,17574 -58050,54018,54443,108461 -58190,232,172,404 -58260,311,305,616 -58330,2180,2207,4387 -58400,190,158,348 -58470,138,113,251 -58510,16307,16126,32433 -58540,500,395,895 -58570,16064,15485,31549 -58610,940,907,1847 -58680,225,213,438 -58760,75220,76857,152077 -58820,1774,1808,3582 -58890,450,418,868 -59030,167,110,277 -59100,389,361,750 -59170,477,437,914 -59250,816,343,1159 -59310,738,696,1434 -59320,220,199,419 -59330,268,255,523 -59340,4050,3749,7799 -59350,279,127,406 -59360,1007,629,1636 -59370,1696,1700,3396 -59399,382,34,416 -59499,4286,3011,7297 -60210,3157,3037,6194 -60410,7482,7978,15460 -60610,9286,10043,19329 -60810,10407,10948,21355 -61010,1194,1068,2262 -61210,4039,3938,7977 -61410,25310,26542,51852 -61510,4932,4772,9704 -61610,11752,12863,24615 -61810,3401,3426,6827 -62010,410,366,776 -62210,3294,3342,6636 -62410,2119,2071,4190 -62610,21465,23191,44656 -62810,23778,24925,48703 -63010,7632,7508,15140 -63210,3128,2958,6086 -63410,816,750,1566 -63610,16441,17452,33893 -63810,4879,4954,9833 -64010,31090,33103,64193 -64210,9134,9754,18888 -64610,6119,6109,12228 -64810,6530,6664,13194 -65010,3098,2951,6049 -65210,1215,1140,2355 -65410,6758,6950,13708 -65610,2448,2230,4678 -65810,10665,11152,21817 -69399,81,34,115 -69499,613,459,1072 -70200,12556,12630,25186 -70420,3406,3417,6823 -70540,90,91,181 -70620,1888,1832,3720 -70700,592,514,1106 -71000,37826,35104,72930 -71300,4521,4577,9098 -72200,4663,4524,9187 -72300,10320,8674,18994 -72330,3063,2768,5831 -72800,13922,13781,27703 -73600,3064,3057,6121 -74050,1320,1260,2580 -74500,3003,2921,5924 -74560,194,175,369 -74660,3263,2969,6232 -79399,4806,3283,8089 -79499,1019,850,1869 -89399,176416,180170,356586 -89499,328,304,632 -99399,1960,1044,3004 -99499,7,18,25 diff --git a/wwwroot/data/2011Census_TOT_POA.csv b/wwwroot/data/2011Census_TOT_POA.csv deleted file mode 100644 index 024faa905f..0000000000 --- a/wwwroot/data/2011Census_TOT_POA.csv +++ /dev/null @@ -1,2517 +0,0 @@ -POA,Tot_P_M,Tot_P_F,Tot_P_P -2000,11726,11034,22760 -2006,525,631,1156 -2007,3644,3467,7111 -2008,3394,2900,6294 -2009,5912,5707,11619 -2010,14794,10609,25403 -2011,9753,8285,18038 -2015,4374,4055,8429 -2016,6759,5276,12035 -2017,7702,6766,14468 -2018,7708,7690,15398 -2019,4399,4502,8901 -2020,5102,5078,10180 -2021,6851,7387,14238 -2022,5681,5914,11595 -2023,5336,5430,10766 -2024,5267,5810,11077 -2025,3239,3941,7180 -2026,15309,15087,30396 -2027,3399,3906,7305 -2028,2049,2638,4687 -2029,4347,5055,9402 -2030,6762,7151,13913 -2031,15377,16943,32320 -2032,7621,7644,15265 -2033,5538,5426,10964 -2034,9152,9941,19093 -2035,16032,17202,33234 -2036,13913,12982,26895 -2037,6609,7232,13841 -2038,4125,4544,8669 -2039,3762,4157,7919 -2040,9804,11060,20864 -2041,7036,7716,14752 -2042,8816,8905,17721 -2043,3501,3347,6848 -2044,3722,3468,7190 -2045,3234,3416,6650 -2046,12013,13166,25179 -2047,5453,5926,11379 -2048,3799,3903,7702 -2049,5169,5285,10454 -2050,3460,3243,6703 -2052,919,892,1811 -2060,5894,6373,12267 -2061,2767,2913,5680 -2062,3218,3566,6784 -2063,2868,3064,5932 -2064,4202,4441,8643 -2065,13141,14035,27176 -2066,13319,14305,27624 -2067,10773,11850,22623 -2068,7699,8172,15871 -2069,6429,6852,13281 -2070,5917,6361,12278 -2071,5770,6390,12160 -2072,3070,3522,6592 -2073,7400,8336,15736 -2074,10021,10923,20944 -2075,9013,9632,18645 -2076,11361,12413,23774 -2077,17085,17814,34899 -2079,3521,3584,7105 -2080,801,772,1573 -2081,2599,2568,5167 -2082,2844,2809,5653 -2083,801,744,1545 -2084,1782,1752,3534 -2085,5175,5533,10708 -2086,6577,6615,13192 -2087,5968,6320,12288 -2088,12820,14633,27453 -2089,5235,5848,11083 -2090,6101,6924,13025 -2092,3293,3433,6726 -2093,10473,11139,21612 -2094,2634,2855,5489 -2095,7500,7572,15072 -2096,6960,6915,13875 -2097,7088,7300,14388 -2099,17984,18702,36686 -2100,9481,9962,19443 -2101,8853,9128,17981 -2102,2901,3245,6146 -2103,4870,5296,10166 -2104,1431,1662,3093 -2105,923,911,1834 -2106,4477,4560,9037 -2107,7090,7375,14465 -2108,961,938,1899 -2109,782,1006,1788 -2110,4889,4916,9805 -2111,6426,6998,13424 -2112,13576,14196,27772 -2113,8128,8671,16799 -2114,10664,10814,21478 -2115,4700,4770,9470 -2116,3113,3103,6216 -2117,9359,9659,19018 -2118,10594,10977,21571 -2119,5172,5730,10902 -2120,9639,9986,19625 -2121,12009,12610,24619 -2122,13792,14751,28543 -2125,7813,8155,15968 -2126,9170,9608,18778 -2127,4077,4068,8145 -2128,2111,1051,3162 -2129,4,0,4 -2130,3167,3420,6587 -2131,10845,11344,22189 -2132,4991,5390,10381 -2133,5099,5643,10742 -2134,6070,6396,12466 -2135,11580,11516,23096 -2136,3313,3407,6720 -2137,11770,12247,24017 -2138,6664,6857,13521 -2139,35,20,55 -2140,6494,6019,12513 -2141,12861,12617,25478 -2142,11664,10860,22524 -2143,3698,3763,7461 -2144,17259,15863,33122 -2145,35227,36084,71311 -2146,7769,7917,15686 -2147,17385,17688,35073 -2148,29190,29480,58670 -2150,13019,11794,24813 -2151,10190,10031,20221 -2152,4864,5360,10224 -2153,25706,26747,52453 -2154,18341,19575,37916 -2155,21981,22047,44028 -2156,6175,6173,12348 -2157,1850,1861,3711 -2158,4018,4271,8289 -2159,2223,2327,4550 -2160,16205,16641,32846 -2161,14134,14134,28268 -2162,8383,8603,16986 -2163,4429,4323,8752 -2164,9185,9179,18364 -2165,19334,20181,39515 -2166,24338,25386,49724 -2167,3646,3912,7558 -2168,20615,21297,41912 -2170,46853,48188,95041 -2171,12099,12293,24392 -2172,1165,1096,2261 -2173,6768,6490,13258 -2174,219,205,424 -2175,1009,927,1936 -2176,22866,23197,46063 -2177,7440,7749,15189 -2178,2441,2382,4823 -2179,2755,2649,5404 -2190,12221,12488,24709 -2191,2928,3115,6043 -2192,6280,6294,12574 -2193,6928,7060,13988 -2194,10660,10559,21219 -2195,13206,12002,25208 -2196,14885,14711,29596 -2197,4073,4102,8175 -2198,4169,4501,8670 -2199,7953,8051,16004 -2200,20182,20430,40612 -2203,6224,6758,12982 -2204,12194,12420,24614 -2205,6512,6334,12846 -2206,8949,9368,18317 -2207,13429,14107,27536 -2208,5647,5869,11516 -2209,6983,7634,14617 -2210,13627,14385,28012 -2211,7892,8318,16210 -2212,6860,7437,14297 -2213,9968,10409,20377 -2214,1918,1926,3844 -2216,13119,12943,26062 -2217,11617,12008,23625 -2218,7529,7648,15177 -2219,5885,6551,12436 -2220,13783,14651,28434 -2221,7706,8077,15783 -2222,5615,6077,11692 -2223,9663,10142,19805 -2224,6430,6999,13429 -2225,2654,2774,5428 -2226,5843,6031,11874 -2227,6776,7272,14048 -2228,8523,9079,17602 -2229,13143,14159,27302 -2230,13337,13638,26975 -2231,1104,1109,2213 -2232,15253,16009,31262 -2233,14505,14799,29304 -2234,15284,15542,30826 -2250,31601,34031,65632 -2251,15256,16581,31837 -2256,7193,7784,14977 -2257,13257,14389,27646 -2258,2533,2575,5108 -2259,26364,27633,53997 -2260,10723,11064,21787 -2261,24314,26689,51003 -2262,9849,10302,20151 -2263,10721,11658,22379 -2264,6509,6611,13120 -2265,2601,2788,5389 -2267,1298,1372,2670 -2278,1355,1330,2685 -2280,12958,13640,26598 -2281,6595,6821,13416 -2282,6962,7499,14461 -2283,11316,11760,23076 -2284,5090,5376,10466 -2285,13504,14294,27798 -2286,1705,1743,3448 -2287,16243,17029,33272 -2289,9245,9607,18852 -2290,15716,16461,32177 -2291,6634,6762,13396 -2292,1258,1178,2436 -2293,1097,1029,2126 -2294,929,945,1874 -2295,2898,2924,5822 -2296,900,906,1806 -2297,818,797,1615 -2298,4472,4970,9442 -2299,5138,5553,10691 -2300,5139,4943,10082 -2302,319,275,594 -2303,4536,4468,9004 -2304,7395,7571,14966 -2305,5789,6152,11941 -2306,1456,1639,3095 -2307,1843,1862,3705 -2308,328,324,652 -2311,442,396,838 -2312,768,740,1508 -2314,147,20,167 -2315,6460,6917,13377 -2316,2780,2745,5525 -2317,2938,3234,6172 -2318,5641,5751,11392 -2319,3132,3184,6316 -2320,14383,14908,29291 -2321,5425,5499,10924 -2322,8340,8342,16682 -2323,12026,12708,24734 -2324,11141,11395,22536 -2325,13036,13187,26223 -2326,3530,3640,7170 -2327,3606,3752,7358 -2328,1306,1249,2555 -2329,1101,1042,2143 -2330,10515,9944,20459 -2333,6861,6378,13239 -2334,1276,1207,2483 -2335,2716,2713,5429 -2336,1212,1130,2342 -2337,3799,3937,7736 -2338,750,786,1536 -2339,344,324,668 -2340,22275,23424,45699 -2341,877,852,1729 -2342,292,264,556 -2343,2256,2271,4527 -2344,373,363,736 -2345,397,372,769 -2346,1389,1421,2810 -2347,923,956,1879 -2350,11749,12724,24473 -2351,387,470,857 -2352,1372,1439,2811 -2353,504,495,999 -2354,1756,1763,3519 -2355,390,375,765 -2357,2127,2235,4362 -2358,1984,2062,4046 -2359,306,297,603 -2360,7096,7400,14496 -2361,442,443,885 -2365,1716,1693,3409 -2369,592,582,1174 -2370,3719,3840,7559 -2371,377,366,743 -2372,2426,2545,4971 -2380,5001,5140,10141 -2381,930,814,1744 -2382,591,597,1188 -2386,173,127,300 -2388,1582,1509,3091 -2390,4095,4148,8243 -2395,410,366,776 -2396,610,553,1163 -2397,215,193,408 -2399,461,415,876 -2400,5160,5056,10216 -2401,167,155,322 -2402,963,950,1913 -2403,279,276,555 -2404,873,910,1783 -2405,311,240,551 -2406,364,374,738 -2408,238,185,423 -2409,581,560,1141 -2410,184,164,348 -2415,142,138,280 -2420,1996,2070,4066 -2421,784,736,1520 -2422,2588,2630,5218 -2423,1662,1568,3230 -2424,298,250,548 -2425,809,808,1617 -2426,251,268,519 -2427,1254,1221,2475 -2428,10918,11779,22697 -2429,4557,4692,9249 -2430,15703,16866,32569 -2431,2430,2524,4954 -2439,1208,1242,2450 -2440,10732,10640,21372 -2441,3233,3068,6301 -2443,4323,4525,8848 -2444,20198,22419,42617 -2445,2880,2996,5876 -2446,6118,6408,12526 -2447,3322,3492,6814 -2448,4145,4555,8700 -2449,1210,1112,2322 -2450,18607,19692,38299 -2452,7127,7883,15010 -2453,1337,1368,2705 -2454,3551,3800,7351 -2455,1489,1531,3020 -2456,6717,6862,13579 -2460,14095,14496,28591 -2462,1273,1236,2509 -2463,3497,3650,7147 -2464,3238,3443,6681 -2465,177,179,356 -2466,843,859,1702 -2469,2207,2039,4246 -2470,7130,7418,14548 -2471,1276,1301,2577 -2472,907,823,1730 -2473,1469,1500,2969 -2474,3183,3203,6386 -2475,223,224,447 -2476,511,506,1017 -2477,5393,5852,11245 -2478,12813,13956,26769 -2479,2254,2284,4538 -2480,21730,22665,44395 -2481,5326,5373,10699 -2482,2776,2972,5748 -2483,4907,5123,10030 -2484,8816,9233,18049 -2485,6288,7061,13349 -2486,14559,16034,30593 -2487,5441,5753,11194 -2488,1506,1593,3099 -2489,3091,3228,6319 -2490,355,335,690 -2500,18887,18195,37082 -2502,5857,5849,11706 -2505,2515,2400,4915 -2506,3629,3801,7430 -2508,4361,4291,8652 -2515,5095,5292,10387 -2516,2764,2907,5671 -2517,6230,6726,12956 -2518,9037,9575,18612 -2519,8027,8212,16239 -2525,5259,5371,10630 -2526,7742,8088,15830 -2527,10080,10534,20614 -2528,11486,11798,23284 -2529,10943,11364,22307 -2530,14510,15210,29720 -2533,7353,7584,14937 -2534,2402,2587,4989 -2535,3392,3606,6998 -2536,8506,8961,17467 -2537,5400,5509,10909 -2538,1067,1194,2261 -2539,8073,8453,16526 -2540,20919,20820,41739 -2541,11699,12443,24142 -2545,556,512,1068 -2546,4381,4411,8792 -2548,3267,3606,6873 -2549,1810,1820,3630 -2550,7760,7933,15693 -2551,1688,1764,3452 -2555,241,214,455 -2556,1237,1150,2387 -2557,2056,1946,4002 -2558,5499,5624,11123 -2559,1778,2025,3803 -2560,35268,36968,72236 -2563,124,117,241 -2564,6448,6927,13375 -2565,8267,8319,16586 -2566,11858,12187,24045 -2567,16730,17235,33965 -2568,417,460,877 -2569,667,606,1273 -2570,13828,14516,28344 -2571,5124,5017,10141 -2572,1926,2015,3941 -2573,2216,2289,4505 -2574,2708,2712,5420 -2575,6754,7277,14031 -2576,5975,6735,12710 -2577,7121,7529,14650 -2578,1137,1282,2419 -2579,1818,1780,3598 -2580,13708,13404,27112 -2581,1005,992,1997 -2582,5672,5840,11512 -2583,1973,2025,3998 -2584,237,228,465 -2585,184,155,339 -2586,1375,1350,2725 -2587,1379,1448,2827 -2588,140,165,305 -2590,3472,3638,7110 -2594,5566,5890,11456 -2618,682,707,1389 -2619,4658,4762,9420 -2620,18508,17925,36433 -2621,2683,2686,5369 -2622,1631,1627,3258 -2623,390,353,743 -2625,264,207,471 -2626,259,241,500 -2627,2370,2030,4400 -2628,944,862,1806 -2629,312,273,585 -2630,4152,4179,8331 -2631,376,343,719 -2632,821,841,1662 -2633,244,208,452 -2640,16243,17466,33709 -2641,6940,7375,14315 -2642,2564,2437,5001 -2643,1319,1232,2551 -2644,1315,1281,2596 -2645,155,145,300 -2646,3331,3458,6789 -2647,963,941,1904 -2648,1355,1148,2503 -2649,6,6,12 -2650,26082,27890,53972 -2651,1312,904,2216 -2652,2483,2368,4851 -2653,1246,1090,2336 -2655,516,538,1054 -2656,659,636,1295 -2658,719,723,1442 -2659,457,461,918 -2660,862,803,1665 -2661,223,117,340 -2663,2647,1931,4578 -2665,1185,1152,2337 -2666,2522,2537,5059 -2668,205,201,406 -2669,1040,960,2000 -2671,1903,1987,3890 -2672,742,735,1477 -2675,744,686,1430 -2678,201,362,563 -2680,11368,11320,22688 -2681,844,794,1638 -2700,2374,2497,4871 -2701,1161,1273,2434 -2702,305,309,614 -2703,450,498,948 -2705,4952,5062,10014 -2706,640,571,1211 -2707,697,614,1311 -2710,4889,4945,9834 -2711,1668,1627,3295 -2712,714,694,1408 -2713,1526,1555,3081 -2714,1169,1214,2383 -2715,837,790,1627 -2716,562,508,1070 -2717,683,701,1384 -2720,3928,3895,7823 -2721,175,175,350 -2722,1487,1489,2976 -2725,222,226,448 -2726,155,149,304 -2727,313,256,569 -2729,894,834,1728 -2730,726,695,1421 -2731,2758,2801,5559 -2732,926,932,1858 -2733,300,293,593 -2735,344,307,651 -2736,219,184,403 -2737,413,382,795 -2738,631,595,1226 -2739,766,734,1500 -2745,12897,13335,26232 -2747,16942,17307,34249 -2748,981,931,1912 -2749,7813,7960,15773 -2750,20538,22049,42587 -2752,2376,2300,4676 -2753,8484,8599,17083 -2754,2569,2714,5283 -2756,16128,16168,32296 -2757,458,419,877 -2758,4275,4253,8528 -2759,13222,13278,26500 -2760,13375,13656,27031 -2761,13764,13959,27723 -2762,1939,1874,3813 -2763,14858,14991,29849 -2765,7716,7125,14841 -2766,6884,7296,14180 -2767,9576,9928,19504 -2768,13499,12962,26461 -2769,1453,1479,2932 -2770,29712,30631,60343 -2773,2887,2970,5857 -2774,6243,6405,12648 -2775,798,745,1543 -2776,1945,2045,3990 -2777,8519,9264,17783 -2778,1198,1234,2432 -2779,2145,2389,4534 -2780,6181,6740,12921 -2782,2808,3126,5934 -2783,1387,1500,2887 -2784,594,621,1215 -2785,2195,2374,4569 -2786,507,488,995 -2787,2212,2022,4234 -2790,7560,7254,14814 -2791,348,347,695 -2792,247,249,496 -2793,593,541,1134 -2794,4950,5053,10003 -2795,20069,19809,39878 -2797,101,118,219 -2798,1220,1163,2383 -2799,1901,1941,3842 -2800,20250,21112,41362 -2803,158,145,303 -2804,1301,1325,2626 -2805,147,148,295 -2806,469,445,914 -2807,130,128,258 -2808,124,103,227 -2809,175,145,320 -2810,1498,1478,2976 -2820,4116,3761,7877 -2821,2434,2508,4942 -2823,733,674,1407 -2824,1152,1173,2325 -2825,1373,1317,2690 -2827,1711,1874,3585 -2828,291,291,582 -2829,1581,1597,3178 -2830,18163,19572,37735 -2831,1997,1891,3888 -2832,1456,1291,2747 -2833,408,360,768 -2834,1381,1111,2492 -2835,2196,2047,4243 -2836,458,469,927 -2839,717,698,1415 -2840,1458,1411,2869 -2842,222,229,451 -2843,652,626,1278 -2844,719,711,1430 -2845,989,913,1902 -2846,201,171,372 -2847,1138,1170,2308 -2848,866,860,1726 -2849,811,790,1601 -2850,8059,7886,15945 -2852,1712,1647,3359 -2864,573,575,1148 -2865,353,375,728 -2866,1358,1439,2797 -2867,333,280,613 -2868,244,275,519 -2869,749,727,1476 -2870,5984,6235,12219 -2871,4397,4494,8891 -2873,321,314,635 -2874,196,177,373 -2875,525,514,1039 -2876,173,134,307 -2877,2079,2043,4122 -2878,117,83,200 -2879,475,385,860 -2880,9404,9806,19210 -2898,175,185,360 -3000,10431,10196,20627 -3002,2244,2470,4714 -3003,2118,1626,3744 -3004,3878,3859,7737 -3005,359,333,692 -3006,5862,5440,11302 -3008,2680,2416,5096 -3010,712,805,1517 -3011,9473,8580,18053 -3012,11952,11175,23127 -3013,6690,7057,13747 -3015,7993,8164,16157 -3016,7269,7478,14747 -3018,5831,5948,11779 -3019,4056,4124,8180 -3020,20413,20139,40552 -3021,25738,26045,51783 -3022,1431,1392,2823 -3023,27887,27816,55703 -3024,8827,9169,17996 -3025,5668,5711,11379 -3026,75,16,91 -3027,1695,1528,3223 -3028,13835,13946,27781 -3029,34398,34028,68426 -3030,38552,39203,77755 -3031,8274,8971,17245 -3032,12495,12848,25343 -3033,6476,6783,13259 -3034,5353,5636,10989 -3036,2893,2950,5843 -3037,23262,23616,46878 -3038,14078,14080,28158 -3039,6520,7011,13531 -3040,11463,12405,23868 -3041,5603,5727,11330 -3042,6948,7424,14372 -3043,8536,8814,17350 -3044,11915,12505,24420 -3045,68,74,142 -3046,15340,15462,30802 -3047,9513,9488,19001 -3048,8907,9200,18107 -3049,4304,4481,8785 -3051,5924,5831,11755 -3052,2215,2458,4673 -3053,6491,7018,13509 -3054,3909,4387,8296 -3055,6457,6692,13149 -3056,11127,11637,22764 -3057,3958,4518,8476 -3058,15423,16127,31550 -3059,6040,5929,11969 -3060,6225,6371,12596 -3061,2835,2632,5467 -3062,3,0,3 -3063,351,328,679 -3064,26375,26799,53174 -3065,4652,4778,9430 -3066,3252,3215,6467 -3067,2481,2426,4907 -3068,8207,9060,17267 -3070,10879,12041,22920 -3071,8432,9003,17435 -3072,14830,15095,29925 -3073,23372,24265,47637 -3074,10193,10138,20331 -3075,9910,9964,19874 -3076,13041,13305,26346 -3078,5206,5343,10549 -3079,7158,7690,14848 -3081,6590,6855,13445 -3082,15053,15465,30518 -3083,13847,14224,28071 -3084,11774,12498,24272 -3085,6744,6993,13737 -3086,397,606,1003 -3087,4358,4626,8984 -3088,12852,13613,26465 -3089,5658,5846,11504 -3090,1037,1056,2093 -3091,778,732,1510 -3093,1826,1956,3782 -3094,4171,4588,8759 -3095,13526,14116,27642 -3096,963,983,1946 -3097,652,643,1295 -3099,2450,2428,4878 -3101,11415,12461,23876 -3102,2910,3107,6017 -3103,7137,8186,15323 -3104,9938,10379,20317 -3105,5325,5543,10868 -3106,7974,8510,16484 -3107,6344,6808,13152 -3108,8830,9530,18360 -3109,13017,14030,27047 -3111,5716,6078,11794 -3113,4240,4236,8476 -3114,1888,1830,3718 -3115,1945,1888,3833 -3116,4499,4626,9125 -3121,12788,13333,26121 -3122,10430,10747,21177 -3123,6349,6753,13102 -3124,9388,10641,20029 -3125,6065,7097,13162 -3126,3677,4180,7857 -3127,8619,9470,18089 -3128,8448,8922,17370 -3129,7703,8359,16062 -3130,14637,15772,30409 -3131,10039,10962,21001 -3132,7220,7591,14811 -3133,10366,10950,21316 -3134,15218,15882,31100 -3135,9296,9707,19003 -3136,19619,21345,40964 -3137,6328,6768,13096 -3138,10271,10418,20689 -3139,6758,6787,13545 -3140,7594,8055,15649 -3141,9286,9848,19134 -3142,6056,6815,12871 -3143,4114,4646,8760 -3144,4850,5456,10306 -3145,10346,10955,21301 -3146,11979,12969,24948 -3147,6726,6921,13647 -3148,3963,3858,7821 -3149,15583,16494,32077 -3150,28562,29743,58305 -3151,5009,5132,10141 -3152,15113,16124,31237 -3153,9732,9926,19658 -3154,2126,2103,4229 -3155,10099,10726,20825 -3156,17706,17949,35655 -3158,3484,3480,6964 -3159,1311,1262,2573 -3160,4512,4582,9094 -3161,7002,7553,14555 -3162,7958,8477,16435 -3163,14576,14977,29553 -3165,12717,13207,25924 -3166,10998,11343,22341 -3167,4558,4582,9140 -3168,8762,8130,16892 -3169,9743,9346,19089 -3170,8718,8929,17647 -3171,10143,9628,19771 -3172,11075,11294,22369 -3173,9863,10022,19885 -3174,18006,17762,35768 -3175,24440,23553,47993 -3177,5170,5085,10255 -3178,17200,17577,34777 -3179,2971,2921,5892 -3180,3486,3654,7140 -3181,8960,9303,18263 -3182,10694,9951,20645 -3183,8987,8967,17954 -3184,7033,7605,14638 -3185,5813,6407,12220 -3186,9973,11284,21257 -3187,7465,8349,15814 -3188,8139,8737,16876 -3189,2608,2675,5283 -3190,4858,5405,10263 -3191,4415,4894,9309 -3192,9794,10498,20292 -3193,9103,9670,18773 -3194,5551,6116,11667 -3195,16637,17465,34102 -3196,11328,12262,23590 -3197,5483,5704,11187 -3198,7996,8037,16033 -3199,25475,27151,52626 -3200,2742,2884,5626 -3201,9391,9731,19122 -3202,1416,1352,2768 -3204,13738,14447,28185 -3205,4552,4765,9317 -3206,4847,5170,10017 -3207,7033,7488,14521 -3211,736,657,1393 -3212,7282,6864,14146 -3214,11361,12079,23440 -3215,9639,10181,19820 -3216,25126,26878,52004 -3217,605,650,1255 -3218,6058,6554,12612 -3219,9532,10521,20053 -3220,7460,7827,15287 -3221,3992,3934,7926 -3222,5807,6259,12066 -3223,3163,3334,6497 -3224,4976,5135,10111 -3225,1831,2050,3881 -3226,6018,6537,12555 -3227,2153,2179,4332 -3228,7214,7434,14648 -3230,1189,1265,2454 -3231,713,707,1420 -3232,518,528,1046 -3233,859,877,1736 -3235,184,189,373 -3236,106,132,238 -3237,249,230,479 -3238,106,96,202 -3239,206,177,383 -3240,1049,1031,2080 -3241,1116,1118,2234 -3242,390,351,741 -3243,335,299,634 -3249,1522,1382,2904 -3250,5724,6054,11778 -3251,335,319,654 -3254,196,187,383 -3260,2192,2264,4456 -3264,1155,1193,2348 -3265,1428,1350,2778 -3266,1750,1676,3426 -3267,154,135,289 -3268,1272,1281,2553 -3269,501,469,970 -3270,70,72,142 -3272,838,831,1669 -3273,64,59,123 -3274,183,168,351 -3275,233,238,471 -3276,257,253,510 -3277,982,909,1891 -3278,234,220,454 -3280,14423,15544,29967 -3281,866,873,1739 -3282,1139,1173,2312 -3283,484,462,946 -3284,1425,1668,3093 -3285,635,624,1259 -3286,308,310,618 -3287,213,219,432 -3289,362,372,734 -3292,159,152,311 -3293,132,132,264 -3294,386,365,751 -3300,4856,5248,10104 -3301,841,806,1647 -3302,284,270,554 -3303,221,197,418 -3304,1214,1260,2474 -3305,6354,6297,12651 -3309,119,103,222 -3310,183,181,364 -3311,858,906,1764 -3312,482,465,947 -3314,398,380,778 -3315,818,837,1655 -3317,172,143,315 -3318,471,505,976 -3319,166,158,324 -3321,595,587,1182 -3324,293,266,559 -3325,274,239,513 -3328,737,743,1480 -3329,158,158,316 -3330,228,205,433 -3331,2077,2115,4192 -3332,489,461,950 -3333,371,367,738 -3334,253,237,490 -3335,940,821,1761 -3337,15704,16169,31873 -3338,7787,8016,15803 -3340,8851,9144,17995 -3341,787,735,1522 -3342,1530,1595,3125 -3345,610,609,1219 -3350,26016,28325,54341 -3351,3997,3723,7720 -3352,7491,7137,14628 -3355,6161,6859,13020 -3356,6790,7542,14332 -3357,1595,1650,3245 -3360,425,368,793 -3361,453,474,927 -3363,1606,1697,3303 -3364,1023,1011,2034 -3370,812,844,1656 -3371,624,573,1197 -3373,879,932,1811 -3374,304,266,570 -3375,117,131,248 -3377,4437,4246,8683 -3378,157,169,326 -3379,299,286,585 -3380,2983,3167,6150 -3381,500,478,978 -3384,412,418,830 -3385,319,271,590 -3387,184,149,333 -3388,282,267,549 -3390,504,487,991 -3391,146,115,261 -3392,329,338,667 -3393,1344,1401,2745 -3395,325,316,641 -3396,265,291,556 -3400,6849,7436,14285 -3401,2329,2197,4526 -3407,173,155,328 -3409,537,541,1078 -3412,102,115,217 -3413,135,118,253 -3414,806,856,1662 -3418,1401,1398,2799 -3419,525,536,1061 -3420,169,134,303 -3423,324,308,632 -3424,367,367,734 -3427,1205,1070,2275 -3428,333,318,651 -3429,16881,17694,34575 -3430,225,208,433 -3431,1831,1922,3753 -3433,175,146,321 -3434,2182,2230,4412 -3435,1370,1336,2706 -3437,4255,4443,8698 -3438,1149,1231,2380 -3440,962,902,1864 -3441,685,636,1321 -3442,3495,3694,7189 -3444,4136,4358,8494 -3446,325,287,612 -3447,231,232,463 -3448,340,330,670 -3450,3112,3639,6751 -3451,2573,2232,4805 -3453,789,760,1549 -3458,857,857,1714 -3460,1138,1427,2565 -3461,1977,1977,3954 -3462,515,474,989 -3463,1393,1461,2854 -3464,582,561,1143 -3465,4207,4442,8649 -3467,648,616,1264 -3468,123,113,236 -3469,218,201,419 -3472,740,665,1405 -3475,158,142,300 -3477,216,180,396 -3478,1516,1513,3029 -3480,840,854,1694 -3482,244,211,455 -3483,328,334,662 -3485,94,97,191 -3490,554,531,1085 -3491,215,216,431 -3494,347,290,637 -3496,2969,2882,5851 -3498,2540,2475,5015 -3500,14604,16044,30648 -3501,1013,918,1931 -3505,2320,2322,4642 -3507,224,192,416 -3509,107,95,202 -3512,290,259,549 -3515,453,446,899 -3516,402,356,758 -3517,765,745,1510 -3518,637,660,1297 -3520,138,109,247 -3521,374,362,736 -3522,198,207,405 -3523,1783,1718,3501 -3525,649,639,1288 -3527,387,402,789 -3530,189,149,338 -3531,177,144,321 -3533,421,426,847 -3537,592,581,1173 -3540,181,180,361 -3542,112,112,224 -3544,180,153,333 -3546,255,224,479 -3549,1945,1808,3753 -3550,19066,21080,40146 -3551,12157,11975,24132 -3555,8756,9653,18409 -3556,5444,5738,11182 -3557,305,304,609 -3558,478,494,972 -3559,317,245,562 -3561,2342,2410,4752 -3562,144,139,283 -3563,395,384,779 -3564,7351,7849,15200 -3566,263,259,522 -3567,322,297,619 -3568,1386,1426,2812 -3570,288,306,594 -3571,167,157,324 -3572,111,95,206 -3573,268,246,514 -3575,449,434,883 -3579,2575,2690,5265 -3580,387,382,769 -3581,171,140,311 -3584,700,620,1320 -3585,5246,5499,10745 -3586,388,363,751 -3588,161,149,310 -3589,201,170,371 -3590,186,187,373 -3591,142,130,272 -3594,251,232,483 -3595,352,332,684 -3596,79,66,145 -3597,306,278,584 -3608,1149,1150,2299 -3610,925,750,1675 -3612,867,815,1682 -3614,381,371,752 -3616,2531,2534,5065 -3617,150,140,290 -3618,339,333,672 -3620,3930,4097,8027 -3621,1130,1063,2193 -3622,180,148,328 -3623,474,441,915 -3624,309,283,592 -3629,4476,4678,9154 -3630,14361,15192,29553 -3631,5121,5042,10163 -3633,331,297,628 -3634,903,857,1760 -3635,326,305,631 -3636,2651,2764,5415 -3637,341,330,671 -3638,1043,994,2037 -3639,257,251,508 -3640,596,541,1137 -3641,563,515,1078 -3644,4374,4407,8781 -3646,391,383,774 -3649,223,210,433 -3658,2932,2901,5833 -3659,408,381,789 -3660,3650,3768,7418 -3662,691,464,1155 -3663,97,113,210 -3664,531,517,1048 -3666,2440,2429,4869 -3669,542,542,1084 -3670,338,327,665 -3672,4951,5380,10331 -3673,751,759,1510 -3675,728,739,1467 -3677,8066,9104,17170 -3678,3211,3051,6262 -3682,366,288,654 -3683,835,805,1640 -3685,1203,1276,2479 -3687,450,441,891 -3688,628,619,1247 -3690,14827,15722,30549 -3691,4340,4056,8396 -3694,373,209,582 -3695,222,223,445 -3697,282,306,588 -3698,418,420,838 -3699,516,524,1040 -3700,578,592,1170 -3701,567,504,1071 -3705,211,202,413 -3707,840,858,1698 -3709,154,148,302 -3711,137,120,257 -3712,197,164,361 -3713,505,477,982 -3714,1556,1693,3249 -3715,168,134,302 -3717,1339,1317,2656 -3719,275,273,548 -3720,281,240,521 -3722,2097,2263,4360 -3723,1546,1422,2968 -3725,170,177,347 -3726,456,397,853 -3727,203,160,363 -3728,278,282,560 -3730,3870,4134,8004 -3732,217,212,429 -3733,204,217,421 -3735,263,256,519 -3737,2137,2113,4250 -3739,196,180,376 -3740,468,485,953 -3741,1519,1552,3071 -3744,155,141,296 -3746,120,111,231 -3747,2064,2154,4218 -3749,879,975,1854 -3750,267,242,509 -3751,185,152,337 -3752,10224,10650,20874 -3753,459,413,872 -3754,8809,8977,17786 -3755,151,148,299 -3756,4598,4657,9255 -3757,4011,3975,7986 -3758,1109,1031,2140 -3759,584,574,1158 -3760,200,191,391 -3761,592,546,1138 -3763,696,651,1347 -3764,3725,3810,7535 -3765,3269,3464,6733 -3766,625,583,1208 -3767,614,623,1237 -3770,1633,1556,3189 -3775,1749,1741,3490 -3777,5035,5298,10333 -3778,249,225,474 -3779,115,108,223 -3781,2227,2173,4400 -3782,3897,3874,7771 -3783,1117,1032,2149 -3785,0,0,0 -3786,785,750,1535 -3787,579,566,1145 -3788,827,836,1663 -3789,137,131,268 -3791,788,769,1557 -3792,535,503,1038 -3793,1692,1764,3456 -3795,608,612,1220 -3796,4687,4687,9374 -3797,1550,1652,3202 -3799,2990,3025,6015 -3800,412,402,814 -3802,12322,12252,24574 -3803,5005,5157,10162 -3804,3376,3328,6704 -3805,27236,27244,54480 -3806,22160,23391,45551 -3807,3404,3386,6790 -3808,1487,1490,2977 -3809,896,865,1761 -3810,17162,18144,35306 -3812,1131,1138,2269 -3813,574,531,1105 -3814,951,967,1918 -3815,1450,1462,2912 -3816,1000,972,1972 -3818,5950,6139,12089 -3820,6661,7413,14074 -3821,1278,1270,2548 -3822,525,515,1040 -3823,883,901,1784 -3824,2282,2353,4635 -3825,9935,10390,20325 -3831,724,727,1451 -3832,214,201,415 -3833,165,152,317 -3835,269,236,505 -3840,8196,8421,16617 -3842,2446,2497,4943 -3844,13363,14231,27594 -3847,1057,1110,2167 -3850,6773,7486,14259 -3851,2955,1996,4951 -3852,75,44,119 -3854,760,747,1507 -3856,462,453,915 -3857,184,193,377 -3858,1436,1450,2886 -3859,466,445,911 -3860,3404,3566,6970 -3862,1557,1573,3130 -3864,194,199,393 -3865,206,183,389 -3869,735,746,1481 -3870,748,777,1525 -3871,1438,1425,2863 -3873,231,212,443 -3874,260,228,488 -3875,8021,8631,16652 -3878,354,385,739 -3880,1873,1924,3797 -3882,497,458,955 -3885,916,870,1786 -3886,226,216,442 -3887,178,163,341 -3888,1861,1887,3748 -3889,163,124,287 -3890,89,80,169 -3891,87,85,172 -3892,505,527,1032 -3895,96,79,175 -3896,217,203,420 -3898,325,303,628 -3900,143,106,249 -3902,167,183,350 -3903,327,298,625 -3904,615,607,1222 -3909,3803,3942,7745 -3910,10426,10945,21371 -3911,1620,1651,3271 -3912,7143,7461,14604 -3913,1644,1662,3306 -3915,4364,4665,9029 -3916,294,292,586 -3918,1702,1676,3378 -3919,1444,1395,2839 -3920,779,306,1085 -3921,57,59,116 -3922,3309,3490,6799 -3923,337,337,674 -3925,1470,1545,3015 -3926,1601,1697,3298 -3927,711,716,1427 -3928,231,238,469 -3929,443,417,860 -3930,8351,8897,17248 -3931,10434,11988,22422 -3933,529,499,1028 -3934,8226,8861,17087 -3936,4406,4608,9014 -3937,928,975,1903 -3938,1239,1304,2543 -3939,6422,7195,13617 -3940,2064,2515,4579 -3941,5838,5867,11705 -3942,1072,1089,2161 -3943,699,749,1448 -3944,220,226,446 -3945,504,463,967 -3950,2250,2371,4621 -3951,489,444,933 -3953,3500,3781,7281 -3954,184,201,385 -3956,1108,1109,2217 -3957,216,230,446 -3958,263,232,495 -3959,500,488,988 -3960,1114,1173,2287 -3962,576,572,1148 -3965,93,86,179 -3966,351,323,674 -3971,2023,1979,4002 -3975,5813,5853,11666 -3976,11893,11874,23767 -3977,33461,33963,67424 -3978,649,569,1218 -3979,336,330,666 -3980,1588,1472,3060 -3981,2125,2137,4262 -3984,2386,2372,4758 -3987,640,692,1332 -3988,464,431,895 -3991,205,209,414 -3992,307,299,606 -3995,4458,4677,9135 -3996,2394,2565,4959 -4000,7775,6557,14332 -4005,5672,5658,11330 -4006,7922,6802,14724 -4007,5097,5355,10452 -4008,199,151,350 -4009,0,0,0 -4010,1025,961,1986 -4011,6916,7507,14423 -4012,9697,10121,19818 -4013,2162,2142,4304 -4014,5334,5443,10777 -4017,17487,18322,35809 -4018,4122,4783,8905 -4019,9277,9730,19007 -4020,9814,10560,20374 -4021,4724,5205,9929 -4022,3157,3526,6683 -4025,171,127,298 -4030,7581,7546,15127 -4031,6159,6451,12610 -4032,6796,7491,14287 -4034,20371,21460,41831 -4035,11468,11833,23301 -4036,3400,3546,6946 -4037,3962,4030,7992 -4051,12911,12938,25849 -4053,20207,21578,41785 -4054,6248,6716,12964 -4055,9740,9811,19551 -4059,5647,5916,11563 -4060,6443,6474,12917 -4061,7821,8128,15949 -4064,4812,5163,9975 -4065,4368,4888,9256 -4066,7990,8157,16147 -4067,4547,4596,9143 -4068,10814,11086,21900 -4069,16127,16945,33072 -4070,5186,5361,10547 -4072,971,1079,2050 -4073,4426,4904,9330 -4074,11504,11768,23272 -4075,10217,10984,21201 -4076,4378,2416,6794 -4077,12289,12868,25157 -4078,11054,11919,22973 -4101,9798,9507,19305 -4102,3311,2951,6262 -4103,6584,6634,13218 -4104,2707,2833,5540 -4105,6390,6442,12832 -4106,687,569,1256 -4107,3069,3027,6096 -4108,2433,2284,4717 -4109,17460,17908,35368 -4110,4789,4785,9574 -4111,720,677,1397 -4112,3780,3997,7777 -4113,13646,13801,27447 -4114,16579,16622,33201 -4115,8766,9037,17803 -4116,11412,11894,23306 -4117,577,633,1210 -4118,14482,14581,29063 -4119,2669,2659,5328 -4120,4215,4350,8565 -4121,11588,12194,23782 -4122,20326,21605,41931 -4123,7849,8242,16091 -4124,9138,9244,18382 -4125,3492,3421,6913 -4127,10757,10989,21746 -4128,7883,7995,15878 -4129,3047,3077,6124 -4130,4045,3986,8031 -4131,4537,4777,9314 -4132,11174,11315,22489 -4133,7165,7540,14705 -4151,7357,7588,14945 -4152,20464,22039,42503 -4153,2225,2369,4594 -4154,4559,4674,9233 -4155,531,547,1078 -4156,1475,1507,2982 -4157,9271,9405,18676 -4158,1770,1778,3548 -4159,6785,7011,13796 -4160,8469,8962,17431 -4161,8250,8478,16728 -4163,6847,7567,14414 -4164,6280,6527,12807 -4165,16199,17045,33244 -4169,6693,5909,12602 -4170,10856,11079,21935 -4171,7164,7378,14542 -4172,1972,1985,3957 -4173,4225,4314,8539 -4174,1285,1308,2593 -4178,11682,12295,23977 -4179,8812,9338,18150 -4183,1040,986,2026 -4184,3143,3198,6341 -4205,2143,2446,4589 -4207,23645,23829,47474 -4208,7862,7892,15754 -4209,16859,17295,34154 -4210,8053,8223,16276 -4211,27559,28776,56335 -4212,11979,12493,24472 -4213,13605,14106,27711 -4214,17436,18371,35807 -4215,21628,23087,44715 -4216,16132,17604,33736 -4217,17940,17387,35327 -4218,14612,15050,29662 -4219,238,301,539 -4220,13864,15020,28884 -4221,12451,13151,25602 -4223,6840,7233,14073 -4224,2574,2704,5278 -4225,3457,3399,6856 -4226,13908,15342,29250 -4227,8792,9595,18387 -4228,2562,2546,5108 -4229,765,926,1691 -4230,725,857,1582 -4270,1750,1713,3463 -4271,1288,1395,2683 -4272,2065,2282,4347 -4275,1511,1471,2982 -4280,7523,7354,14877 -4285,9158,9304,18462 -4287,358,298,656 -4300,22499,22634,45133 -4301,11508,11694,23202 -4303,2081,2069,4150 -4304,7643,7904,15547 -4305,28160,29442,57602 -4306,16299,15111,31410 -4307,580,560,1140 -4309,1178,1182,2360 -4310,2990,3020,6010 -4311,4666,4611,9277 -4312,1508,1504,3012 -4313,874,888,1762 -4340,2905,2951,5856 -4341,6516,6572,13088 -4342,1021,1003,2024 -4343,5201,5302,10503 -4344,1195,1194,2389 -4345,78,227,305 -4346,294,274,568 -4347,561,543,1104 -4350,49028,53216,102244 -4352,12409,12383,24792 -4353,181,168,349 -4354,513,520,1033 -4355,1345,1420,2765 -4356,2460,2442,4902 -4357,1248,1216,2464 -4358,971,994,1965 -4359,573,561,1134 -4360,233,251,484 -4361,1103,1149,2252 -4362,1367,1340,2707 -4363,268,255,523 -4364,155,150,305 -4365,234,182,416 -4370,8306,8932,17238 -4371,353,376,729 -4372,112,87,199 -4373,580,600,1180 -4374,184,162,346 -4375,82,74,156 -4376,179,154,333 -4377,242,242,484 -4378,240,228,468 -4380,3733,3970,7703 -4381,226,223,449 -4382,246,221,467 -4383,369,355,724 -4385,594,566,1160 -4387,700,657,1357 -4388,244,249,493 -4390,3357,3457,6814 -4400,911,910,1821 -4401,2801,2649,5450 -4402,138,144,282 -4403,411,379,790 -4404,192,170,362 -4405,7099,6830,13929 -4406,812,678,1490 -4407,361,317,678 -4408,421,410,831 -4410,611,635,1246 -4411,170,149,319 -4412,230,174,404 -4413,3472,3213,6685 -4415,893,961,1854 -4416,245,182,427 -4417,383,352,735 -4419,564,488,1052 -4420,540,554,1094 -4421,1152,1060,2212 -4422,354,312,666 -4424,115,102,217 -4425,138,112,250 -4427,112,100,212 -4428,455,407,862 -4454,536,447,983 -4455,4342,4174,8516 -4462,69,70,139 -4465,821,803,1624 -4468,169,134,303 -4470,1842,1887,3729 -4472,775,813,1588 -4477,294,293,587 -4478,315,296,611 -4480,529,447,976 -4481,190,161,351 -4486,397,314,711 -4487,1653,1639,3292 -4488,186,149,335 -4490,948,909,1857 -4492,240,164,404 -4494,103,86,189 -4496,193,167,360 -4497,198,185,383 -4498,109,109,218 -4500,18695,18934,37629 -4501,2631,2725,5356 -4502,4222,4277,8499 -4503,16809,17496,34305 -4504,8028,8196,16224 -4505,9211,9515,18726 -4506,9683,10019,19702 -4507,8176,8869,17045 -4508,9619,10054,19673 -4509,9386,9995,19381 -4510,20610,21596,42206 -4511,3902,4126,8028 -4512,1544,1468,3012 -4514,3194,2637,5831 -4515,1774,1764,3538 -4516,1873,1849,3722 -4517,308,292,600 -4518,2393,2398,4791 -4519,3661,3892,7553 -4520,6140,6100,12240 -4521,2218,2250,4468 -4550,2057,2121,4178 -4551,23450,25443,48893 -4552,3721,4053,7774 -4553,2645,2663,5308 -4554,916,897,1813 -4555,3306,3373,6679 -4556,18183,20541,38724 -4557,7046,7300,14346 -4558,7960,8741,16701 -4559,2975,2970,5945 -4560,13489,14553,28042 -4561,3364,3220,6584 -4562,3625,3568,7193 -4563,3845,4078,7923 -4564,4840,5026,9866 -4565,6741,7224,13965 -4566,3342,3775,7117 -4567,5016,5326,10342 -4568,1670,1679,3349 -4569,709,749,1458 -4570,19355,19739,39094 -4571,357,338,695 -4572,1846,1871,3717 -4573,10452,10950,21402 -4574,636,577,1213 -4575,10289,10856,21145 -4580,2303,2210,4513 -4581,689,612,1301 -4600,490,468,958 -4601,519,544,1063 -4605,2285,2410,4695 -4606,1046,1081,2127 -4608,449,427,876 -4610,7177,7309,14486 -4611,125,116,241 -4612,233,182,415 -4613,269,225,494 -4614,619,611,1230 -4615,3420,3439,6859 -4620,319,256,575 -4621,683,665,1348 -4625,1519,1532,3051 -4626,1052,979,2031 -4627,321,309,630 -4630,1300,1315,2615 -4650,16447,16403,32850 -4655,26553,28745,55298 -4659,2086,2049,4135 -4660,3436,3319,6755 -4662,435,436,871 -4670,37713,39446,77159 -4671,3068,2815,5883 -4673,266,218,484 -4674,759,619,1378 -4676,121,110,231 -4677,1583,1463,3046 -4678,491,397,888 -4680,26335,24496,50831 -4694,125,115,240 -4695,679,604,1283 -4699,294,249,543 -4700,8876,9238,18114 -4701,20850,21514,42364 -4702,13382,11983,25365 -4703,10445,10196,20641 -4705,242,185,427 -4707,230,166,396 -4709,842,644,1486 -4710,1938,1968,3906 -4711,936,863,1799 -4712,137,123,260 -4713,445,491,936 -4714,1533,1482,3015 -4715,3666,3504,7170 -4716,512,476,988 -4717,2774,2326,5100 -4718,1397,1185,2582 -4719,462,432,894 -4720,7243,6641,13884 -4721,1950,1795,3745 -4722,873,768,1641 -4723,927,742,1669 -4724,292,279,571 -4725,821,834,1655 -4726,329,297,626 -4727,182,167,349 -4728,183,186,369 -4730,1746,1878,3624 -4731,117,98,215 -4733,217,164,381 -4735,494,460,954 -4737,3993,3659,7652 -4738,610,492,1102 -4739,221,177,398 -4740,40752,38792,79544 -4741,4631,3745,8376 -4742,892,602,1494 -4743,706,602,1308 -4744,4975,3990,8965 -4745,1668,1335,3003 -4746,1058,856,1914 -4750,2754,2589,5343 -4751,2241,2093,4334 -4753,1594,1425,3019 -4754,1019,959,1978 -4756,277,258,535 -4757,217,209,426 -4798,305,262,567 -4799,431,411,842 -4800,4482,4201,8683 -4801,171,136,307 -4802,4405,3935,8340 -4803,655,554,1209 -4804,1301,1110,2411 -4805,5539,4943,10482 -4806,2046,1978,4024 -4807,5494,5601,11095 -4808,653,615,1268 -4809,491,413,904 -4810,11076,10447,21523 -4811,6002,5752,11754 -4812,9600,9876,19476 -4813,455,37,492 -4814,21793,22596,44389 -4815,10025,10498,20523 -4816,4546,4045,8591 -4817,14495,15246,29741 -4818,10417,9890,20307 -4819,1120,1079,2199 -4820,5339,5454,10793 -4821,791,708,1499 -4822,435,392,827 -4823,628,422,1050 -4824,1533,1264,2797 -4825,11960,10302,22262 -4828,89,98,187 -4829,419,341,760 -4830,753,704,1457 -4849,787,694,1481 -4850,5864,5657,11521 -4852,1671,1537,3208 -4854,2895,2558,5453 -4855,458,376,834 -4856,284,255,539 -4857,93,80,173 -4858,635,625,1260 -4859,209,202,411 -4860,5641,5546,11187 -4861,526,543,1069 -4865,3851,3805,7656 -4868,10582,10871,21453 -4869,8613,9018,17631 -4870,32925,33383,66308 -4871,8328,7777,16105 -4872,1881,1766,3647 -4873,3080,2929,6009 -4874,2832,2124,4956 -4875,3793,3697,7490 -4876,1122,1192,2314 -4877,2451,2321,4772 -4878,5801,5834,11635 -4879,8406,8731,17137 -4880,6337,5799,12136 -4881,2139,2198,4337 -4882,1204,1222,2426 -4883,3802,4275,8077 -4884,852,832,1684 -4885,1840,1868,3708 -4886,441,402,843 -4887,1110,1129,2239 -4888,1482,1359,2841 -4890,747,721,1468 -4891,330,256,586 -4895,2118,1894,4012 -5000,6704,5933,12637 -5005,208,121,329 -5006,3240,3439,6679 -5007,3038,3078,6116 -5008,6692,6723,13415 -5009,2496,2446,4942 -5010,2767,2977,5744 -5011,4818,4911,9729 -5012,4830,4879,9709 -5013,4982,4902,9884 -5014,5675,5891,11566 -5015,2899,2894,5793 -5016,4059,4307,8366 -5017,2385,2580,4965 -5018,2893,2929,5822 -5019,4386,4752,9138 -5020,1424,1549,2973 -5021,2803,2927,5730 -5022,7211,7446,14657 -5023,7651,8283,15934 -5024,6367,6583,12950 -5025,3871,4074,7945 -5031,4744,4858,9602 -5032,5953,6259,12212 -5033,3885,3966,7851 -5034,4592,5076,9668 -5035,2888,2974,5862 -5037,4862,5292,10154 -5038,6948,7471,14419 -5039,4053,4248,8301 -5040,1119,1206,2325 -5041,6263,6710,12973 -5042,4980,5416,10396 -5043,8341,9243,17584 -5044,4898,5518,10416 -5045,7484,7967,15451 -5046,3770,4238,8008 -5047,3527,3971,7498 -5048,6311,7177,13488 -5049,4621,4853,9474 -5050,2617,2809,5426 -5051,6539,6747,13286 -5052,3107,3262,6369 -5061,4565,5087,9652 -5062,7146,7742,14888 -5063,5570,6236,11806 -5064,4384,5194,9578 -5065,4405,5184,9589 -5066,5442,5852,11294 -5067,4844,5111,9955 -5068,5452,6352,11804 -5069,4096,4180,8276 -5070,6705,7487,14192 -5072,5686,6284,11970 -5073,7064,7531,14595 -5074,5868,6369,12237 -5075,4970,5297,10267 -5076,4623,4635,9258 -5081,4192,4455,8647 -5082,7265,7242,14507 -5083,3504,3757,7261 -5084,4906,4569,9475 -5085,8120,7665,15785 -5086,7390,7767,15157 -5087,5156,5279,10435 -5088,1564,1613,3177 -5089,3379,3269,6648 -5090,3529,4111,7640 -5091,3668,3675,7343 -5092,7837,8039,15876 -5093,4409,4504,8913 -5094,398,393,791 -5095,9029,8898,17927 -5096,7218,7239,14457 -5097,6580,6738,13318 -5098,5982,6143,12125 -5106,74,3,77 -5107,7506,7818,15324 -5108,18922,19036,37958 -5109,10046,10291,20337 -5110,4049,4073,8122 -5111,186,7,193 -5112,9283,9454,18737 -5113,9283,9403,18686 -5114,14373,14723,29096 -5115,3400,3509,6909 -5116,3661,4046,7707 -5117,1234,1129,2363 -5118,8404,8884,17288 -5120,901,847,1748 -5121,642,653,1295 -5125,8940,9564,18504 -5126,3626,3591,7217 -5127,3873,4128,8001 -5131,441,444,885 -5132,168,175,343 -5133,268,267,535 -5134,229,216,445 -5136,275,261,536 -5137,242,224,466 -5138,201,173,374 -5139,90,84,174 -5140,230,231,461 -5141,347,351,698 -5142,258,289,547 -5144,220,214,434 -5151,183,185,368 -5152,2995,3026,6021 -5153,3245,3205,6450 -5154,1586,1614,3200 -5155,1870,1899,3769 -5156,529,476,1005 -5157,1347,1373,2720 -5158,11919,12110,24029 -5159,16356,16792,33148 -5160,17,11,28 -5161,4817,4964,9781 -5162,16378,17079,33457 -5163,6945,7210,14155 -5164,2469,2664,5133 -5165,2639,2628,5267 -5166,995,939,1934 -5167,2579,2675,5254 -5168,2348,2392,4740 -5169,6731,7194,13925 -5170,577,554,1131 -5171,2829,2898,5727 -5172,1959,1955,3914 -5173,5794,6022,11816 -5174,1271,1289,2560 -5201,866,886,1752 -5202,296,299,595 -5203,493,525,1018 -5204,1152,1188,2340 -5210,885,846,1731 -5211,6872,7577,14449 -5212,976,991,1967 -5213,530,544,1074 -5214,3722,4074,7796 -5220,78,64,142 -5221,107,109,216 -5222,301,294,595 -5223,1773,1690,3463 -5231,599,573,1172 -5232,243,230,473 -5233,673,721,1394 -5234,657,644,1301 -5235,935,993,1928 -5236,317,282,599 -5237,44,30,74 -5238,1880,1818,3698 -5240,277,253,530 -5241,1128,1217,2345 -5242,513,562,1075 -5243,457,466,923 -5244,2201,2103,4304 -5245,1665,1756,3421 -5250,1505,1598,3103 -5251,6024,6662,12686 -5252,2881,2906,5787 -5253,8960,8924,17884 -5254,1188,1076,2264 -5255,4115,4406,8521 -5256,559,566,1125 -5259,369,339,708 -5260,914,888,1802 -5261,205,187,392 -5262,284,249,533 -5263,182,152,334 -5264,743,758,1501 -5265,436,379,815 -5266,151,125,276 -5267,1134,1015,2149 -5268,1513,1494,3007 -5269,144,133,277 -5270,515,496,1011 -5271,3440,3285,6725 -5272,510,469,979 -5275,1165,1114,2279 -5276,726,671,1397 -5277,1301,1274,2575 -5278,279,240,519 -5279,189,188,377 -5280,3721,3738,7459 -5290,12037,12869,24906 -5291,4510,4050,8560 -5301,258,223,481 -5302,410,437,847 -5303,239,173,412 -5304,280,278,558 -5307,293,283,576 -5308,126,103,229 -5309,83,78,161 -5311,310,277,587 -5320,332,279,611 -5321,312,130,442 -5322,512,450,962 -5330,1513,1538,3051 -5331,335,310,645 -5332,64,55,119 -5333,2766,2849,5615 -5340,687,647,1334 -5341,3693,3798,7491 -5342,610,546,1156 -5343,2512,2589,5101 -5344,488,443,931 -5345,1672,1769,3441 -5346,224,197,421 -5350,230,209,439 -5351,2844,2758,5602 -5352,2441,2528,4969 -5353,1951,1920,3871 -5354,246,207,453 -5355,3463,3581,7044 -5356,336,300,636 -5357,326,295,621 -5360,569,529,1098 -5371,742,651,1393 -5372,981,946,1927 -5373,1590,1562,3152 -5374,730,751,1481 -5381,174,162,336 -5400,451,437,888 -5401,450,427,877 -5410,116,109,225 -5411,163,148,311 -5412,560,653,1213 -5413,380,355,735 -5414,131,122,253 -5415,192,178,370 -5416,76,80,156 -5417,878,873,1751 -5419,119,116,235 -5421,123,106,229 -5422,979,955,1934 -5431,432,409,841 -5433,737,715,1452 -5434,124,122,246 -5440,287,205,492 -5451,305,293,598 -5452,242,209,451 -5453,2213,2303,4516 -5454,196,186,382 -5460,321,313,634 -5461,1257,1301,2558 -5462,191,186,377 -5464,220,195,415 -5470,121,106,227 -5472,132,131,263 -5473,420,375,795 -5480,411,382,793 -5481,268,254,522 -5482,282,302,584 -5483,204,203,407 -5485,407,408,815 -5490,91,88,179 -5491,848,868,1716 -5495,281,243,524 -5501,3440,3253,6693 -5502,819,835,1654 -5510,196,166,362 -5520,316,302,618 -5521,212,167,379 -5522,770,780,1550 -5523,813,880,1693 -5540,7475,7738,15213 -5550,477,388,865 -5552,49,37,86 -5554,2570,2640,5210 -5555,287,233,520 -5556,1831,1843,3674 -5558,1928,2082,4010 -5560,216,200,416 -5570,448,385,833 -5571,802,778,1580 -5572,205,185,390 -5573,995,1062,2057 -5575,1543,1426,2969 -5576,444,402,846 -5577,100,98,198 -5580,219,218,437 -5581,247,243,490 -5582,271,272,543 -5583,357,329,686 -5600,3644,3404,7048 -5601,86,80,166 -5602,546,523,1069 -5603,125,102,227 -5604,65,71,136 -5605,893,934,1827 -5606,6875,7214,14089 -5607,2472,2122,4594 -5608,6944,6910,13854 -5609,698,692,1390 -5630,112,108,220 -5631,532,512,1044 -5633,223,209,432 -5640,482,490,972 -5641,590,555,1145 -5642,299,238,537 -5650,162,139,301 -5652,270,287,557 -5654,185,171,356 -5670,156,135,291 -5680,1189,1092,2281 -5690,2049,1977,4026 -5700,5999,5769,11768 -5710,1622,1332,2954 -5720,119,97,216 -5722,327,265,592 -5723,953,742,1695 -5724,336,335,671 -5725,2780,1938,4718 -5731,746,392,1138 -5732,89,76,165 -5734,81,85,166 -5950,0,0,0 -5960,7,3,10 -6000,5227,4010,9237 -6003,1613,1340,2953 -6004,4474,3710,8184 -6005,2777,2391,5168 -6006,4219,4325,8544 -6007,3292,3455,6747 -6008,6761,7097,13858 -6009,8075,8496,16571 -6010,7489,7992,15481 -6011,4297,4628,8925 -6012,3943,4655,8598 -6014,9327,9657,18984 -6015,3122,3232,6354 -6016,4770,4793,9563 -6017,2099,1949,4048 -6018,16466,17915,34381 -6019,10301,9853,20154 -6020,10001,10281,20282 -6021,9405,9746,19151 -6022,2491,2492,4983 -6023,7448,7577,15025 -6024,6649,6778,13427 -6025,14858,14939,29797 -6026,10897,11528,22425 -6027,20871,21224,42095 -6028,9988,10125,20113 -6029,1302,1362,2664 -6030,18508,19081,37589 -6031,5526,5806,11332 -6032,112,100,212 -6033,403,334,737 -6035,2104,2143,4247 -6036,5302,5532,10834 -6037,1122,1120,2242 -6041,710,658,1368 -6042,43,37,80 -6043,104,103,207 -6044,815,661,1476 -6050,7186,7730,14916 -6051,6489,5864,12353 -6052,5082,5361,10443 -6053,6658,6867,13525 -6054,9896,9869,19765 -6055,6026,6028,12054 -6056,18449,18624,37073 -6057,8121,7994,16115 -6058,5838,5973,11811 -6059,10849,11672,22521 -6060,10589,11296,21885 -6061,16821,16874,33695 -6062,15490,15627,31117 -6063,7099,6898,13997 -6064,15155,15284,30439 -6065,25769,26307,52076 -6066,9380,9572,18952 -6067,64,68,132 -6068,3,0,3 -6069,12448,12926,25374 -6070,1742,1782,3524 -6071,1739,1781,3520 -6072,416,415,831 -6073,1459,1557,3016 -6074,467,476,943 -6076,10534,10970,21504 -6077,773,755,1528 -6078,457,406,863 -6079,4,0,4 -6081,2366,2352,4718 -6082,1607,1549,3156 -6083,1749,1715,3464 -6084,3167,3222,6389 -6090,13,0,13 -6100,7087,6522,13609 -6101,7626,7364,14990 -6102,6769,7064,13833 -6103,4322,4080,8402 -6104,6746,6542,13288 -6105,6815,6703,13518 -6106,11,5,16 -6107,18886,17996,36882 -6108,11408,11557,22965 -6109,5385,5252,10637 -6110,17326,17536,34862 -6111,11051,11009,22060 -6112,20004,20246,40250 -6121,1375,1353,2728 -6122,4665,4716,9381 -6123,719,710,1429 -6124,544,538,1082 -6125,1372,1307,2679 -6126,375,127,502 -6147,7479,7327,14806 -6148,8454,8961,17415 -6149,9178,9460,18638 -6150,6508,6756,13264 -6151,8217,8219,16436 -6152,11724,12646,24370 -6153,9110,9923,19033 -6154,4615,5049,9664 -6155,24212,23848,48060 -6156,7576,8444,16020 -6157,6068,6890,12958 -6158,3353,3577,6930 -6159,1361,1364,2725 -6160,3830,3839,7669 -6161,62,52,114 -6162,5028,5351,10379 -6163,22666,23593,46259 -6164,23907,23638,47545 -6165,54,70,124 -6166,4087,4113,8200 -6167,11577,10926,22503 -6168,11746,11723,23469 -6169,16975,17353,34328 -6170,3240,3360,6600 -6171,7846,8037,15883 -6172,6977,7128,14105 -6173,5282,5147,10429 -6174,1101,1075,2176 -6175,1557,1453,3010 -6176,369,342,711 -6180,1724,1740,3464 -6181,256,238,494 -6182,0,0,0 -6207,578,506,1084 -6208,4806,4812,9618 -6209,950,882,1832 -6210,29595,31298,60893 -6211,2779,2771,5550 -6213,367,333,700 -6214,190,172,362 -6215,1774,1809,3583 -6218,241,241,482 -6220,2390,2306,4696 -6221,234,204,438 -6224,616,602,1218 -6225,4906,4222,9128 -6226,318,302,620 -6227,261,259,520 -6229,285,228,513 -6230,20196,20443,40639 -6232,4659,4764,9423 -6233,7856,7922,15778 -6236,986,963,1949 -6237,1287,1263,2550 -6239,2033,2021,4054 -6240,146,120,266 -6244,788,800,1588 -6251,226,209,435 -6253,270,290,560 -6254,318,312,630 -6255,1689,1789,3478 -6256,109,98,207 -6258,3158,3151,6309 -6260,793,749,1542 -6262,408,362,770 -6271,1402,1446,2848 -6275,675,587,1262 -6280,11328,12156,23484 -6281,2780,2771,5551 -6282,639,611,1250 -6284,832,774,1606 -6285,3745,3781,7526 -6286,310,270,580 -6288,203,202,405 -6290,817,831,1648 -6302,1696,1701,3397 -6304,809,758,1567 -6306,473,462,935 -6308,817,783,1600 -6309,133,133,266 -6311,301,303,604 -6312,2444,2483,4927 -6313,183,183,366 -6315,940,908,1848 -6316,220,199,419 -6317,2082,2101,4183 -6318,119,114,233 -6320,456,450,906 -6321,141,127,268 -6322,242,217,459 -6323,493,492,985 -6324,1498,1527,3025 -6326,268,239,507 -6327,158,137,295 -6328,229,199,428 -6330,16187,16734,32921 -6333,2554,2640,5194 -6335,423,414,837 -6336,133,114,247 -6337,258,222,480 -6338,418,334,752 -6341,151,124,275 -6343,124,113,237 -6346,443,290,733 -6348,733,665,1398 -6350,106,92,198 -6352,221,186,407 -6353,379,346,725 -6355,462,393,855 -6358,127,112,239 -6359,329,191,520 -6365,315,297,612 -6367,138,143,281 -6368,101,79,180 -6369,313,315,628 -6370,273,283,556 -6373,129,109,238 -6375,412,416,828 -6383,505,538,1043 -6386,130,124,254 -6390,1388,838,2226 -6391,477,437,914 -6392,256,234,490 -6393,196,185,381 -6394,211,197,408 -6395,770,804,1574 -6396,196,158,354 -6397,238,131,369 -6398,280,286,566 -6401,3728,3875,7603 -6403,103,94,197 -6405,137,128,265 -6407,556,486,1042 -6409,231,169,400 -6410,602,584,1186 -6413,83,65,148 -6415,1531,1365,2896 -6418,361,360,721 -6421,126,111,237 -6423,167,110,277 -6425,93,71,164 -6426,610,485,1095 -6429,909,616,1525 -6430,11983,11023,23006 -6431,326,352,678 -6432,4100,3634,7734 -6434,65,83,148 -6436,103,77,180 -6437,907,387,1294 -6438,766,450,1216 -6440,757,337,1094 -6442,1411,1288,2699 -6443,649,492,1141 -6445,89,71,160 -6447,264,228,492 -6448,231,215,446 -6450,6152,6226,12378 -6460,491,494,985 -6461,178,192,370 -6462,168,137,305 -6468,107,99,206 -6472,106,81,187 -6475,236,201,437 -6477,160,134,294 -6479,256,234,490 -6484,299,79,378 -6485,267,255,522 -6488,189,158,347 -6490,129,101,230 -6501,528,490,1018 -6502,535,528,1063 -6503,1047,997,2044 -6505,144,140,284 -6507,213,188,401 -6509,177,141,318 -6510,1016,1035,2051 -6511,245,216,461 -6513,101,89,190 -6514,324,286,610 -6515,243,209,452 -6516,787,720,1507 -6517,226,204,430 -6518,60,58,118 -6519,311,305,616 -6521,185,148,333 -6522,261,219,480 -6525,1822,1745,3567 -6528,139,148,287 -6530,15689,16274,31963 -6532,3099,2689,5788 -6535,763,723,1486 -6536,767,730,1497 -6537,336,300,636 -6556,913,936,1849 -6558,1762,410,2172 -6560,624,657,1281 -6562,573,574,1147 -6564,175,156,331 -6566,1530,1554,3084 -6567,180,186,366 -6568,136,112,248 -6569,186,146,332 -6575,128,113,241 -6603,581,546,1127 -6606,161,143,304 -6608,144,113,257 -6609,299,267,566 -6612,127,110,237 -6620,89,95,184 -6623,989,623,1612 -6628,104,77,181 -6630,327,206,533 -6635,341,177,518 -6638,366,277,643 -6639,54,51,105 -6640,153,118,271 -6642,822,555,1377 -6646,816,343,1159 -6701,2964,2824,5788 -6705,138,113,251 -6707,1285,1108,2393 -6710,1751,628,2379 -6713,688,577,1265 -6714,11075,7199,18274 -6716,369,282,651 -6718,432,381,813 -6720,1557,993,2550 -6721,3212,1985,5197 -6722,5963,4580,10543 -6725,5136,4721,9857 -6726,2540,2618,5158 -6728,4214,2681,6895 -6740,870,883,1753 -6743,3347,2999,6346 -6751,3559,1901,5460 -6753,6034,3053,9087 -6754,838,671,1509 -6758,84,93,177 -6760,256,255,511 -6762,914,262,1176 -6765,747,772,1519 -6770,1654,1610,3264 -6907,480,497,977 -7000,6581,6846,13427 -7004,3442,3726,7168 -7005,6203,6433,12636 -7007,1475,1444,2919 -7008,5718,6107,11825 -7009,5934,6385,12319 -7010,7490,8338,15828 -7011,6950,7468,14418 -7012,433,398,831 -7015,4640,5259,9899 -7016,1536,1143,2679 -7017,2340,2390,4730 -7018,9561,10499,20060 -7019,2673,2820,5493 -7020,1264,1189,2453 -7021,1105,1177,2282 -7022,405,429,834 -7023,171,157,328 -7024,227,234,461 -7025,912,940,1852 -7026,439,406,845 -7027,191,182,373 -7030,8297,8513,16810 -7050,5631,6132,11763 -7052,3217,3511,6728 -7053,1689,1822,3511 -7054,3901,4054,7955 -7055,195,219,414 -7109,3964,3943,7907 -7112,1414,1399,2813 -7113,573,530,1103 -7116,1183,1177,2360 -7117,387,376,763 -7120,1030,975,2005 -7140,5411,5252,10663 -7150,1353,1320,2673 -7155,519,465,984 -7162,321,323,644 -7163,129,110,239 -7170,2402,2281,4683 -7171,1451,1558,3009 -7172,1539,1616,3155 -7173,3113,3076,6189 -7176,216,201,417 -7177,239,232,471 -7178,193,164,357 -7179,182,156,338 -7180,154,121,275 -7182,124,126,250 -7183,46,40,86 -7184,377,389,766 -7186,139,140,279 -7190,1505,1503,3008 -7209,219,204,423 -7210,493,502,995 -7211,214,210,424 -7212,942,898,1840 -7213,154,147,301 -7214,349,301,650 -7215,1704,1583,3287 -7216,1699,1697,3396 -7248,7586,7829,15415 -7249,5884,6424,12308 -7250,22639,24595,47234 -7252,1165,1100,2265 -7253,2486,2613,5099 -7254,255,239,494 -7255,375,332,707 -7256,815,751,1566 -7257,32,35,67 -7258,477,464,941 -7259,250,207,457 -7260,1582,1635,3217 -7261,98,109,207 -7262,857,858,1715 -7263,382,359,741 -7264,366,314,680 -7265,127,147,274 -7267,469,413,882 -7268,524,541,1065 -7270,2059,2035,4094 -7275,1469,1581,3050 -7276,286,275,561 -7277,2548,2711,5259 -7290,1000,1063,2063 -7291,403,467,870 -7292,356,336,692 -7300,1513,1525,3038 -7301,1967,2047,4014 -7302,922,857,1779 -7303,1158,1181,2339 -7304,2862,3014,5876 -7305,625,605,1230 -7306,2028,1925,3953 -7307,4587,4663,9250 -7310,13055,14127,27182 -7315,6922,7349,14271 -7316,2955,3060,6015 -7320,7950,8772,16722 -7321,2437,2256,4693 -7322,1904,2070,3974 -7325,4233,4336,8569 -7330,3403,3351,6754 -7331,253,228,481 -7467,1037,938,1975 -7468,335,325,660 -7469,482,452,934 -7470,490,432,922 -9191,11,6,17 -800,2610,1936,4546 -810,15109,14613,29722 -812,9667,9648,19315 -820,10300,8751,19051 -822,12329,11780,24109 -828,1187,507,1694 -829,956,181,1137 -830,9017,8961,17978 -832,4870,4796,9666 -835,2778,2421,5199 -836,3645,3440,7085 -837,279,248,527 -838,403,333,736 -840,322,232,554 -841,354,339,693 -845,185,152,337 -846,112,125,237 -847,211,169,380 -850,3813,3775,7588 -852,3979,3995,7974 -853,416,326,742 -854,473,453,926 -860,1525,1536,3061 -862,377,317,694 -870,12555,12631,25186 -872,7960,7524,15484 -880,3129,2823,5952 -885,576,410,986 -886,627,502,1129 -2600,3241,3656,6897 -2601,2481,2311,4792 -2602,13837,14737,28574 -2603,4409,4213,8622 -2604,4170,4480,8650 -2605,5368,5960,11328 -2606,4096,4073,8169 -2607,6612,6851,13463 -2609,533,366,899 -2611,11369,11871,23240 -2612,7996,6668,14664 -2614,9304,9813,19117 -2615,21518,22184,43702 -2617,14861,14789,29650 -2900,720,765,1485 -2902,7674,7775,15449 -2903,4742,4830,9572 -2904,6447,6585,13032 -2905,14383,14839,29222 -2906,8827,9309,18136 -2911,273,300,573 -2912,3597,3552,7149 -2913,12551,12866,25417 -2914,6765,7062,13827 -6798,1465,607,2072 -6799,286,266,552 -9494,27443,20291,47734 -9797,934,335,1269 diff --git a/wwwroot/data/2011Census_TOT_SA1.csv b/wwwroot/data/2011Census_TOT_SA1.csv deleted file mode 100644 index 52d1102336..0000000000 --- a/wwwroot/data/2011Census_TOT_SA1.csv +++ /dev/null @@ -1,54806 +0,0 @@ -SA1,Tot_P_M,Tot_P_F,Tot_P_P -1100101,514,0,514 -1100102,289,317,606 -1100103,9,8,17 -1100104,10,9,19 -1100105,134,127,261 -1100106,150,92,242 -1100107,121,116,237 -1100108,114,119,233 -1100109,163,169,332 -1100110,257,270,527 -1100111,281,286,567 -1100112,221,222,443 -1100113,209,244,453 -1100114,182,181,363 -1100115,234,249,483 -1100116,212,228,440 -1100117,128,140,268 -1100118,167,159,326 -1100119,129,154,283 -1100120,192,223,415 -1100121,97,125,222 -1100122,156,161,317 -1100123,154,162,316 -1100124,219,231,450 -1100125,201,187,388 -1100126,131,146,277 -1100127,215,202,417 -1100128,120,135,255 -1100129,230,211,441 -1100130,134,150,284 -1100131,144,160,304 -1100132,290,319,609 -1100133,167,172,339 -1100134,184,175,359 -1100135,192,208,400 -1100136,261,261,522 -1100137,118,119,237 -1100138,213,196,409 -1100139,98,116,214 -1100140,144,131,275 -1100141,269,321,590 -1100142,135,141,276 -1100143,195,196,391 -1100144,103,121,224 -1100145,163,149,312 -1100146,201,221,422 -1100147,254,291,545 -1100148,187,177,364 -1100149,200,184,384 -1100150,141,146,287 -1100151,118,173,291 -1100152,95,139,234 -1100153,254,277,531 -1100154,303,261,564 -1100155,156,148,304 -1100156,183,186,369 -1100157,244,295,539 -1100158,157,157,314 -1100159,53,45,98 -1100160,3,7,10 -1100161,178,185,363 -1100201,285,316,601 -1100202,172,180,352 -1100203,156,152,308 -1100204,135,145,280 -1100205,293,294,587 -1100206,234,211,445 -1100207,262,234,496 -1100208,170,156,326 -1100209,107,105,212 -1100210,142,154,296 -1100211,98,89,187 -1100212,194,183,377 -1100213,146,136,282 -1100214,130,130,260 -1100215,150,123,273 -1100216,230,246,476 -1100217,175,158,333 -1100218,173,141,314 -1100219,182,173,355 -1100220,173,149,322 -1100221,145,130,275 -1100222,262,236,498 -1100223,214,209,423 -1100224,126,127,253 -1100225,164,150,314 -1100226,308,270,578 -1100227,193,210,403 -1100228,175,175,350 -1100229,114,104,218 -1100230,143,142,285 -1100231,219,253,472 -1100232,114,96,210 -1100233,137,126,263 -1100301,292,305,597 -1100302,69,66,135 -1100303,124,122,246 -1100304,249,269,518 -1100305,222,214,436 -1100306,174,216,390 -1100307,320,372,692 -1100308,154,148,302 -1100309,230,247,477 -1100310,224,220,444 -1100311,286,294,580 -1100312,277,325,602 -1100313,216,204,420 -1100314,242,255,497 -1100401,94,90,184 -1100402,144,150,294 -1100403,49,59,108 -1100404,438,408,846 -1100405,153,150,303 -1100406,128,127,255 -1100407,208,231,439 -1100408,167,167,334 -1100409,76,73,149 -1100410,186,194,380 -1100411,150,136,286 -1100412,148,161,309 -1100413,120,117,237 -1100414,115,113,228 -1100415,214,195,409 -1100416,207,195,402 -1100417,129,141,270 -1100418,0,0,0 -1100419,82,74,156 -1100420,214,203,417 -1100421,126,98,224 -1100422,154,149,303 -1100423,83,73,156 -1100424,143,137,280 -1100425,251,255,506 -1100426,171,164,335 -1100427,117,108,225 -1100428,182,181,363 -1100429,139,136,275 -1100430,109,120,229 -1100431,285,292,577 -1100432,155,160,315 -1100433,157,151,308 -1100434,147,148,295 -1100501,85,86,171 -1100502,185,234,419 -1100503,226,247,473 -1100504,283,282,565 -1100505,272,308,580 -1100506,207,235,442 -1100507,140,143,283 -1100508,104,127,231 -1100509,197,241,438 -1100510,182,199,381 -1100511,118,130,248 -1100512,220,272,492 -1100513,166,180,346 -1100514,199,190,389 -1100515,232,218,450 -1100516,135,146,281 -1100517,266,248,514 -1100518,123,103,226 -1100519,140,129,269 -1100520,184,204,388 -1100521,129,128,257 -1100522,113,127,240 -1100523,91,100,191 -1100524,156,152,308 -1100525,186,181,367 -1100526,118,103,221 -1100527,220,227,447 -1100528,46,119,165 -1100529,116,133,249 -1100530,106,157,263 -1100601,269,302,571 -1100602,182,197,379 -1100603,139,151,290 -1100604,224,255,479 -1100605,162,158,320 -1100606,154,166,320 -1100607,125,122,247 -1100608,201,177,378 -1100609,177,214,391 -1100610,130,128,258 -1100611,158,145,303 -1100612,219,195,414 -1100613,251,244,495 -1100614,140,128,268 -1100615,79,85,164 -1100616,206,176,382 -1100617,213,191,404 -1100618,117,102,219 -1100619,207,230,437 -1100620,184,155,339 -1100621,167,155,322 -1100701,134,112,246 -1100702,171,168,339 -1100703,178,202,380 -1100704,201,255,456 -1100705,160,166,326 -1100706,115,106,221 -1100707,152,141,293 -1100708,213,203,416 -1100709,158,148,306 -1100710,204,163,367 -1100801,164,197,361 -1100802,301,292,593 -1100803,187,197,384 -1100804,217,227,444 -1100805,132,152,284 -1100806,191,202,393 -1100807,217,243,460 -1100808,246,281,527 -1100809,0,0,0 -1100810,137,137,274 -1100811,156,176,332 -1100812,120,122,242 -1100813,231,211,442 -1100814,240,248,488 -1100815,249,240,489 -1100816,209,239,448 -1100817,160,170,330 -1100818,167,178,345 -1100819,249,224,473 -1100820,150,151,301 -1100821,260,225,485 -1100822,122,127,249 -1100823,133,123,256 -1100901,100,128,228 -1100902,182,158,340 -1100903,373,370,743 -1100904,174,188,362 -1100905,187,223,410 -1100906,371,318,689 -1100907,203,204,407 -1100908,280,242,522 -1100909,296,241,537 -1100910,229,193,422 -1100911,226,188,414 -1100912,142,144,286 -1100913,324,328,652 -1100914,210,222,432 -1100915,384,334,718 -1100916,228,235,463 -1100917,133,118,251 -1100918,227,308,535 -1100919,224,204,428 -1100920,215,185,400 -1100921,197,149,346 -1100922,298,340,638 -1101001,59,67,126 -1101002,188,191,379 -1101003,183,157,340 -1101004,140,149,289 -1101005,338,369,707 -1101006,273,193,466 -1101007,144,126,270 -1101008,245,230,475 -1101009,190,184,374 -1101010,171,171,342 -1101011,25,12,37 -1101012,46,47,93 -1101013,0,0,0 -1101014,78,90,168 -1101015,336,253,589 -1101101,177,189,366 -1101102,121,128,249 -1101103,125,122,247 -1101104,289,259,548 -1101105,266,249,515 -1101106,176,175,351 -1101107,174,170,344 -1101108,219,217,436 -1101109,145,159,304 -1101110,181,161,342 -1101111,200,213,413 -1101112,99,85,184 -1101113,62,50,112 -1101114,153,150,303 -1101115,131,148,279 -1101116,171,139,310 -1101117,144,134,278 -1101118,187,164,351 -1101119,165,127,292 -1101120,274,252,526 -1101121,153,157,310 -1101122,135,150,285 -1101123,119,114,233 -1101124,425,445,870 -1101125,255,250,505 -1101126,229,248,477 -1101127,168,164,332 -1101128,136,126,262 -1101129,189,180,369 -1101130,265,303,568 -1101131,104,109,213 -1101132,146,156,302 -1101133,152,173,325 -1101134,143,153,296 -1101135,137,128,265 -1101136,163,143,306 -1101137,160,146,306 -1101138,273,264,537 -1101139,109,106,215 -1101140,182,187,369 -1101201,99,110,209 -1101202,120,119,239 -1101203,276,307,583 -1101204,160,174,334 -1101205,176,159,335 -1101206,177,190,367 -1101207,114,123,237 -1101208,220,231,451 -1101209,365,351,716 -1101210,249,225,474 -1101211,287,329,616 -1101212,166,174,340 -1101213,277,251,528 -1101214,283,262,545 -1101215,227,233,460 -1101216,171,170,341 -1101217,12,7,19 -1101218,248,253,501 -1101219,292,292,584 -1101220,223,231,454 -1101221,153,149,302 -1101222,247,262,509 -1101223,264,283,547 -1101224,278,280,558 -1101225,0,0,0 -1101226,0,0,0 -1101227,212,210,422 -1101228,203,216,419 -1101229,212,226,438 -1101230,105,142,247 -1101231,152,161,313 -1101232,240,254,494 -1101301,135,134,269 -1101302,226,253,479 -1101303,133,131,264 -1101304,237,228,465 -1101305,108,106,214 -1101306,109,75,184 -1101307,156,146,302 -1101308,117,123,240 -1101401,165,187,352 -1101402,174,196,370 -1101403,207,195,402 -1101404,229,224,453 -1101405,225,220,445 -1101406,237,250,487 -1101407,189,211,400 -1101408,108,108,216 -1101409,188,229,417 -1101410,180,237,417 -1101411,302,181,483 -1101412,241,249,490 -1101413,179,175,354 -1101414,109,98,207 -1101415,159,181,340 -1101416,226,231,457 -1101417,3,10,13 -1101418,193,180,373 -1101501,0,0,0 -1101502,9,3,12 -1101503,119,105,224 -1101504,101,94,195 -1101505,52,57,109 -1101506,188,174,362 -1101507,120,106,226 -1101508,181,193,374 -1101509,258,241,499 -1101510,190,188,378 -1101511,116,110,226 -1101512,109,99,208 -1101513,193,165,358 -1101601,92,57,149 -1101602,214,227,441 -1101603,161,132,293 -1101604,84,89,173 -1101605,113,99,212 -1101606,214,177,391 -1101607,109,106,215 -1101608,142,131,273 -1101609,147,123,270 -1101610,348,312,660 -1101611,264,207,471 -1101612,86,51,137 -1101613,120,117,237 -1101614,165,133,298 -1101615,188,169,357 -1101616,238,206,444 -1101617,228,188,416 -1101618,289,262,551 -1101619,242,224,466 -1101620,124,95,219 -1101701,268,292,560 -1101702,124,117,241 -1101703,169,240,409 -1101704,189,173,362 -1101705,106,126,232 -1101706,188,242,430 -1101707,3,3,6 -1101708,195,201,396 -1101709,305,300,605 -1101710,193,183,376 -1101711,131,159,290 -1101712,245,259,504 -1101713,211,216,427 -1101714,0,0,0 -1101715,0,0,0 -1101716,234,240,474 -1101717,124,131,255 -1101718,211,190,401 -1101719,175,194,369 -1101720,131,123,254 -1101721,201,212,413 -1101722,252,258,510 -1101801,166,157,323 -1101802,140,152,292 -1101803,193,174,367 -1101804,89,100,189 -1101805,120,115,235 -1101806,219,242,461 -1101807,248,272,520 -1101808,298,339,637 -1101809,104,138,242 -1101810,144,156,300 -1101811,156,173,329 -1101812,196,223,419 -1101813,114,116,230 -1101814,131,126,257 -1101815,142,133,275 -1101816,170,202,372 -1101817,252,284,536 -1101818,218,270,488 -1101819,174,173,347 -1101820,147,139,286 -1101821,103,115,218 -1101822,192,246,438 -1101823,233,223,456 -1101824,0,0,0 -1101901,203,266,469 -1101902,202,251,453 -1101903,119,149,268 -1101904,229,256,485 -1101905,207,229,436 -1101906,216,208,424 -1101907,176,184,360 -1101908,172,166,338 -1101909,155,159,314 -1101910,68,81,149 -1101911,220,219,439 -1101912,191,193,384 -1101913,219,213,432 -1101914,325,316,641 -1101915,98,112,210 -1101916,242,226,468 -1101917,301,303,604 -1101918,121,125,246 -1101919,92,114,206 -1101920,132,152,284 -1101921,78,94,172 -1101922,128,141,269 -1102001,169,165,334 -1102002,237,274,511 -1102003,187,179,366 -1102004,178,172,350 -1102005,131,109,240 -1102006,216,156,372 -1102007,160,154,314 -1102008,178,188,366 -1102009,0,0,0 -1102010,3,0,3 -1102011,161,156,317 -1102012,0,0,0 -1102013,73,87,160 -1102014,92,107,199 -1102015,72,88,160 -1102016,160,139,299 -1102017,148,127,275 -1102018,191,223,414 -1102019,190,191,381 -1102020,267,240,507 -1102021,0,0,0 -1102022,156,150,306 -1102023,134,138,272 -1102024,139,132,271 -1102025,213,205,418 -1102026,95,83,178 -1102027,111,114,225 -1102028,210,194,404 -1102029,146,114,260 -1102030,192,249,441 -1102031,84,83,167 -1102032,140,123,263 -1102101,159,187,346 -1102102,107,102,209 -1102103,217,222,439 -1102104,187,253,440 -1102105,159,148,307 -1102106,294,287,581 -1102107,263,246,509 -1102201,27,29,56 -1102301,178,196,374 -1102302,190,220,410 -1102303,133,140,273 -1102304,80,82,162 -1102305,245,248,493 -1102306,145,165,310 -1102307,165,141,306 -1102308,265,292,557 -1102309,148,164,312 -1102310,4,6,10 -1102401,155,133,288 -1102402,157,153,310 -1102403,138,125,263 -1102404,174,180,354 -1102405,121,113,234 -1102406,117,112,229 -1102407,121,116,237 -1102408,149,144,293 -1102409,143,127,270 -1102410,118,100,218 -1102411,130,123,253 -1102412,151,124,275 -1102501,0,0,0 -1102502,130,151,281 -1102503,111,162,273 -1102504,142,143,285 -1102505,108,116,224 -1102506,159,148,307 -1102507,124,138,262 -1102508,248,292,540 -1102509,66,58,124 -1102510,135,141,276 -1102511,201,197,398 -1102512,247,263,510 -1102513,207,211,418 -1102514,100,118,218 -1102515,185,199,384 -1102516,136,130,266 -1102517,161,160,321 -1102518,177,214,391 -1102519,110,160,270 -1102520,274,263,537 -1102521,118,128,246 -1102522,173,170,343 -1102523,81,74,155 -1102524,142,149,291 -1102525,195,190,385 -1102526,157,174,331 -1102527,221,224,445 -1102528,284,327,611 -1102529,160,190,350 -1102530,161,180,341 -1102601,233,243,476 -1102602,240,284,524 -1102603,172,160,332 -1102604,168,167,335 -1102605,241,246,487 -1102606,153,130,283 -1102607,201,235,436 -1102608,159,194,353 -1102609,201,196,397 -1102610,126,136,262 -1102611,134,107,241 -1102612,108,112,220 -1102613,115,113,228 -1102614,271,283,554 -1102615,177,189,366 -1102616,103,86,189 -1102617,110,115,225 -1102618,141,137,278 -1102619,167,175,342 -1102620,156,116,272 -1102621,156,163,319 -1102622,116,114,230 -1102623,145,132,277 -1102701,119,108,227 -1102702,160,177,337 -1102703,80,80,160 -1102704,135,109,244 -1102705,219,208,427 -1102706,239,308,547 -1102707,254,269,523 -1102708,155,180,335 -1102709,259,267,526 -1102710,98,94,192 -1102711,0,0,0 -1102712,204,188,392 -1102713,231,190,421 -1102714,0,0,0 -1102715,13,9,22 -1102716,0,0,0 -1102717,130,120,250 -1102718,156,168,324 -1102719,204,193,397 -1102720,133,144,277 -1102721,273,253,526 -1102722,80,52,132 -1102723,125,123,248 -1102724,180,196,376 -1102725,176,163,339 -1102726,96,109,205 -1102727,187,186,373 -1102728,135,139,274 -1102729,268,283,551 -1102801,0,0,0 -1102802,266,301,567 -1102803,292,257,549 -1102804,106,124,230 -1102805,165,156,321 -1102806,255,251,506 -1102807,186,193,379 -1102808,191,204,395 -1102809,305,294,599 -1102810,237,251,488 -1102811,212,217,429 -1102812,190,186,376 -1102813,199,182,381 -1102814,210,195,405 -1102815,156,161,317 -1102816,137,149,286 -1102817,174,196,370 -1102818,204,196,400 -1102901,158,129,287 -1102902,131,135,266 -1102903,208,202,410 -1102904,240,236,476 -1102905,190,194,384 -1102906,98,95,193 -1102907,143,146,289 -1102908,184,206,390 -1102909,172,184,356 -1102910,257,250,507 -1102911,228,227,455 -1102912,247,218,465 -1102913,164,150,314 -1102914,157,150,307 -1102915,251,267,518 -1102916,180,180,360 -1102917,126,120,246 -1102918,198,194,392 -1102919,127,159,286 -1102920,4,5,9 -1102921,0,0,0 -1102922,250,245,495 -1102923,201,204,405 -1102924,256,262,518 -1102925,244,256,500 -1102926,140,160,300 -1102927,251,282,533 -1102928,326,354,680 -1103001,225,201,426 -1103002,280,275,555 -1103003,110,109,219 -1103004,153,177,330 -1103005,144,143,287 -1103006,183,159,342 -1103007,197,181,378 -1103008,112,93,205 -1103009,184,199,383 -1103010,197,164,361 -1103011,268,248,516 -1103012,227,197,424 -1103101,153,159,312 -1103102,129,187,316 -1103103,128,203,331 -1103104,172,238,410 -1103105,237,284,521 -1103106,110,123,233 -1103107,6,12,18 -1103108,124,124,248 -1103109,118,135,253 -1103110,199,257,456 -1103111,169,160,329 -1103112,79,80,159 -1103113,230,246,476 -1103114,245,214,459 -1103115,276,257,533 -1103116,265,206,471 -1103117,162,179,341 -1103118,162,175,337 -1103119,211,212,423 -1103120,192,201,393 -1103121,121,136,257 -1103122,179,214,393 -1103123,183,221,404 -1103124,150,168,318 -1103125,112,128,240 -1103126,162,207,369 -1103127,157,158,315 -1103128,152,246,398 -1103129,269,294,563 -1103130,155,151,306 -1103131,208,397,605 -1103132,8,9,17 -1103133,178,198,376 -1103134,196,230,426 -1103135,200,221,421 -1103136,190,209,399 -1103137,97,172,269 -1103138,221,274,495 -1103201,184,199,383 -1103202,219,254,473 -1103203,360,385,745 -1103204,232,255,487 -1103205,118,134,252 -1103206,27,24,51 -1103207,112,111,223 -1103208,223,223,446 -1103209,374,408,782 -1103210,99,87,186 -1103211,247,299,546 -1103212,246,236,482 -1103213,0,7,7 -1103214,297,340,637 -1103215,100,89,189 -1103216,146,156,302 -1103217,94,100,194 -1103218,271,295,566 -1103219,175,169,344 -1103220,165,175,340 -1103221,154,147,301 -1103222,338,295,633 -1103223,0,0,0 -1103224,237,233,470 -1103225,115,126,241 -1103226,121,122,243 -1103227,275,272,547 -1103228,285,393,678 -1103229,146,177,323 -1103230,191,265,456 -1103231,202,253,455 -1103232,208,245,453 -1103233,151,157,308 -1103234,350,363,713 -1103235,161,174,335 -1103236,270,227,497 -1103237,171,163,334 -1103238,148,158,306 -1103239,299,320,619 -1103240,136,213,349 -1103241,176,217,393 -1103242,211,338,549 -1103243,249,272,521 -1103244,281,430,711 -1103301,120,119,239 -1103302,249,236,485 -1103303,180,209,389 -1103304,181,203,384 -1103305,154,162,316 -1103306,142,139,281 -1103307,100,106,206 -1103308,217,223,440 -1103309,74,0,74 -1103310,181,153,334 -1103311,215,210,425 -1103312,158,178,336 -1103313,152,164,316 -1103314,167,167,334 -1103315,377,405,782 -1103316,0,0,0 -1103317,234,269,503 -1103318,105,103,208 -1103319,199,201,400 -1103320,0,4,4 -1103401,199,207,406 -1103402,181,183,364 -1103403,289,296,585 -1103404,126,154,280 -1103405,186,213,399 -1103406,79,78,157 -1103407,137,132,269 -1103408,150,179,329 -1103409,151,158,309 -1103410,195,210,405 -1103411,227,257,484 -1103412,249,255,504 -1103413,183,201,384 -1103414,180,208,388 -1103415,55,95,150 -1103416,193,255,448 -1103417,162,209,371 -1103418,176,369,545 -1103419,153,178,331 -1103501,293,309,602 -1103502,167,179,346 -1103503,229,261,490 -1103504,214,222,436 -1103505,200,221,421 -1103506,247,271,518 -1103507,145,165,310 -1103508,207,213,420 -1103509,174,202,376 -1103510,222,231,453 -1103511,248,222,470 -1103512,167,169,336 -1103513,167,164,331 -1103514,198,201,399 -1103515,139,168,307 -1103516,122,120,242 -1103517,16,20,36 -1103601,125,120,245 -1103602,111,135,246 -1103603,280,259,539 -1103604,146,150,296 -1103605,191,200,391 -1103606,141,136,277 -1103607,96,98,194 -1103608,165,177,342 -1103609,167,160,327 -1103610,293,312,605 -1103611,163,171,334 -1103612,80,97,177 -1103613,213,181,394 -1103614,278,271,549 -1103615,134,123,257 -1103616,168,149,317 -1103617,183,178,361 -1103618,140,120,260 -1103619,237,253,490 -1103620,225,278,503 -1103621,307,311,618 -1103622,161,158,319 -1103701,320,348,668 -1103702,271,251,522 -1103703,331,358,689 -1103704,123,117,240 -1103705,237,225,462 -1103706,163,204,367 -1103707,241,241,482 -1103708,112,109,221 -1103709,291,282,573 -1103710,193,202,395 -1103711,148,155,303 -1103712,148,143,291 -1103713,262,338,600 -1103714,243,254,497 -1103801,203,219,422 -1103802,225,267,492 -1103803,151,199,350 -1103804,245,249,494 -1103805,143,136,279 -1103806,121,143,264 -1103807,195,214,409 -1103808,105,160,265 -1103809,260,267,527 -1103810,163,148,311 -1103811,223,245,468 -1103812,157,180,337 -1103813,248,263,511 -1103814,231,244,475 -1103815,167,155,322 -1103816,198,178,376 -1103817,168,170,338 -1103901,312,294,606 -1103902,181,196,377 -1103903,127,132,259 -1103904,254,274,528 -1103905,214,233,447 -1103906,216,256,472 -1103907,282,261,543 -1103908,207,185,392 -1103909,279,272,551 -1103910,344,359,703 -1103911,271,277,548 -1103912,258,283,541 -1103913,282,307,589 -1103914,152,170,322 -1103915,206,209,415 -1103916,226,254,480 -1103917,178,182,360 -1103918,258,249,507 -1103919,185,212,397 -1103920,262,252,514 -1103921,319,322,641 -1103922,269,273,542 -1103923,136,130,266 -1103924,73,117,190 -1103925,212,208,420 -1103926,249,253,502 -1103927,229,222,451 -1104001,180,155,335 -1104002,124,163,287 -1104003,150,174,324 -1104004,214,234,448 -1104005,153,167,320 -1104006,244,248,492 -1104007,129,179,308 -1104008,0,0,0 -1104009,201,270,471 -1104010,125,156,281 -1104011,160,177,337 -1104012,119,168,287 -1104013,240,275,515 -1104014,202,362,564 -1104015,103,99,202 -1104016,239,274,513 -1104017,267,332,599 -1104018,226,226,452 -1104019,202,217,419 -1104020,197,214,411 -1104021,195,206,401 -1104022,117,127,244 -1104023,136,152,288 -1104024,244,277,521 -1104025,136,147,283 -1104026,269,319,588 -1104027,126,146,272 -1104028,187,184,371 -1104029,178,212,390 -1104030,171,167,338 -1104031,164,187,351 -1104032,108,106,214 -1104033,171,198,369 -1104034,241,251,492 -1104035,145,160,305 -1104036,160,171,331 -1104037,132,151,283 -1104038,163,159,322 -1104039,308,302,610 -1104040,177,197,374 -1104041,133,153,286 -1104042,171,184,355 -1104043,249,280,529 -1104044,142,157,299 -1104045,232,226,458 -1104046,215,237,452 -1104047,207,239,446 -1104048,233,240,473 -1104049,213,222,435 -1104050,175,185,360 -1104051,218,222,440 -1104052,187,188,375 -1104053,256,254,510 -1104054,168,172,340 -1104055,267,275,542 -1104056,203,188,391 -1104057,294,306,600 -1104058,160,177,337 -1104101,197,252,449 -1104102,299,321,620 -1104103,180,206,386 -1104104,212,222,434 -1104105,179,174,353 -1104106,190,205,395 -1104107,109,115,224 -1104108,0,0,0 -1104109,198,192,390 -1104110,232,241,473 -1104111,112,133,245 -1104112,233,199,432 -1104113,167,176,343 -1104114,292,293,585 -1104115,160,161,321 -1104116,185,220,405 -1104117,127,117,244 -1104118,0,0,0 -1104119,207,226,433 -1104120,221,200,421 -1104121,179,192,371 -1104122,157,134,291 -1104123,195,198,393 -1104124,210,212,422 -1104125,237,224,461 -1104201,228,241,469 -1104202,254,251,505 -1104203,154,140,294 -1104204,189,216,405 -1104205,204,281,485 -1104206,0,0,0 -1104207,266,261,527 -1104208,214,270,484 -1104209,113,130,243 -1104210,224,215,439 -1104211,210,215,425 -1104212,5,6,11 -1104213,314,279,593 -1104214,250,258,508 -1104215,171,189,360 -1104216,166,172,338 -1104217,194,235,429 -1104218,215,219,434 -1104219,182,182,364 -1104220,241,259,500 -1104221,242,250,492 -1104222,214,192,406 -1104223,136,207,343 -1104224,226,261,487 -1104225,226,258,484 -1104226,215,215,430 -1104227,165,172,337 -1104228,215,215,430 -1104229,135,166,301 -1104230,191,217,408 -1104231,240,322,562 -1104232,148,185,333 -1104233,196,226,422 -1104301,74,68,142 -1104302,183,181,364 -1104303,254,255,509 -1104304,190,186,376 -1104305,184,185,369 -1104306,3,5,8 -1104307,137,145,282 -1104308,138,120,258 -1104309,180,195,375 -1104310,92,102,194 -1104311,226,223,449 -1104312,299,514,813 -1104313,173,230,403 -1104314,55,141,196 -1104315,193,199,392 -1104316,161,168,329 -1104317,193,191,384 -1104318,155,168,323 -1104319,203,220,423 -1104320,203,225,428 -1104321,157,180,337 -1104322,160,150,310 -1104323,225,236,461 -1104324,257,276,533 -1104325,178,260,438 -1104326,302,297,599 -1104327,180,204,384 -1104328,118,148,266 -1104329,142,144,286 -1104330,279,299,578 -1104401,160,163,323 -1104402,187,187,374 -1104403,105,139,244 -1104404,295,333,628 -1104405,144,139,283 -1104406,134,150,284 -1104407,190,247,437 -1104408,136,158,294 -1104409,166,183,349 -1104410,76,144,220 -1104411,118,192,310 -1104412,267,279,546 -1104413,0,0,0 -1104414,212,257,469 -1104415,200,208,408 -1104416,317,349,666 -1104417,235,290,525 -1104418,0,0,0 -1104419,238,227,465 -1104420,105,190,295 -1104421,106,176,282 -1104422,221,230,451 -1104423,239,238,477 -1104424,135,159,294 -1104425,105,111,216 -1104426,175,196,371 -1104427,123,125,248 -1104428,178,194,372 -1104429,235,268,503 -1104430,135,153,288 -1104431,146,155,301 -1104432,135,130,265 -1104433,168,173,341 -1104434,289,334,623 -1104435,164,153,317 -1104436,215,241,456 -1104437,131,154,285 -1104438,192,201,393 -1104439,189,196,385 -1104440,115,242,357 -1104441,179,175,354 -1104442,189,200,389 -1104443,115,122,237 -1104444,152,185,337 -1104445,209,211,420 -1104446,239,371,610 -1104447,216,280,496 -1104448,176,185,361 -1104449,158,185,343 -1104450,189,195,384 -1104451,198,211,409 -1104452,99,107,206 -1104453,171,190,361 -1104454,101,95,196 -1104455,201,234,435 -1104456,215,189,404 -1104457,157,186,343 -1104458,174,173,347 -1104459,168,204,372 -1104501,219,216,435 -1104502,173,166,339 -1104503,141,147,288 -1104504,280,281,561 -1104505,266,288,554 -1104506,286,311,597 -1104507,261,282,543 -1104508,179,187,366 -1104509,197,202,399 -1104510,293,328,621 -1104511,311,295,606 -1104512,200,224,424 -1104513,329,349,678 -1104514,243,233,476 -1104515,170,163,333 -1104516,285,301,586 -1104517,143,139,282 -1104518,297,342,639 -1104519,166,139,305 -1104520,3,3,6 -1104521,222,220,442 -1104522,180,205,385 -1104523,138,157,295 -1104524,292,323,615 -1104601,208,194,402 -1104602,123,150,273 -1104603,214,237,451 -1104604,224,216,440 -1104605,124,116,240 -1104606,178,205,383 -1104607,229,246,475 -1104608,233,266,499 -1104609,223,236,459 -1104610,136,118,254 -1104611,123,157,280 -1104612,139,153,292 -1104613,0,0,0 -1104614,149,149,298 -1104615,127,137,264 -1104616,226,231,457 -1104617,218,206,424 -1104618,243,263,506 -1104619,237,238,475 -1104620,194,203,397 -1104621,154,135,289 -1104622,137,146,283 -1104623,8,7,15 -1104624,225,252,477 -1104625,319,319,638 -1104701,240,263,503 -1104702,104,137,241 -1104703,105,106,211 -1104704,289,321,610 -1104705,230,260,490 -1104706,210,215,425 -1104707,262,262,524 -1104708,288,312,600 -1104709,242,241,483 -1104710,92,184,276 -1104711,203,283,486 -1104712,240,242,482 -1104713,303,367,670 -1104714,95,106,201 -1104715,225,224,449 -1104716,220,227,447 -1104717,185,162,347 -1104718,206,192,398 -1104719,321,326,647 -1104720,125,143,268 -1104721,241,251,492 -1104722,260,263,523 -1104723,154,146,300 -1104724,185,170,355 -1104725,125,160,285 -1104726,172,171,343 -1104727,169,188,357 -1104728,286,304,590 -1104729,263,280,543 -1104730,164,162,326 -1104731,265,307,572 -1104732,211,228,439 -1104733,80,101,181 -1104734,143,124,267 -1104735,245,257,502 -1104736,260,248,508 -1104737,5,9,14 -1104801,138,154,292 -1104802,202,192,394 -1104803,266,259,525 -1104804,161,169,330 -1104805,166,208,374 -1104806,146,128,274 -1104807,255,284,539 -1104808,155,135,290 -1104809,207,190,397 -1104810,269,302,571 -1104811,279,303,582 -1104812,256,278,534 -1104813,268,277,545 -1104814,323,338,661 -1104815,161,195,356 -1104816,148,178,326 -1104817,221,228,449 -1104818,267,298,565 -1104819,232,259,491 -1104820,121,126,247 -1104821,218,325,543 -1104822,278,281,559 -1104823,160,145,305 -1104824,296,325,621 -1104825,226,222,448 -1104826,179,220,399 -1104827,257,260,517 -1104828,241,274,515 -1104829,225,233,458 -1104830,239,254,493 -1104831,183,204,387 -1104832,236,257,493 -1104833,215,263,478 -1104834,154,164,318 -1104835,152,135,287 -1104836,257,267,524 -1104837,262,287,549 -1104838,158,155,313 -1104839,329,488,817 -1104840,167,173,340 -1104841,160,182,342 -1104842,165,185,350 -1104843,195,183,378 -1104844,150,142,292 -1104845,189,252,441 -1104846,214,296,510 -1104847,136,132,268 -1104901,218,217,435 -1104902,152,171,323 -1104903,199,188,387 -1104904,179,165,344 -1104905,230,239,469 -1104906,135,136,271 -1104907,99,101,200 -1104908,94,95,189 -1104909,0,0,0 -1104910,193,193,386 -1105001,297,312,609 -1105002,172,169,341 -1105003,243,238,481 -1105004,135,168,303 -1105005,203,194,397 -1105006,190,198,388 -1105007,190,204,394 -1105008,291,351,642 -1105009,208,220,428 -1105010,146,157,303 -1105011,210,220,430 -1105012,170,184,354 -1105013,189,199,388 -1105014,0,0,0 -1105015,141,138,279 -1105016,3,3,6 -1105017,179,224,403 -1105018,162,156,318 -1105019,201,205,406 -1105020,144,177,321 -1105021,179,213,392 -1105022,221,209,430 -1105023,388,433,821 -1105024,182,189,371 -1105025,166,178,344 -1105026,250,266,516 -1105101,257,275,532 -1105102,166,189,355 -1105103,118,131,249 -1105104,92,84,176 -1105105,0,0,0 -1105106,232,215,447 -1105107,48,46,94 -1105108,216,237,453 -1105109,139,145,284 -1105110,176,184,360 -1105111,144,143,287 -1105112,144,162,306 -1105113,186,163,349 -1105114,172,175,347 -1105115,131,143,274 -1105116,139,137,276 -1105201,262,273,535 -1105202,256,240,496 -1105203,177,166,343 -1105204,223,211,434 -1105205,240,277,517 -1105206,199,187,386 -1105207,234,199,433 -1105208,178,187,365 -1105209,172,177,349 -1105210,159,160,319 -1105211,0,0,0 -1105212,3,3,6 -1105213,129,119,248 -1105214,132,128,260 -1105215,143,141,284 -1105216,204,212,416 -1105301,216,250,466 -1105302,178,157,335 -1105303,211,239,450 -1105304,154,184,338 -1105305,266,268,534 -1105306,233,211,444 -1105307,253,299,552 -1105308,131,151,282 -1105309,143,171,314 -1105310,167,180,347 -1105311,129,156,285 -1105312,125,136,261 -1105313,111,131,242 -1105314,182,234,416 -1105315,286,319,605 -1105316,261,287,548 -1105317,145,138,283 -1105318,135,131,266 -1105319,94,102,196 -1105320,158,151,309 -1105321,319,298,617 -1105322,40,49,89 -1105323,20,8,28 -1105324,216,216,432 -1105325,157,204,361 -1105326,198,211,409 -1105327,168,160,328 -1105328,258,268,526 -1105329,255,275,530 -1105330,224,236,460 -1105331,157,185,342 -1105332,187,199,386 -1105333,155,159,314 -1105334,284,315,599 -1105335,175,212,387 -1105336,113,128,241 -1105337,229,224,453 -1105401,220,242,462 -1105402,159,160,319 -1105403,171,181,352 -1105404,206,254,460 -1105405,136,123,259 -1105406,199,266,465 -1105407,281,278,559 -1105408,330,351,681 -1105409,152,163,315 -1105410,158,195,353 -1105411,189,176,365 -1105412,187,188,375 -1105413,164,154,318 -1105414,178,215,393 -1105415,0,3,3 -1105416,0,0,0 -1105417,144,156,300 -1105418,278,295,573 -1105419,260,296,556 -1105420,222,213,435 -1105421,201,191,392 -1105422,177,213,390 -1105423,203,219,422 -1105424,133,136,269 -1105501,164,153,317 -1105502,286,321,607 -1105503,195,201,396 -1105504,12,5,17 -1105505,173,195,368 -1105506,226,252,478 -1105507,247,293,540 -1105508,177,206,383 -1105509,232,170,402 -1105510,134,131,265 -1105511,261,265,526 -1105512,110,116,226 -1105513,144,147,291 -1105514,123,103,226 -1105601,288,339,627 -1105602,346,358,704 -1105603,305,310,615 -1105604,117,125,242 -1105605,300,310,610 -1105606,152,155,307 -1105607,249,275,524 -1105608,255,268,523 -1105609,107,142,249 -1105610,381,356,737 -1105611,386,444,830 -1105612,195,238,433 -1105613,281,266,547 -1105614,223,234,457 -1105615,235,305,540 -1105616,5,0,5 -1105617,137,129,266 -1105618,331,371,702 -1105619,429,444,873 -1105620,154,149,303 -1105621,0,0,0 -1105622,211,195,406 -1105623,180,223,403 -1105624,206,212,418 -1105625,126,154,280 -1105626,243,178,421 -1105627,236,244,480 -1105701,280,267,547 -1105702,242,262,504 -1105703,264,276,540 -1105704,227,244,471 -1105705,14,10,24 -1105706,201,174,375 -1105707,285,310,595 -1105708,144,152,296 -1105709,224,227,451 -1105710,324,355,679 -1105711,171,184,355 -1105712,154,193,347 -1105713,115,137,252 -1105714,147,140,287 -1105715,157,171,328 -1105716,220,263,483 -1105717,287,278,565 -1105718,176,205,381 -1105719,222,201,423 -1105720,138,118,256 -1105801,189,233,422 -1105802,146,172,318 -1105803,251,257,508 -1105804,207,224,431 -1105805,146,145,291 -1105806,214,202,416 -1105807,115,124,239 -1105808,128,125,253 -1105809,101,103,204 -1105810,338,334,672 -1105811,191,195,386 -1105812,302,318,620 -1105813,231,226,457 -1105814,304,109,413 -1105815,198,201,399 -1105816,147,157,304 -1105817,240,311,551 -1105818,258,303,561 -1105819,189,201,390 -1105820,139,163,302 -1105821,157,197,354 -1105822,206,178,384 -1105823,247,314,561 -1105824,289,230,519 -1105825,206,192,398 -1105826,292,281,573 -1105827,176,190,366 -1105828,148,185,333 -1105829,222,246,468 -1105830,151,151,302 -1105831,114,117,231 -1105832,174,252,426 -1105833,106,125,231 -1105834,211,203,414 -1105835,205,165,370 -1105836,162,156,318 -1105837,145,150,295 -1105838,210,211,421 -1105839,301,314,615 -1105840,224,272,496 -1105841,206,255,461 -1105842,164,172,336 -1105843,208,265,473 -1105844,206,223,429 -1105845,262,285,547 -1105846,266,286,552 -1105847,281,279,560 -1105848,241,261,502 -1105849,469,0,469 -1105850,144,149,293 -1105851,215,236,451 -1105852,0,0,0 -1105853,161,175,336 -1105854,186,206,392 -1105855,171,191,362 -1105856,147,148,295 -1105857,138,161,299 -1105901,193,174,367 -1105902,160,163,323 -1105903,151,122,273 -1105904,0,0,0 -1105905,271,258,529 -1105906,167,176,343 -1105907,167,148,315 -1105908,103,161,264 -1105909,478,442,920 -1105910,193,190,383 -1105911,158,156,314 -1105912,156,152,308 -1105913,256,251,507 -1105914,180,194,374 -1105915,177,192,369 -1105916,217,203,420 -1105917,357,368,725 -1105918,180,200,380 -1105919,329,334,663 -1105920,112,131,243 -1105921,172,172,344 -1105922,201,187,388 -1105923,356,392,748 -1106001,98,90,188 -1106002,100,89,189 -1106003,132,131,263 -1106004,192,279,471 -1106005,189,174,363 -1106006,287,265,552 -1106007,114,111,225 -1106008,179,181,360 -1106009,178,170,348 -1106010,249,235,484 -1106011,162,152,314 -1106012,169,171,340 -1106013,169,173,342 -1106014,126,105,231 -1106015,123,123,246 -1106016,227,197,424 -1106017,112,107,219 -1106018,134,135,269 -1106019,168,170,338 -1106020,136,117,253 -1106021,183,0,183 -1106101,95,108,203 -1106102,192,179,371 -1106103,152,197,349 -1106104,122,99,221 -1106105,149,102,251 -1106106,186,169,355 -1106107,183,72,255 -1106108,220,213,433 -1106109,88,77,165 -1106110,180,141,321 -1106111,157,167,324 -1106112,203,174,377 -1106113,10,0,10 -1106114,137,143,280 -1106115,100,97,197 -1106116,171,167,338 -1106201,206,225,431 -1106202,240,216,456 -1106203,200,210,410 -1106204,191,199,390 -1106205,173,201,374 -1106206,186,200,386 -1106207,124,131,255 -1106208,104,106,210 -1106209,130,150,280 -1106210,166,171,337 -1106211,180,179,359 -1106212,88,91,179 -1106213,206,178,384 -1106214,149,127,276 -1106215,124,99,223 -1106216,51,41,92 -1106217,166,150,316 -1106218,140,147,287 -1106219,212,188,400 -1106220,175,161,336 -1106221,92,74,166 -1106222,149,150,299 -1106223,6,4,10 -1106224,18,24,42 -1106225,0,0,0 -1106301,0,0,0 -1106302,0,0,0 -1106303,235,271,506 -1106304,335,358,693 -1106305,128,134,262 -1106306,88,156,244 -1106307,4,0,4 -1106308,187,175,362 -1106309,224,255,479 -1106310,193,188,381 -1106311,223,200,423 -1106312,157,190,347 -1106313,122,101,223 -1106314,100,111,211 -1106315,206,233,439 -1106316,185,183,368 -1106317,169,167,336 -1106318,162,158,320 -1106319,150,159,309 -1106320,91,99,190 -1106321,161,166,327 -1106322,114,123,237 -1106323,243,245,488 -1106324,148,142,290 -1106325,223,214,437 -1106326,118,110,228 -1106327,90,91,181 -1106328,232,220,452 -1106329,93,95,188 -1106401,91,91,182 -1106402,120,137,257 -1106403,148,139,287 -1106404,182,199,381 -1106405,141,135,276 -1106406,171,153,324 -1106407,216,238,454 -1106408,244,257,501 -1106409,147,148,295 -1106410,141,121,262 -1106411,126,112,238 -1106412,139,128,267 -1106413,163,147,310 -1106414,164,152,316 -1106415,124,102,226 -1106416,115,93,208 -1106417,172,160,332 -1106418,132,111,243 -1106501,181,187,368 -1106502,157,167,324 -1106503,145,163,308 -1106504,207,183,390 -1106505,156,159,315 -1106506,190,204,394 -1106507,198,198,396 -1106508,211,245,456 -1106509,229,253,482 -1106510,138,151,289 -1106511,245,239,484 -1106512,185,205,390 -1106513,172,169,341 -1106514,142,167,309 -1106515,268,263,531 -1106516,115,94,209 -1106517,93,79,172 -1106518,150,136,286 -1106519,159,130,289 -1106520,142,121,263 -1106521,156,123,279 -1106522,118,103,221 -1106523,170,185,355 -1106524,100,90,190 -1106525,108,99,207 -1106526,220,260,480 -1106527,161,160,321 -1106528,201,220,421 -1106529,163,167,330 -1106601,105,97,202 -1106602,97,84,181 -1106603,131,122,253 -1106604,185,193,378 -1106605,194,201,395 -1106606,106,111,217 -1106607,189,181,370 -1106608,87,109,196 -1106609,109,123,232 -1106610,175,145,320 -1106611,171,164,335 -1106612,175,175,350 -1106613,117,97,214 -1106701,194,201,395 -1106702,196,193,389 -1106703,175,178,353 -1106704,104,91,195 -1106705,158,157,315 -1106706,141,143,284 -1106707,156,161,317 -1106708,230,254,484 -1106709,201,166,367 -1106710,265,308,573 -1106711,137,148,285 -1106712,233,292,525 -1106713,172,186,358 -1106714,194,220,414 -1106715,286,279,565 -1106716,182,207,389 -1106717,143,142,285 -1106718,179,220,399 -1106719,219,217,436 -1106720,191,174,365 -1106721,119,125,244 -1106722,136,154,290 -1106723,230,254,484 -1106724,174,193,367 -1106725,125,128,253 -1106726,201,182,383 -1106727,219,226,445 -1106728,87,100,187 -1106729,278,322,600 -1106801,106,109,215 -1106802,134,142,276 -1106803,143,131,274 -1106804,91,117,208 -1106805,189,201,390 -1106806,145,130,275 -1106807,173,134,307 -1106808,195,190,385 -1106809,199,195,394 -1106810,183,167,350 -1106811,184,142,326 -1106901,129,119,248 -1106902,272,268,540 -1106903,104,83,187 -1106904,196,198,394 -1106905,85,81,166 -1106906,163,144,307 -1106907,181,154,335 -1106908,122,112,234 -1106909,101,94,195 -1106910,168,145,313 -1106911,107,104,211 -1106912,148,174,322 -1106913,133,135,268 -1106914,192,237,429 -1106915,187,180,367 -1106916,175,216,391 -1106917,128,146,274 -1106918,124,158,282 -1106919,200,189,389 -1107001,227,225,452 -1107002,47,44,91 -1107003,320,344,664 -1107004,59,60,119 -1107005,284,346,630 -1107006,255,251,506 -1107007,121,121,242 -1107008,79,96,175 -1107009,0,0,0 -1107010,190,229,419 -1107011,221,231,452 -1107012,205,205,410 -1107013,168,162,330 -1107014,221,210,431 -1107015,219,212,431 -1107016,171,177,348 -1107017,151,146,297 -1107018,263,287,550 -1107019,261,242,503 -1107020,219,216,435 -1107021,316,355,671 -1107022,123,146,269 -1107023,257,228,485 -1107024,119,105,224 -1107025,127,127,254 -1107026,132,131,263 -1107027,309,300,609 -1107028,255,245,500 -1107029,162,195,357 -1107030,141,136,277 -1107031,317,0,317 -1107032,275,248,523 -1107101,102,120,222 -1107102,142,134,276 -1107103,163,178,341 -1107104,105,104,209 -1107105,134,123,257 -1107106,258,266,524 -1107107,292,264,556 -1107108,133,121,254 -1107109,107,110,217 -1107110,171,152,323 -1107111,116,109,225 -1107112,167,132,299 -1107113,148,140,288 -1107114,131,129,260 -1107115,171,127,298 -1107116,184,170,354 -1107117,179,176,355 -1107118,0,0,0 -1107119,140,132,272 -1107120,154,158,312 -1107121,85,88,173 -1107122,206,194,400 -1107123,97,85,182 -1107124,186,192,378 -1107125,95,93,188 -1107126,53,49,102 -1107127,143,119,262 -1107128,202,170,372 -1107201,167,200,367 -1107202,207,193,400 -1107203,134,127,261 -1107204,219,239,458 -1107205,227,227,454 -1107206,140,151,291 -1107207,80,79,159 -1107208,256,288,544 -1107209,148,163,311 -1107210,208,270,478 -1107211,267,302,569 -1107212,141,154,295 -1107213,464,403,867 -1107214,163,159,322 -1107215,169,170,339 -1107216,227,239,466 -1107217,288,288,576 -1107218,191,225,416 -1107219,316,316,632 -1107220,231,239,470 -1107221,159,195,354 -1107222,102,99,201 -1107223,367,342,709 -1107224,267,275,542 -1107301,0,0,0 -1107302,123,127,250 -1107303,184,204,388 -1107304,104,128,232 -1107305,90,110,200 -1107306,123,114,237 -1107307,173,189,362 -1107308,141,147,288 -1107309,98,100,198 -1107310,161,144,305 -1107311,115,96,211 -1107312,122,109,231 -1107313,89,72,161 -1107314,153,121,274 -1107401,118,107,225 -1107402,146,143,289 -1107403,233,246,479 -1107404,233,218,451 -1107405,215,251,466 -1107406,105,76,181 -1107407,189,176,365 -1107408,130,106,236 -1107409,284,266,550 -1107410,141,119,260 -1107411,206,176,382 -1107412,229,234,463 -1107413,238,237,475 -1107414,234,216,450 -1107415,249,241,490 -1107416,231,205,436 -1107417,145,142,287 -1107418,179,146,325 -1107419,189,161,350 -1107420,223,201,424 -1107421,231,192,423 -1107422,216,164,380 -1107423,178,160,338 -1107424,229,227,456 -1107425,250,191,441 -1107426,163,175,338 -1107501,0,0,0 -1107601,127,116,243 -1107602,110,128,238 -1107603,259,245,504 -1107604,147,170,317 -1107605,204,206,410 -1107606,246,263,509 -1107607,140,157,297 -1107608,206,219,425 -1107609,140,152,292 -1107610,159,172,331 -1107611,100,114,214 -1107612,102,117,219 -1107613,119,111,230 -1107614,205,167,372 -1107615,232,233,465 -1107616,246,231,477 -1107617,247,249,496 -1107618,110,112,222 -1107619,138,128,266 -1107620,104,80,184 -1107621,159,145,304 -1107701,165,152,317 -1107702,206,294,500 -1107703,145,196,341 -1107704,140,161,301 -1107705,114,101,215 -1107706,125,141,266 -1107707,234,260,494 -1107708,254,267,521 -1107709,178,171,349 -1107710,129,289,418 -1107711,242,255,497 -1107712,109,122,231 -1107713,260,291,551 -1107714,157,176,333 -1107715,205,212,417 -1107716,258,227,485 -1107717,187,214,401 -1107718,222,227,449 -1107719,187,219,406 -1107720,298,165,463 -1107721,160,164,324 -1107722,140,129,269 -1107723,230,221,451 -1107724,97,171,268 -1107725,117,118,235 -1107726,210,259,469 -1107727,190,189,379 -1107728,211,215,426 -1107729,186,205,391 -1107730,213,202,415 -1107731,267,281,548 -1107732,126,129,255 -1107733,219,223,442 -1107734,123,118,241 -1107735,0,0,0 -1107736,51,64,115 -1107737,116,100,216 -1107738,92,106,198 -1107739,79,74,153 -1107740,296,299,595 -1107741,101,133,234 -1107742,148,169,317 -1107743,124,130,254 -1107744,175,160,335 -1107745,164,168,332 -1107746,224,248,472 -1107747,206,224,430 -1107748,174,188,362 -1107749,134,156,290 -1107750,233,256,489 -1107751,192,179,371 -1107752,317,302,619 -1107753,185,172,357 -1107754,218,223,441 -1107801,168,181,349 -1107802,112,142,254 -1107803,295,310,605 -1107804,205,214,419 -1107805,182,200,382 -1107806,257,280,537 -1107807,169,175,344 -1107808,230,293,523 -1107809,80,90,170 -1107810,134,121,255 -1107811,135,148,283 -1107812,221,205,426 -1107813,103,109,212 -1107814,184,179,363 -1107815,191,193,384 -1107816,165,165,330 -1107817,298,308,606 -1107818,293,267,560 -1107819,154,174,328 -1107820,141,118,259 -1107821,91,117,208 -1107822,258,293,551 -1107823,156,164,320 -1107824,220,229,449 -1107825,156,188,344 -1107826,211,243,454 -1107827,270,300,570 -1107828,225,279,504 -1107829,218,239,457 -1107830,225,276,501 -1107831,193,199,392 -1107832,730,706,1436 -1107833,275,265,540 -1107834,296,290,586 -1107835,225,212,437 -1107836,175,187,362 -1107837,249,214,463 -1107838,132,149,281 -1107839,177,205,382 -1107901,148,127,275 -1107902,178,161,339 -1107903,144,170,314 -1107904,211,240,451 -1107905,131,152,283 -1107906,90,92,182 -1107907,159,146,305 -1107908,152,162,314 -1107909,134,129,263 -1107910,93,93,186 -1107911,142,138,280 -1107912,125,123,248 -1107913,207,206,413 -1107914,170,156,326 -1107915,163,144,307 -1107916,121,110,231 -1107917,107,129,236 -1107918,150,132,282 -1107919,161,172,333 -1107920,113,123,236 -1107921,146,146,292 -1107922,192,174,366 -1107923,77,73,150 -1107924,272,258,530 -1107925,291,285,576 -1107926,78,69,147 -1107927,194,173,367 -1107928,174,174,348 -1107929,245,255,500 -1107930,228,204,432 -1107931,84,81,165 -1107932,120,117,237 -1107933,51,43,94 -1107934,184,155,339 -1107935,127,144,271 -1107936,185,190,375 -1108001,159,189,348 -1108002,27,32,59 -1108003,141,172,313 -1108004,24,7,31 -1108005,103,153,256 -1108006,172,188,360 -1108007,234,274,508 -1108008,164,179,343 -1108009,168,208,376 -1108010,227,256,483 -1108011,214,199,413 -1108012,271,258,529 -1108013,59,56,115 -1108014,204,200,404 -1108015,236,253,489 -1108016,163,165,328 -1108017,241,244,485 -1108018,161,226,387 -1108019,240,276,516 -1108020,154,216,370 -1108021,139,157,296 -1108022,140,167,307 -1108023,146,197,343 -1108024,131,147,278 -1108025,219,225,444 -1108026,221,19,240 -1108027,184,209,393 -1108028,172,176,348 -1108029,238,245,483 -1108030,225,257,482 -1108031,198,218,416 -1108032,121,166,287 -1108033,190,200,390 -1108034,170,172,342 -1108035,199,174,373 -1108036,75,81,156 -1108037,186,221,407 -1108038,141,142,283 -1108039,211,229,440 -1108040,260,286,546 -1108041,197,266,463 -1108042,154,162,316 -1108043,199,229,428 -1108044,252,277,529 -1108045,341,321,662 -1108046,169,186,355 -1108047,151,141,292 -1108048,182,178,360 -1108049,104,85,189 -1108050,176,217,393 -1108051,0,0,0 -1108101,136,151,287 -1108102,208,226,434 -1108103,127,125,252 -1108104,103,79,182 -1108105,174,158,332 -1108106,173,128,301 -1108107,125,132,257 -1108108,201,181,382 -1108109,162,140,302 -1108110,136,128,264 -1108111,0,0,0 -1108112,143,144,287 -1108113,186,171,357 -1108114,246,231,477 -1108115,123,139,262 -1108116,112,109,221 -1108117,161,169,330 -1108118,148,152,300 -1108119,91,105,196 -1108120,198,189,387 -1108121,172,177,349 -1108122,132,127,259 -1108123,154,137,291 -1108124,199,198,397 -1108125,106,105,211 -1108126,92,95,187 -1108127,93,83,176 -1108128,157,154,311 -1108129,153,137,290 -1108130,171,175,346 -1108131,171,167,338 -1108132,183,151,334 -1108133,127,143,270 -1108134,297,258,555 -1108135,255,301,556 -1108136,229,197,426 -1108137,130,115,245 -1108138,119,123,242 -1108139,157,134,291 -1108140,132,113,245 -1108141,107,108,215 -1108142,177,168,345 -1108143,183,166,349 -1108144,192,155,347 -1108145,178,156,334 -1108146,201,206,407 -1108147,185,163,348 -1108148,70,73,143 -1108149,98,91,189 -1108150,108,106,214 -1108201,28,27,55 -1108202,136,161,297 -1108203,281,295,576 -1108204,350,362,712 -1108205,155,192,347 -1108206,25,19,44 -1108207,303,299,602 -1108208,90,95,185 -1108209,103,92,195 -1108210,3,3,6 -1108211,207,197,404 -1108212,170,172,342 -1108213,173,194,367 -1108214,174,189,363 -1108215,238,285,523 -1108216,168,216,384 -1108217,114,104,218 -1108218,122,114,236 -1108219,172,176,348 -1108220,97,107,204 -1108221,239,229,468 -1108222,230,222,452 -1108223,92,92,184 -1108224,176,179,355 -1108225,107,108,215 -1108226,130,177,307 -1108227,156,190,346 -1108228,160,169,329 -1108229,159,160,319 -1108230,188,201,389 -1108231,169,172,341 -1108232,255,248,503 -1108233,308,314,622 -1108234,223,257,480 -1108235,170,145,315 -1108236,5,3,8 -1108237,209,256,465 -1108238,227,260,487 -1108239,112,106,218 -1108240,249,228,477 -1108241,221,233,454 -1108242,155,171,326 -1108243,220,214,434 -1108244,266,278,544 -1108245,208,202,410 -1108301,233,258,491 -1108302,99,112,211 -1108303,201,241,442 -1108304,125,148,273 -1108305,173,242,415 -1108306,91,99,190 -1108307,163,167,330 -1108308,156,134,290 -1108309,172,167,339 -1108310,194,182,376 -1108311,108,136,244 -1108312,148,144,292 -1108313,168,190,358 -1108314,210,206,416 -1108315,170,156,326 -1108316,141,196,337 -1108317,190,182,372 -1108401,130,141,271 -1108402,0,0,0 -1108403,199,273,472 -1108404,199,214,413 -1108405,120,126,246 -1108406,151,162,313 -1108407,187,223,410 -1108408,117,158,275 -1108409,248,257,505 -1108410,171,167,338 -1108411,99,78,177 -1108412,118,127,245 -1108413,226,245,471 -1108414,239,258,497 -1108415,223,224,447 -1108416,184,201,385 -1108417,153,160,313 -1108418,171,178,349 -1108419,188,199,387 -1108420,105,69,174 -1108421,186,223,409 -1108422,87,105,192 -1108423,100,99,199 -1108424,127,102,229 -1108425,138,138,276 -1108426,205,248,453 -1108427,252,284,536 -1108428,124,157,281 -1108429,177,202,379 -1108430,217,231,448 -1108431,251,280,531 -1108432,138,158,296 -1108433,288,304,592 -1108434,128,129,257 -1108435,180,191,371 -1108436,260,262,522 -1108437,333,358,691 -1108438,181,233,414 -1108439,259,285,544 -1108440,208,227,435 -1108441,131,200,331 -1108442,128,135,263 -1108443,226,244,470 -1108444,240,296,536 -1108501,0,0,0 -1108502,191,268,459 -1108503,8,11,19 -1108504,181,185,366 -1108505,175,198,373 -1108506,138,176,314 -1108507,193,206,399 -1108508,168,159,327 -1108509,118,100,218 -1108510,245,285,530 -1108511,131,174,305 -1108512,193,285,478 -1108513,137,169,306 -1108514,166,186,352 -1108515,131,132,263 -1108516,133,155,288 -1108517,214,245,459 -1108518,199,178,377 -1108519,167,146,313 -1108520,46,34,80 -1108521,12,7,19 -1108522,12,8,20 -1108523,127,127,254 -1108524,225,243,468 -1108525,177,191,368 -1108526,105,118,223 -1108527,259,290,549 -1108528,229,203,432 -1108529,240,277,517 -1108530,157,172,329 -1108531,201,219,420 -1108601,193,180,373 -1108602,115,124,239 -1108603,145,148,293 -1108604,119,128,247 -1108605,120,131,251 -1108606,89,66,155 -1108607,98,104,202 -1108608,167,153,320 -1108609,199,199,398 -1108610,111,102,213 -1108611,162,150,312 -1108612,132,126,258 -1108613,170,151,321 -1108701,104,89,193 -1108702,147,117,264 -1108703,178,145,323 -1108704,104,111,215 -1108705,99,108,207 -1108706,94,110,204 -1108707,117,120,237 -1108708,73,127,200 -1108709,217,236,453 -1108710,124,133,257 -1108711,130,113,243 -1108712,110,75,185 -1108713,158,147,305 -1108801,0,0,0 -1108802,314,308,622 -1108803,183,197,380 -1108804,124,147,271 -1108805,107,108,215 -1108806,191,205,396 -1108807,0,0,0 -1108808,234,199,433 -1108809,183,165,348 -1108810,147,164,311 -1108811,260,296,556 -1108812,239,269,508 -1108813,197,227,424 -1108814,179,179,358 -1108815,239,244,483 -1108816,191,179,370 -1108817,238,234,472 -1108818,285,251,536 -1108819,189,178,367 -1108820,322,330,652 -1108901,157,177,334 -1108902,276,310,586 -1108903,122,126,248 -1108904,206,229,435 -1108905,270,273,543 -1108906,154,142,296 -1108907,67,92,159 -1108908,336,366,702 -1108909,120,223,343 -1108910,140,157,297 -1108911,275,303,578 -1108912,208,229,437 -1108913,4,0,4 -1108914,278,280,558 -1108915,191,213,404 -1108916,155,167,322 -1108917,192,223,415 -1108918,131,152,283 -1108919,170,184,354 -1108920,106,96,202 -1108921,195,185,380 -1108922,137,140,277 -1108923,241,300,541 -1108924,234,279,513 -1108925,120,124,244 -1108926,179,224,403 -1108927,0,0,0 -1108928,172,205,377 -1108929,202,208,410 -1108930,180,166,346 -1108931,119,120,239 -1108932,219,211,430 -1108933,213,224,437 -1108934,217,214,431 -1108935,206,230,436 -1108936,31,23,54 -1108937,87,120,207 -1108938,11,7,18 -1108939,176,171,347 -1108940,168,162,330 -1108941,126,138,264 -1108942,0,8,8 -1108943,188,217,405 -1108944,172,223,395 -1108945,181,181,362 -1108946,279,294,573 -1108947,150,186,336 -1108948,244,229,473 -1108949,178,193,371 -1108950,201,198,399 -1108951,185,184,369 -1108952,67,62,129 -1108953,0,0,0 -1108954,172,175,347 -1108955,156,145,301 -1108956,147,165,312 -1109001,166,173,339 -1109002,0,0,0 -1109003,142,152,294 -1109004,146,130,276 -1109005,71,69,140 -1109006,202,193,395 -1109007,178,182,360 -1109008,195,222,417 -1109009,156,179,335 -1109010,167,179,346 -1109011,143,152,295 -1109012,99,123,222 -1109013,204,216,420 -1109014,150,139,289 -1109015,215,198,413 -1109101,286,340,626 -1109102,189,208,397 -1109103,170,186,356 -1109104,300,312,612 -1109105,207,223,430 -1109106,158,163,321 -1109107,217,231,448 -1109108,180,155,335 -1109109,186,204,390 -1109110,174,172,346 -1109111,228,224,452 -1109112,298,305,603 -1109113,177,164,341 -1109114,106,104,210 -1109115,119,112,231 -1109116,129,128,257 -1109117,0,0,0 -1109118,161,148,309 -1109119,452,451,903 -1109120,294,282,576 -1109121,151,139,290 -1109122,251,265,516 -1109123,231,236,467 -1109124,262,261,523 -1109125,148,147,295 -1109126,218,240,458 -1109127,230,208,438 -1109128,159,161,320 -1109201,283,286,569 -1109202,230,271,501 -1109203,108,87,195 -1109204,229,188,417 -1109205,120,90,210 -1109206,32,35,67 -1109207,224,238,462 -1109208,201,193,394 -1109209,176,152,328 -1109210,80,75,155 -1109211,158,162,320 -1109212,171,178,349 -1109213,159,146,305 -1109301,54,45,99 -1109302,189,188,377 -1109303,170,165,335 -1109304,262,236,498 -1109305,187,179,366 -1109306,149,135,284 -1109307,185,151,336 -1109308,131,116,247 -1109309,218,228,446 -1109310,208,219,427 -1109311,172,175,347 -1109312,85,70,155 -1109313,215,163,378 -1109314,243,185,428 -1109401,146,174,320 -1109402,118,131,249 -1109403,184,183,367 -1109404,132,115,247 -1109405,101,75,176 -1109406,161,143,304 -1109407,140,107,247 -1109408,122,131,253 -1109409,110,100,210 -1109410,202,210,412 -1109411,185,210,395 -1109412,190,189,379 -1109413,136,143,279 -1109414,213,204,417 -1109501,142,142,284 -1109502,111,114,225 -1109503,304,289,593 -1109504,164,152,316 -1109505,277,275,552 -1109506,106,114,220 -1109507,166,135,301 -1109508,290,318,608 -1109509,125,134,259 -1109510,182,146,328 -1109511,235,240,475 -1109512,133,140,273 -1109513,260,271,531 -1109514,118,117,235 -1109515,0,0,0 -1109601,232,128,360 -1109602,209,165,374 -1109603,65,59,124 -1109604,93,92,185 -1109605,65,50,115 -1109606,107,104,211 -1109607,106,101,207 -1109608,24,41,65 -1109609,51,42,93 -1109610,136,120,256 -1109611,181,191,372 -1109612,172,172,344 -1109613,119,118,237 -1109614,173,127,300 -1109615,257,225,482 -1109616,112,77,189 -1109617,95,121,216 -1109618,228,194,422 -1109619,184,122,306 -1109620,149,139,288 -1109621,199,174,373 -1109622,303,197,500 -1109623,208,208,416 -1109624,194,193,387 -1109701,136,142,278 -1109702,115,108,223 -1109703,165,151,316 -1109704,152,123,275 -1109705,184,205,389 -1109706,195,202,397 -1109707,157,156,313 -1109708,134,129,263 -1109709,147,163,310 -1109710,32,18,50 -1109711,100,112,212 -1109712,203,190,393 -1109713,215,230,445 -1109714,212,230,442 -1109715,166,164,330 -1109716,121,129,250 -1109717,182,194,376 -1109718,156,180,336 -1109719,253,241,494 -1109720,176,183,359 -1109721,172,220,392 -1109722,161,192,353 -1109723,197,211,408 -1109724,244,244,488 -1109725,213,214,427 -1109726,136,114,250 -1109727,97,118,215 -1109728,213,227,440 -1109729,171,210,381 -1109730,228,210,438 -1109731,108,115,223 -1109732,102,116,218 -1109733,180,167,347 -1109734,231,218,449 -1109735,176,234,410 -1109736,107,107,214 -1109737,191,208,399 -1109738,212,248,460 -1109739,165,175,340 -1109740,259,260,519 -1109741,161,182,343 -1109742,231,265,496 -1109743,165,201,366 -1109744,218,289,507 -1109745,219,228,447 -1109746,202,205,407 -1109747,254,255,509 -1109748,180,176,356 -1109749,178,170,348 -1109750,175,205,380 -1109751,228,227,455 -1109752,43,40,83 -1109801,58,45,103 -1109802,243,206,449 -1109803,122,94,216 -1109804,142,120,262 -1109805,98,81,179 -1109806,149,114,263 -1109807,228,180,408 -1109808,89,93,182 -1109809,81,95,176 -1109810,117,83,200 -1109811,105,140,245 -1109901,151,134,285 -1109902,240,231,471 -1109903,238,264,502 -1109904,219,298,517 -1109905,119,130,249 -1109906,105,138,243 -1109907,127,150,277 -1109908,127,134,261 -1109909,81,83,164 -1109910,153,143,296 -1109911,71,78,149 -1109912,130,123,253 -1109913,136,152,288 -1109914,124,130,254 -1109915,126,110,236 -1109916,307,294,601 -1109917,63,55,118 -1109918,84,78,162 -1109919,129,121,250 -1109920,196,199,395 -1109921,145,124,269 -1109922,84,65,149 -1109923,173,145,318 -1109924,161,124,285 -1109925,98,99,197 -1109926,152,150,302 -1109927,72,67,139 -1109928,185,188,373 -1109929,94,76,170 -1110001,233,232,465 -1110002,129,173,302 -1110003,127,163,290 -1110004,201,227,428 -1110005,243,261,504 -1110006,291,317,608 -1110007,181,210,391 -1110008,143,180,323 -1110009,189,242,431 -1110010,129,148,277 -1110011,225,213,438 -1110012,141,158,299 -1110013,165,168,333 -1110014,150,183,333 -1110015,269,323,592 -1110016,185,184,369 -1110017,310,286,596 -1110018,208,256,464 -1110019,146,150,296 -1110020,201,181,382 -1110021,84,80,164 -1110022,260,262,522 -1110023,150,155,305 -1110024,214,232,446 -1110025,169,226,395 -1110026,226,216,442 -1110027,237,226,463 -1110101,162,286,448 -1110102,248,281,529 -1110103,233,266,499 -1110104,164,197,361 -1110105,324,330,654 -1110106,132,130,262 -1110107,282,288,570 -1110108,175,194,369 -1110109,190,200,390 -1110110,180,177,357 -1110111,172,173,345 -1110112,161,172,333 -1110113,150,168,318 -1110114,171,174,345 -1110115,246,280,526 -1110116,115,141,256 -1110117,144,187,331 -1110118,261,299,560 -1110119,268,282,550 -1110120,235,270,505 -1110121,272,313,585 -1110122,106,158,264 -1110123,244,275,519 -1110124,165,190,355 -1110125,173,186,359 -1110126,141,152,293 -1110127,199,220,419 -1110128,217,255,472 -1110129,240,262,502 -1110130,207,232,439 -1110131,339,368,707 -1110132,198,249,447 -1110133,138,172,310 -1110134,270,291,561 -1110135,176,222,398 -1110136,220,213,433 -1110137,75,89,164 -1110201,228,205,433 -1110202,158,175,333 -1110203,137,142,279 -1110204,219,215,434 -1110205,258,277,535 -1110206,168,177,345 -1110207,172,190,362 -1110208,184,207,391 -1110209,149,170,319 -1110210,115,107,222 -1110211,198,166,364 -1110212,347,349,696 -1110213,242,272,514 -1110214,197,221,418 -1110215,368,384,752 -1110216,415,387,802 -1110217,82,82,164 -1110218,25,27,52 -1110301,129,124,253 -1110302,113,110,223 -1110303,188,166,354 -1110304,184,154,338 -1110305,134,128,262 -1110306,139,146,285 -1110307,202,195,397 -1110308,52,63,115 -1110309,121,126,247 -1110310,126,124,250 -1110311,273,252,525 -1110312,91,92,183 -1110313,128,121,249 -1110314,117,110,227 -1110315,97,74,171 -1110316,236,190,426 -1110317,244,226,470 -1110318,98,90,188 -1110401,223,268,491 -1110402,253,259,512 -1110403,111,113,224 -1110404,88,70,158 -1110405,144,140,284 -1110406,193,178,371 -1110407,147,135,282 -1110408,48,63,111 -1110409,188,202,390 -1110410,143,173,316 -1110411,129,211,340 -1110412,150,152,302 -1110413,152,156,308 -1110414,0,0,0 -1110415,43,43,86 -1110416,140,139,279 -1110501,142,149,291 -1110502,197,166,363 -1110503,182,171,353 -1110504,247,250,497 -1110505,251,250,501 -1110506,158,174,332 -1110507,147,177,324 -1110508,173,187,360 -1110509,271,311,582 -1110510,132,124,256 -1110511,80,99,179 -1110512,224,228,452 -1110513,239,264,503 -1110514,70,62,132 -1110515,348,310,658 -1110516,181,149,330 -1110517,214,185,399 -1110518,86,71,157 -1110601,32,23,55 -1110602,48,46,94 -1110603,37,20,57 -1110604,85,104,189 -1110605,228,243,471 -1110606,232,243,475 -1110607,247,235,482 -1110608,123,152,275 -1110609,259,227,486 -1110610,124,110,234 -1110611,195,174,369 -1110612,136,156,292 -1110613,63,70,133 -1110614,246,235,481 -1110615,237,207,444 -1110616,599,201,800 -1110617,224,230,454 -1110618,232,239,471 -1110619,184,204,388 -1110620,141,142,283 -1110621,193,231,424 -1110622,133,149,282 -1110623,272,296,568 -1110624,204,212,416 -1110701,272,261,533 -1110702,270,242,512 -1110703,183,181,364 -1110704,197,187,384 -1110705,173,155,328 -1110706,148,157,305 -1110707,190,179,369 -1110708,169,168,337 -1110709,131,153,284 -1110710,154,154,308 -1110711,166,163,329 -1110712,222,197,419 -1110713,144,134,278 -1110714,266,245,511 -1110715,232,220,452 -1110716,301,300,601 -1110717,110,110,220 -1110718,119,121,240 -1110719,108,102,210 -1110720,214,230,444 -1110721,389,403,792 -1110722,197,196,393 -1110723,322,329,651 -1110801,266,300,566 -1110802,382,415,797 -1110803,81,59,140 -1110804,466,0,466 -1110805,276,275,551 -1110806,151,154,305 -1110807,222,243,465 -1110808,215,193,408 -1110809,135,116,251 -1110810,205,201,406 -1110811,182,197,379 -1110812,206,260,466 -1110813,189,253,442 -1110814,77,115,192 -1110815,111,153,264 -1110816,213,224,437 -1110817,205,222,427 -1110818,125,200,325 -1110819,200,233,433 -1110820,217,232,449 -1110821,184,178,362 -1110822,297,263,560 -1110823,92,88,180 -1110824,91,94,185 -1110825,254,329,583 -1110826,96,88,184 -1110827,29,36,65 -1110828,0,0,0 -1110829,196,194,390 -1110830,321,341,662 -1110831,117,113,230 -1110832,170,210,380 -1110833,154,152,306 -1110834,212,220,432 -1110835,90,107,197 -1110836,291,314,605 -1110837,298,312,610 -1110838,158,154,312 -1110839,172,173,345 -1110840,175,148,323 -1110841,191,177,368 -1110842,190,176,366 -1110843,178,187,365 -1110844,172,193,365 -1110845,203,288,491 -1110846,178,164,342 -1110847,338,336,674 -1110848,113,98,211 -1110849,222,249,471 -1110850,201,235,436 -1110851,198,194,392 -1110852,112,135,247 -1110853,212,223,435 -1110901,143,165,308 -1110902,121,126,247 -1110903,181,163,344 -1110904,116,105,221 -1110905,171,185,356 -1110906,166,174,340 -1110907,130,113,243 -1110908,183,161,344 -1110909,247,244,491 -1110910,189,169,358 -1110911,119,120,239 -1110912,161,183,344 -1110913,132,143,275 -1110914,189,189,378 -1110915,135,151,286 -1110916,219,239,458 -1110917,111,140,251 -1110918,113,104,217 -1110919,124,130,254 -1110920,186,166,352 -1110921,81,77,158 -1110922,204,189,393 -1110923,101,84,185 -1111001,102,85,187 -1111002,272,273,545 -1111003,167,151,318 -1111004,110,121,231 -1111005,140,114,254 -1111006,122,153,275 -1111007,233,257,490 -1111008,120,127,247 -1111009,185,188,373 -1111010,124,135,259 -1111011,223,205,428 -1111012,162,178,340 -1111013,82,91,173 -1111014,166,139,305 -1111015,123,121,244 -1111016,107,110,217 -1111017,145,133,278 -1111018,116,112,228 -1111019,146,145,291 -1111020,166,163,329 -1111021,168,165,333 -1111022,164,152,316 -1111023,198,175,373 -1111024,141,142,283 -1111025,119,114,233 -1111026,115,120,235 -1111027,278,268,546 -1111101,258,251,509 -1111102,126,145,271 -1111103,124,157,281 -1111104,103,118,221 -1111105,190,218,408 -1111106,142,151,293 -1111107,117,105,222 -1111108,214,217,431 -1111109,137,160,297 -1111110,226,203,429 -1111111,275,289,564 -1111112,151,137,288 -1111113,277,286,563 -1111114,246,241,487 -1111115,290,253,543 -1111116,266,289,555 -1111117,156,161,317 -1111118,114,127,241 -1111119,235,220,455 -1111120,265,215,480 -1111121,156,160,316 -1111122,131,143,274 -1111123,189,200,389 -1111124,236,238,474 -1111125,206,226,432 -1111126,259,272,531 -1111127,228,267,495 -1111128,232,263,495 -1111129,186,198,384 -1111130,262,269,531 -1111131,176,165,341 -1111132,160,177,337 -1111133,169,189,358 -1111134,152,173,325 -1111135,155,140,295 -1111136,171,170,341 -1111137,0,0,0 -1111138,110,106,216 -1111139,0,0,0 -1111140,185,186,371 -1111141,136,142,278 -1111142,13,12,25 -1111143,113,102,215 -1111144,106,119,225 -1111145,86,94,180 -1111146,0,0,0 -1111147,269,248,517 -1111201,185,161,346 -1111202,168,165,333 -1111203,270,265,535 -1111204,153,160,313 -1111205,140,157,297 -1111206,152,164,316 -1111207,160,178,338 -1111208,110,131,241 -1111209,233,246,479 -1111210,393,182,575 -1111211,97,73,170 -1111212,193,184,377 -1111213,226,195,421 -1111214,223,237,460 -1111215,159,139,298 -1111216,153,163,316 -1111217,155,163,318 -1111218,168,157,325 -1111219,221,222,443 -1111220,68,47,115 -1111221,152,138,290 -1111222,187,209,396 -1111223,130,112,242 -1111224,209,186,395 -1111225,126,124,250 -1111226,151,149,300 -1111227,230,223,453 -1111228,117,115,232 -1111229,157,156,313 -1111230,247,240,487 -1111231,239,217,456 -1111232,150,160,310 -1111233,259,234,493 -1111234,166,189,355 -1111235,249,229,478 -1111236,326,331,657 -1111237,161,173,334 -1111238,159,145,304 -1111239,347,284,631 -1111240,136,181,317 -1111241,99,92,191 -1111242,218,209,427 -1111243,413,412,825 -1111301,135,126,261 -1111302,194,185,379 -1111303,113,68,181 -1111304,173,148,321 -1111305,183,175,358 -1111306,192,178,370 -1111307,84,78,162 -1111308,109,72,181 -1111309,202,194,396 -1111310,125,113,238 -1111311,197,200,397 -1111312,257,232,489 -1111313,150,157,307 -1111314,220,216,436 -1111315,147,138,285 -1111401,153,143,296 -1111402,262,271,533 -1111403,109,107,216 -1111404,269,233,502 -1111405,281,299,580 -1111406,76,58,134 -1111407,292,279,571 -1111408,208,192,400 -1111409,189,142,331 -1111410,268,251,519 -1111411,151,193,344 -1111412,155,190,345 -1111501,190,203,393 -1111502,204,212,416 -1111503,152,182,334 -1111504,117,121,238 -1111505,266,269,535 -1111506,218,274,492 -1111507,166,184,350 -1111508,241,251,492 -1111509,286,322,608 -1111510,135,146,281 -1111511,209,200,409 -1111512,193,198,391 -1111513,177,234,411 -1111514,267,303,570 -1111515,238,263,501 -1111516,212,204,416 -1111517,222,234,456 -1111518,155,136,291 -1111519,207,225,432 -1111520,244,259,503 -1111521,88,91,179 -1111522,395,401,796 -1111523,234,221,455 -1111524,153,132,285 -1111525,48,43,91 -1111526,284,320,604 -1111527,184,200,384 -1111528,181,200,381 -1111529,271,311,582 -1111530,193,198,391 -1111531,153,153,306 -1111532,175,191,366 -1111533,263,278,541 -1111534,160,178,338 -1111535,216,242,458 -1111536,112,203,315 -1111537,123,118,241 -1111538,256,275,531 -1111539,195,203,398 -1111540,331,377,708 -1111541,278,294,572 -1111542,165,184,349 -1111543,271,270,541 -1111544,183,200,383 -1111545,157,184,341 -1111546,232,218,450 -1111547,277,233,510 -1111548,161,162,323 -1111549,101,109,210 -1111550,184,177,361 -1111551,152,168,320 -1111552,198,217,415 -1111553,190,192,382 -1111554,265,262,527 -1111555,221,224,445 -1111556,260,244,504 -1111557,151,156,307 -1111558,155,148,303 -1111559,177,179,356 -1111560,159,163,322 -1111561,169,177,346 -1111562,0,0,0 -1111563,105,105,210 -1111564,24,17,41 -1111565,200,224,424 -1111601,240,234,474 -1111602,252,226,478 -1111603,138,131,269 -1111604,289,284,573 -1111605,232,226,458 -1111606,349,381,730 -1111607,82,93,175 -1111608,196,189,385 -1111609,122,137,259 -1111610,220,228,448 -1111611,128,127,255 -1111612,290,333,623 -1111613,151,174,325 -1111614,206,238,444 -1111615,204,204,408 -1111616,158,168,326 -1111701,121,129,250 -1111702,215,243,458 -1111703,303,288,591 -1111704,193,207,400 -1111705,191,206,397 -1111706,128,138,266 -1111707,78,96,174 -1111708,222,251,473 -1111709,130,134,264 -1111710,196,222,418 -1111711,254,289,543 -1111712,346,341,687 -1111713,264,275,539 -1111714,310,298,608 -1111715,138,157,295 -1111716,229,283,512 -1111717,220,217,437 -1111718,235,243,478 -1111719,278,298,576 -1111720,171,187,358 -1111721,199,193,392 -1111722,217,232,449 -1111723,279,292,571 -1111724,229,226,455 -1111725,215,231,446 -1111726,115,121,236 -1111727,118,107,225 -1111728,94,119,213 -1111729,312,362,674 -1111730,120,116,236 -1111731,226,242,468 -1111732,310,285,595 -1111733,214,239,453 -1111734,183,168,351 -1111735,150,157,307 -1111736,236,260,496 -1111737,222,228,450 -1111738,231,261,492 -1111739,355,381,736 -1111740,146,156,302 -1111741,175,179,354 -1111742,137,149,286 -1111743,174,184,358 -1111744,10,6,16 -1111801,278,285,563 -1111802,177,176,353 -1111803,151,152,303 -1111804,293,247,540 -1111805,255,244,499 -1111806,265,240,505 -1111807,195,219,414 -1111808,223,229,452 -1111809,164,167,331 -1111810,231,250,481 -1111811,166,158,324 -1111812,263,240,503 -1111813,118,104,222 -1111814,100,84,184 -1111815,0,0,0 -1111816,284,290,574 -1111817,169,152,321 -1111818,191,166,357 -1111819,246,265,511 -1111820,131,147,278 -1111821,222,254,476 -1111822,264,256,520 -1111901,138,138,276 -1111902,201,189,390 -1111903,269,261,530 -1111904,196,195,391 -1111905,278,286,564 -1111906,135,120,255 -1111907,56,55,111 -1111908,0,0,0 -1111909,84,91,175 -1111910,124,119,243 -1111911,131,138,269 -1111912,135,147,282 -1111913,205,222,427 -1111914,164,182,346 -1111915,248,251,499 -1111916,208,177,385 -1111917,0,0,0 -1111918,135,142,277 -1112001,5,7,12 -1112002,189,167,356 -1112003,155,143,298 -1112004,224,221,445 -1112005,3,3,6 -1112006,271,320,591 -1112007,121,120,241 -1112008,245,276,521 -1112009,274,255,529 -1112010,303,303,606 -1112011,138,125,263 -1112012,168,153,321 -1112013,209,184,393 -1112014,229,232,461 -1112015,103,108,211 -1112016,260,284,544 -1112017,0,0,0 -1112018,232,286,518 -1112101,285,291,576 -1112102,219,212,431 -1112103,157,163,320 -1112104,129,139,268 -1112105,141,155,296 -1112106,205,232,437 -1112107,111,107,218 -1112108,226,244,470 -1112109,198,227,425 -1112110,115,128,243 -1112111,0,0,0 -1112112,0,0,0 -1112113,5,0,5 -1112114,8,9,17 -1112115,204,250,454 -1112116,198,172,370 -1112117,35,13,48 -1112118,176,182,358 -1112119,202,263,465 -1112120,131,147,278 -1112121,48,30,78 -1112122,103,93,196 -1112123,207,276,483 -1112124,213,212,425 -1112125,190,206,396 -1112126,117,115,232 -1112127,222,233,455 -1112128,171,182,353 -1112129,129,136,265 -1112130,178,193,371 -1112131,282,256,538 -1112132,394,393,787 -1112133,170,176,346 -1112134,261,351,612 -1112135,30,33,63 -1112136,216,218,434 -1112137,187,212,399 -1112138,295,320,615 -1112139,164,177,341 -1112140,139,162,301 -1112141,234,230,464 -1112142,175,178,353 -1112143,234,271,505 -1112144,150,151,301 -1112145,268,240,508 -1112146,206,321,527 -1112147,145,136,281 -1112148,195,213,408 -1112149,227,213,440 -1112150,124,153,277 -1112151,203,255,458 -1112152,159,174,333 -1112153,172,172,344 -1112154,191,222,413 -1112155,156,175,331 -1112156,156,157,313 -1112201,328,350,678 -1112202,184,87,271 -1112203,0,0,0 -1112204,192,185,377 -1112205,200,220,420 -1112206,211,213,424 -1112207,225,267,492 -1112208,144,189,333 -1112209,198,206,404 -1112210,279,302,581 -1112211,166,176,342 -1112212,282,313,595 -1112213,118,108,226 -1112214,183,199,382 -1112215,221,245,466 -1112216,169,169,338 -1112217,233,244,477 -1112218,174,176,350 -1112219,225,227,452 -1112220,151,179,330 -1112221,266,282,548 -1112222,219,262,481 -1112223,244,280,524 -1112224,174,171,345 -1112225,215,219,434 -1112226,262,266,528 -1112227,288,312,600 -1112228,266,261,527 -1112229,281,315,596 -1112230,282,210,492 -1112231,117,118,235 -1112232,4,3,7 -1112233,99,108,207 -1112234,148,130,278 -1112301,104,104,208 -1112302,149,136,285 -1112303,218,207,425 -1112304,214,202,416 -1112305,259,264,523 -1112306,97,89,186 -1112307,122,112,234 -1112308,214,224,438 -1112309,152,161,313 -1112310,294,310,604 -1112311,177,182,359 -1112312,160,168,328 -1112313,200,217,417 -1112314,151,173,324 -1112315,117,126,243 -1112401,120,123,243 -1112402,143,148,291 -1112403,168,176,344 -1112404,178,199,377 -1112405,254,281,535 -1112406,154,162,316 -1112407,95,118,213 -1112408,178,139,317 -1112409,124,125,249 -1112410,207,194,401 -1112411,239,227,466 -1112412,113,117,230 -1112413,224,198,422 -1112414,50,45,95 -1112415,0,0,0 -1112416,0,0,0 -1112501,95,78,173 -1112502,214,199,413 -1112503,146,149,295 -1112504,162,168,330 -1112505,0,0,0 -1112506,267,258,525 -1112507,291,290,581 -1112508,0,0,0 -1112509,147,19,166 -1112510,145,112,257 -1112511,212,224,436 -1112512,158,161,319 -1112513,259,273,532 -1112514,49,58,107 -1112515,197,179,376 -1112516,192,167,359 -1112517,152,198,350 -1112518,233,241,474 -1112519,185,178,363 -1112520,166,154,320 -1112521,251,282,533 -1112522,179,184,363 -1112523,166,178,344 -1112524,256,269,525 -1112525,239,246,485 -1112526,155,155,310 -1112527,277,308,585 -1112528,230,246,476 -1112529,176,172,348 -1112530,273,280,553 -1112531,146,148,294 -1112532,129,122,251 -1112533,0,0,0 -1112534,101,103,204 -1112535,168,160,328 -1112536,114,136,250 -1112537,200,159,359 -1112601,86,71,157 -1112602,332,45,377 -1112603,192,182,374 -1112604,186,195,381 -1112605,157,153,310 -1112606,130,107,237 -1112607,162,173,335 -1112608,105,85,190 -1112609,230,211,441 -1112610,247,252,499 -1112611,114,112,226 -1112612,143,141,284 -1112613,223,216,439 -1112614,225,221,446 -1112615,71,54,125 -1112616,110,109,219 -1112617,277,254,531 -1112618,172,152,324 -1112619,88,102,190 -1112620,226,190,416 -1112621,246,252,498 -1112622,251,248,499 -1112623,221,208,429 -1112624,187,173,360 -1112625,183,156,339 -1112626,122,137,259 -1112627,181,196,377 -1112628,118,90,208 -1112629,184,183,367 -1112630,287,270,557 -1112631,325,364,689 -1112632,93,118,211 -1112633,119,129,248 -1112634,148,108,256 -1112635,0,0,0 -1112701,211,224,435 -1112702,164,156,320 -1112703,203,195,398 -1112704,0,0,0 -1112705,105,90,195 -1112706,241,193,434 -1112707,111,112,223 -1112708,171,158,329 -1112709,200,201,401 -1112710,261,260,521 -1112711,152,128,280 -1112712,230,230,460 -1112801,219,283,502 -1112802,232,247,479 -1112803,183,195,378 -1112804,268,279,547 -1112805,199,206,405 -1112806,200,201,401 -1112807,128,129,257 -1112808,183,182,365 -1112809,248,286,534 -1112810,301,297,598 -1112811,276,260,536 -1112812,224,232,456 -1112813,205,231,436 -1112901,203,193,396 -1112902,260,270,530 -1112903,265,237,502 -1112904,219,193,412 -1112905,114,84,198 -1112906,162,155,317 -1112907,153,145,298 -1112908,160,163,323 -1112909,137,150,287 -1112910,161,162,323 -1112911,93,95,188 -1112912,149,126,275 -1112913,198,172,370 -1112914,128,129,257 -1112915,140,139,279 -1112916,223,214,437 -1112917,183,167,350 -1112918,140,133,273 -1112919,114,99,213 -1112920,131,125,256 -1112921,174,192,366 -1112922,222,257,479 -1112923,290,258,548 -1113001,164,187,351 -1113002,279,275,554 -1113003,151,188,339 -1113004,242,256,498 -1113005,275,315,590 -1113006,315,311,626 -1113007,240,233,473 -1113008,276,291,567 -1113009,154,175,329 -1113010,270,282,552 -1113011,150,164,314 -1113012,178,178,356 -1113013,233,233,466 -1113014,230,254,484 -1113015,210,211,421 -1113016,230,214,444 -1113017,225,222,447 -1113018,11,16,27 -1113019,271,201,472 -1113020,203,118,321 -1113021,266,282,548 -1113022,210,204,414 -1113023,175,175,350 -1113024,220,240,460 -1113025,210,211,421 -1113026,196,181,377 -1113027,201,182,383 -1113028,245,240,485 -1113029,201,201,402 -1113030,221,207,428 -1113031,274,256,530 -1113032,143,116,259 -1113033,226,235,461 -1113034,178,171,349 -1113035,5,8,13 -1113036,174,162,336 -1113037,0,0,0 -1113038,224,232,456 -1113039,5,4,9 -1113040,127,123,250 -1113041,318,305,623 -1113042,200,196,396 -1113043,260,317,577 -1113044,212,253,465 -1113045,142,131,273 -1113046,275,300,575 -1113047,148,123,271 -1113048,270,282,552 -1113049,274,301,575 -1113050,231,209,440 -1113051,0,0,0 -1113052,146,147,293 -1113053,266,268,534 -1113054,113,113,226 -1113055,248,243,491 -1113056,64,58,122 -1113057,486,455,941 -1113058,114,115,229 -1113059,225,247,472 -1113060,169,161,330 -1113061,221,242,463 -1113062,242,191,433 -1113063,299,300,599 -1113064,136,122,258 -1113065,207,199,406 -1113066,150,229,379 -1113067,89,85,174 -1113101,143,164,307 -1113102,183,156,339 -1113103,162,183,345 -1113104,131,145,276 -1113105,269,271,540 -1113106,152,176,328 -1113107,191,182,373 -1113108,160,166,326 -1113109,266,281,547 -1113110,110,112,222 -1113111,165,168,333 -1113112,3,3,6 -1113113,173,179,352 -1113114,346,347,693 -1113115,187,206,393 -1113116,99,115,214 -1113117,261,309,570 -1113118,273,297,570 -1113119,225,225,450 -1113120,213,224,437 -1113121,118,99,217 -1113122,126,128,254 -1113123,165,159,324 -1113124,196,201,397 -1113125,123,115,238 -1113126,240,253,493 -1113127,225,224,449 -1113128,263,299,562 -1113129,222,202,424 -1113130,154,150,304 -1113131,203,208,411 -1113132,161,148,309 -1113133,122,131,253 -1113134,224,306,530 -1113135,141,145,286 -1113136,137,118,255 -1113137,317,287,604 -1113138,247,366,613 -1113139,240,331,571 -1113140,162,185,347 -1113141,108,113,221 -1113142,106,103,209 -1113143,258,256,514 -1113144,196,200,396 -1113145,155,145,300 -1113146,229,220,449 -1113147,211,206,417 -1113148,231,242,473 -1113149,167,182,349 -1113150,289,305,594 -1113151,131,139,270 -1113152,241,257,498 -1113153,113,118,231 -1113154,212,248,460 -1113155,209,233,442 -1113156,107,115,222 -1113157,266,258,524 -1113158,245,237,482 -1113201,171,168,339 -1113202,165,167,332 -1113203,173,142,315 -1113204,276,280,556 -1113205,182,187,369 -1113206,194,203,397 -1113207,173,186,359 -1113208,93,91,184 -1113209,96,100,196 -1113210,165,173,338 -1113211,298,310,608 -1113212,142,130,272 -1113213,228,227,455 -1113214,239,259,498 -1113215,299,333,632 -1113216,189,187,376 -1113217,262,293,555 -1113218,148,131,279 -1113219,177,179,356 -1113301,24,4,28 -1113401,0,0,0 -1113402,209,215,424 -1113403,209,217,426 -1113404,224,226,450 -1113405,112,95,207 -1113406,255,278,533 -1113407,156,162,318 -1113408,146,148,294 -1113409,110,117,227 -1113410,150,146,296 -1113411,153,150,303 -1113412,123,128,251 -1113413,136,124,260 -1113414,182,173,355 -1113415,243,231,474 -1113416,172,164,336 -1113417,162,289,451 -1113418,157,140,297 -1113419,212,238,450 -1113420,258,256,514 -1113421,216,192,408 -1113422,283,272,555 -1113423,170,189,359 -1113424,299,260,559 -1113425,123,105,228 -1113426,179,188,367 -1113427,86,96,182 -1113428,112,113,225 -1113429,196,212,408 -1113430,165,198,363 -1113431,148,138,286 -1113432,159,155,314 -1113433,164,145,309 -1113434,225,238,463 -1113435,192,263,455 -1113436,167,165,332 -1113437,100,125,225 -1113438,187,183,370 -1113439,153,283,436 -1113440,155,173,328 -1113441,6,0,6 -1113442,258,263,521 -1113443,145,137,282 -1113444,134,140,274 -1113445,100,110,210 -1113501,6,6,12 -1113601,216,247,463 -1113602,179,181,360 -1113603,229,259,488 -1113604,191,209,400 -1113605,205,186,391 -1113606,95,80,175 -1113607,230,185,415 -1113608,71,86,157 -1113609,212,232,444 -1113610,294,300,594 -1113611,172,171,343 -1113612,192,211,403 -1113613,230,279,509 -1113614,242,253,495 -1113615,323,329,652 -1113616,0,0,0 -1113617,218,267,485 -1113618,211,212,423 -1113619,226,218,444 -1113620,183,193,376 -1113621,202,226,428 -1113622,277,253,530 -1113623,196,210,406 -1113624,149,172,321 -1113625,238,259,497 -1113626,109,119,228 -1113627,106,116,222 -1113628,141,128,269 -1113629,175,185,360 -1113630,180,179,359 -1113631,108,120,228 -1113632,163,139,302 -1113633,283,326,609 -1113634,153,157,310 -1113635,269,258,527 -1113701,110,140,250 -1113702,276,310,586 -1113703,4,0,4 -1113704,147,150,297 -1113705,170,142,312 -1113706,222,252,474 -1113707,142,140,282 -1113708,139,129,268 -1113709,146,160,306 -1113710,204,289,493 -1113711,235,219,454 -1113712,188,202,390 -1113713,272,275,547 -1113714,238,272,510 -1113715,224,204,428 -1113716,209,213,422 -1113717,148,156,304 -1113718,162,181,343 -1113719,3,3,6 -1113720,0,0,0 -1113721,9,6,15 -1113722,145,161,306 -1113801,174,163,337 -1113802,138,157,295 -1113803,143,134,277 -1113804,165,160,325 -1113805,198,286,484 -1113806,161,181,342 -1113807,159,168,327 -1113808,144,142,286 -1113809,274,261,535 -1113810,157,159,316 -1113811,240,255,495 -1113812,198,214,412 -1113813,184,200,384 -1113814,147,145,292 -1113815,225,246,471 -1113816,132,126,258 -1113817,126,117,243 -1113818,68,83,151 -1113819,45,37,82 -1113820,210,208,418 -1113821,217,215,432 -1113901,13,17,30 -1113902,3,3,6 -1113903,100,111,211 -1113904,243,261,504 -1113905,249,231,480 -1113906,146,167,313 -1113907,184,176,360 -1113908,260,287,547 -1113909,206,199,405 -1113910,148,157,305 -1113911,0,0,0 -1113912,240,230,470 -1113913,149,141,290 -1113914,157,182,339 -1113915,200,180,380 -1113916,178,204,382 -1113917,115,111,226 -1113918,0,0,0 -1113919,247,247,494 -1114001,243,262,505 -1114002,80,76,156 -1114003,200,176,376 -1114004,149,169,318 -1114005,102,110,212 -1114006,273,268,541 -1114007,294,321,615 -1114008,105,114,219 -1114009,273,284,557 -1114010,138,145,283 -1114011,197,200,397 -1114012,243,254,497 -1114013,178,183,361 -1114014,125,241,366 -1114015,120,108,228 -1114016,87,120,207 -1114017,202,214,416 -1114018,142,142,284 -1114019,144,116,260 -1114020,113,119,232 -1114101,245,258,503 -1114102,0,0,0 -1114103,74,80,154 -1114104,212,217,429 -1114105,111,113,224 -1114106,180,197,377 -1114107,169,167,336 -1114108,204,213,417 -1114109,443,466,909 -1114110,202,201,403 -1114111,0,0,0 -1114112,305,322,627 -1114113,178,193,371 -1114114,190,198,388 -1114115,161,139,300 -1114116,274,253,527 -1114117,203,230,433 -1114118,137,142,279 -1114119,246,254,500 -1114120,224,212,436 -1114121,229,226,455 -1114122,285,325,610 -1114123,279,276,555 -1114124,129,136,265 -1114125,343,351,694 -1114126,86,96,182 -1114127,195,177,372 -1114128,304,313,617 -1114129,248,245,493 -1114130,315,301,616 -1114131,214,231,445 -1114132,243,282,525 -1114201,260,272,532 -1114202,175,213,388 -1114203,11,9,20 -1114204,165,178,343 -1114205,196,212,408 -1114206,183,212,395 -1114207,181,198,379 -1114208,224,249,473 -1114209,150,170,320 -1114210,103,123,226 -1114211,226,224,450 -1114212,188,195,383 -1114213,173,167,340 -1114214,193,186,379 -1114215,142,157,299 -1114216,179,194,373 -1114217,210,186,396 -1114218,262,256,518 -1114219,133,149,282 -1114220,180,208,388 -1114221,22,11,33 -1114222,269,269,538 -1114223,160,157,317 -1114224,183,199,382 -1114225,251,255,506 -1114226,193,225,418 -1114301,134,166,300 -1114302,276,267,543 -1114303,192,204,396 -1114304,168,184,352 -1114305,116,136,252 -1114306,192,210,402 -1114307,179,199,378 -1114308,149,160,309 -1114309,156,145,301 -1114310,227,229,456 -1114311,207,236,443 -1114312,0,0,0 -1114313,184,185,369 -1114314,171,188,359 -1114315,225,253,478 -1114316,178,168,346 -1114317,306,318,624 -1114318,179,190,369 -1114319,241,228,469 -1114320,178,206,384 -1114321,305,298,603 -1114322,145,143,288 -1114323,173,200,373 -1114324,127,135,262 -1114325,263,288,551 -1114326,238,257,495 -1114327,142,132,274 -1114328,161,154,315 -1114329,119,142,261 -1114330,162,146,308 -1114331,195,199,394 -1114332,152,189,341 -1114333,213,230,443 -1114334,303,255,558 -1114335,263,244,507 -1114336,229,239,468 -1114337,201,205,406 -1114338,147,165,312 -1114339,207,223,430 -1114340,132,142,274 -1114341,164,166,330 -1114342,177,195,372 -1114343,172,163,335 -1114344,278,252,530 -1114345,242,276,518 -1114346,266,273,539 -1114347,258,245,503 -1114348,195,232,427 -1114349,293,296,589 -1114350,253,271,524 -1114401,215,214,429 -1114402,306,290,596 -1114403,122,112,234 -1114404,222,238,460 -1114405,198,197,395 -1114406,178,169,347 -1114407,259,257,516 -1114408,144,173,317 -1114409,119,136,255 -1114410,166,166,332 -1114411,197,190,387 -1114412,115,103,218 -1114413,164,161,325 -1114414,225,254,479 -1114415,67,98,165 -1114416,123,115,238 -1114417,296,318,614 -1114418,240,217,457 -1114419,128,124,252 -1114420,61,63,124 -1114421,203,232,435 -1114422,236,256,492 -1114423,306,320,626 -1114424,246,234,480 -1114425,259,268,527 -1114426,277,277,554 -1114427,207,244,451 -1114428,262,310,572 -1114429,220,216,436 -1114430,198,229,427 -1114431,276,315,591 -1114432,198,208,406 -1114433,290,325,615 -1114434,216,218,434 -1114435,266,250,516 -1114436,304,271,575 -1114437,247,227,474 -1114438,129,118,247 -1114439,165,170,335 -1114440,185,190,375 -1114441,184,176,360 -1114442,186,198,384 -1114443,211,215,426 -1114444,302,373,675 -1114445,280,279,559 -1114446,172,163,335 -1114447,176,171,347 -1114448,105,112,217 -1114501,140,159,299 -1114502,252,282,534 -1114503,202,223,425 -1114504,178,172,350 -1114505,265,279,544 -1114506,0,0,0 -1114507,170,164,334 -1114508,164,181,345 -1114509,201,193,394 -1114510,221,245,466 -1114511,164,185,349 -1114512,192,197,389 -1114513,103,108,211 -1114514,155,147,302 -1114515,179,186,365 -1114516,305,329,634 -1114517,194,210,404 -1114518,270,246,516 -1114519,197,160,357 -1114520,221,253,474 -1114521,143,163,306 -1114522,164,192,356 -1114523,249,270,519 -1114524,144,146,290 -1114525,151,155,306 -1114526,197,189,386 -1114527,212,239,451 -1114528,263,312,575 -1114529,241,261,502 -1114530,46,60,106 -1114531,173,200,373 -1114532,144,162,306 -1114533,249,229,478 -1114534,227,232,459 -1114535,253,286,539 -1114536,125,96,221 -1114537,133,159,292 -1114538,216,221,437 -1114539,233,270,503 -1114601,146,137,283 -1114602,211,220,431 -1114603,284,253,537 -1114604,178,177,355 -1114605,246,248,494 -1114606,211,242,453 -1114607,194,180,374 -1114608,189,176,365 -1114609,326,314,640 -1114610,252,258,510 -1114611,238,237,475 -1114612,194,197,391 -1114613,140,143,283 -1114614,351,345,696 -1114615,232,213,445 -1114616,241,219,460 -1114617,236,190,426 -1114618,252,211,463 -1114619,103,106,209 -1114620,123,139,262 -1114621,123,121,244 -1114622,252,264,516 -1114623,186,187,373 -1114624,193,205,398 -1114625,223,231,454 -1114626,307,336,643 -1114627,277,314,591 -1114628,197,200,397 -1114629,209,202,411 -1114630,289,285,574 -1114631,183,189,372 -1114632,173,192,365 -1114633,143,178,321 -1114634,233,241,474 -1114635,304,287,591 -1114636,194,237,431 -1114637,301,284,585 -1114638,25,22,47 -1114639,151,97,248 -1114640,278,267,545 -1114641,184,188,372 -1114642,188,202,390 -1114643,200,231,431 -1114644,206,191,397 -1114645,280,311,591 -1114646,276,274,550 -1114701,289,282,571 -1114702,272,261,533 -1114703,148,155,303 -1114704,216,226,442 -1114705,230,256,486 -1114706,159,124,283 -1114707,0,0,0 -1114708,228,238,466 -1114709,166,147,313 -1114710,4,4,8 -1114711,215,241,456 -1114712,236,222,458 -1114713,309,308,617 -1114714,115,100,215 -1114715,96,94,190 -1114716,154,106,260 -1114717,38,37,75 -1114718,162,141,303 -1114719,139,136,275 -1114720,192,193,385 -1114721,207,208,415 -1114722,227,244,471 -1114723,236,223,459 -1114724,219,259,478 -1114801,210,201,411 -1114802,220,195,415 -1114803,153,137,290 -1114804,250,252,502 -1114805,157,166,323 -1114806,0,0,0 -1114807,167,180,347 -1114808,229,244,473 -1114809,147,166,313 -1114810,217,230,447 -1114811,240,224,464 -1114812,0,0,0 -1114813,188,202,390 -1114814,84,112,196 -1114815,135,142,277 -1114816,141,140,281 -1114817,0,0,0 -1114818,113,84,197 -1114819,124,131,255 -1114820,150,142,292 -1114821,197,215,412 -1114822,227,253,480 -1114823,143,136,279 -1114824,239,259,498 -1114825,199,260,459 -1114826,333,339,672 -1114827,238,262,500 -1114828,179,170,349 -1114829,153,134,287 -1114830,160,191,351 -1114831,209,212,421 -1114901,0,0,0 -1114902,252,257,509 -1114903,207,197,404 -1114904,106,87,193 -1114905,249,256,505 -1114906,90,98,188 -1114907,214,216,430 -1114908,334,351,685 -1114909,217,233,450 -1114910,151,158,309 -1114911,291,281,572 -1114912,228,226,454 -1114913,161,142,303 -1114914,177,167,344 -1114915,185,179,364 -1114916,271,250,521 -1114917,336,337,673 -1114918,149,149,298 -1114919,305,294,599 -1114920,179,186,365 -1114921,391,364,755 -1114922,273,255,528 -1114923,332,294,626 -1114924,256,248,504 -1114925,263,270,533 -1114926,349,312,661 -1114927,272,302,574 -1114928,301,274,575 -1114929,365,318,683 -1114930,279,253,532 -1114931,179,158,337 -1114932,360,337,697 -1114933,186,168,354 -1114934,319,290,609 -1114935,224,208,432 -1114936,196,172,368 -1114937,276,215,491 -1114938,248,225,473 -1114939,272,278,550 -1114940,6,3,9 -1114941,263,230,493 -1114942,150,141,291 -1114943,201,207,408 -1114944,97,107,204 -1114945,308,238,546 -1114946,241,213,454 -1114947,197,189,386 -1114948,227,241,468 -1114949,211,204,415 -1114950,196,203,399 -1114951,245,199,444 -1114952,262,248,510 -1114953,380,370,750 -1114954,241,223,464 -1114955,165,155,320 -1114956,543,517,1060 -1114957,171,197,368 -1114958,139,159,298 -1114959,168,165,333 -1114960,173,203,376 -1114961,197,216,413 -1115001,164,176,340 -1115002,262,267,529 -1115003,315,281,596 -1115004,236,243,479 -1115005,216,228,444 -1115006,304,290,594 -1115007,185,208,393 -1115008,216,253,469 -1115009,148,188,336 -1115010,167,185,352 -1115011,205,213,418 -1115012,102,119,221 -1115013,102,106,208 -1115014,303,340,643 -1115015,235,237,472 -1115016,120,140,260 -1115017,289,288,577 -1115018,139,144,283 -1115019,239,262,501 -1115020,164,180,344 -1115021,215,263,478 -1115022,322,356,678 -1115023,195,208,403 -1115024,212,340,552 -1115025,112,127,239 -1115026,176,186,362 -1115027,334,351,685 -1115028,102,99,201 -1115029,221,246,467 -1115030,246,283,529 -1115031,277,281,558 -1115032,160,168,328 -1115033,286,293,579 -1115034,149,142,291 -1115035,205,200,405 -1115036,332,359,691 -1115037,126,128,254 -1115038,165,164,329 -1115039,152,154,306 -1115040,292,337,629 -1115041,237,211,448 -1115042,217,208,425 -1115043,10,6,16 -1115044,145,161,306 -1115101,327,324,651 -1115102,88,87,175 -1115103,142,137,279 -1115104,161,161,322 -1115105,189,161,350 -1115106,104,92,196 -1115107,105,102,207 -1115108,203,203,406 -1115109,142,128,270 -1115110,203,195,398 -1115111,340,360,700 -1115112,228,234,462 -1115113,0,0,0 -1115114,162,150,312 -1115201,241,280,521 -1115202,159,186,345 -1115203,191,176,367 -1115204,266,283,549 -1115205,240,247,487 -1115206,233,243,476 -1115207,155,157,312 -1115208,263,262,525 -1115209,137,135,272 -1115210,226,238,464 -1115211,191,228,419 -1115212,166,223,389 -1115213,167,195,362 -1115214,268,304,572 -1115215,5,6,11 -1115216,218,218,436 -1115217,166,161,327 -1115218,312,333,645 -1115219,203,230,433 -1115220,124,156,280 -1115221,255,298,553 -1115222,144,150,294 -1115223,0,0,0 -1115224,58,62,120 -1115225,196,196,392 -1115226,143,154,297 -1115227,103,142,245 -1115228,206,209,415 -1115229,177,193,370 -1115230,204,216,420 -1115231,246,258,504 -1115232,169,186,355 -1115233,295,292,587 -1115234,115,220,335 -1115235,184,196,380 -1115236,126,115,241 -1115301,173,151,324 -1115302,91,112,203 -1115303,318,319,637 -1115304,255,240,495 -1115305,102,104,206 -1115306,127,110,237 -1115307,265,246,511 -1115308,142,112,254 -1115309,106,110,216 -1115310,121,97,218 -1115311,214,203,417 -1115312,132,124,256 -1115313,216,194,410 -1115314,113,118,231 -1115315,216,218,434 -1115316,282,284,566 -1115401,213,313,526 -1115402,0,0,0 -1115403,0,0,0 -1115404,97,136,233 -1115405,280,284,564 -1115406,173,154,327 -1115407,109,117,226 -1115408,216,223,439 -1115409,151,189,340 -1115410,155,176,331 -1115411,148,204,352 -1115412,173,195,368 -1115413,301,302,603 -1115414,197,204,401 -1115415,162,146,308 -1115416,151,175,326 -1115417,8,5,13 -1115418,116,125,241 -1115419,104,105,209 -1115501,266,265,531 -1115502,168,180,348 -1115503,102,100,202 -1115504,210,210,420 -1115505,123,151,274 -1115506,170,194,364 -1115507,134,152,286 -1115508,159,183,342 -1115509,169,154,323 -1115510,196,213,409 -1115511,231,251,482 -1115512,245,262,507 -1115513,105,137,242 -1115514,204,254,458 -1115515,169,194,363 -1115516,146,184,330 -1115517,232,286,518 -1115518,138,157,295 -1115519,185,267,452 -1115520,124,129,253 -1115521,251,293,544 -1115522,272,280,552 -1115523,130,141,271 -1115524,144,184,328 -1115525,135,151,286 -1115526,190,224,414 -1115527,176,218,394 -1115528,148,167,315 -1115529,180,190,370 -1115530,176,160,336 -1115531,136,125,261 -1115532,301,272,573 -1115533,115,97,212 -1115534,141,130,271 -1115535,450,27,477 -1115536,123,135,258 -1115537,72,59,131 -1115538,205,184,389 -1115539,47,39,86 -1115540,204,230,434 -1115601,142,131,273 -1115602,182,167,349 -1115603,180,146,326 -1115604,161,157,318 -1115605,155,150,305 -1115606,149,153,302 -1115607,141,123,264 -1115608,161,143,304 -1115609,197,162,359 -1115610,137,127,264 -1115611,185,202,387 -1115612,198,193,391 -1115613,153,126,279 -1115614,184,166,350 -1115615,204,223,427 -1115616,98,106,204 -1115617,101,107,208 -1115618,106,88,194 -1115619,151,130,281 -1115620,244,222,466 -1115621,123,103,226 -1115622,188,184,372 -1115623,177,155,332 -1115624,294,260,554 -1115625,145,133,278 -1115626,142,119,261 -1115627,160,148,308 -1115628,191,165,356 -1115701,265,271,536 -1115702,120,120,240 -1115703,104,99,203 -1115704,181,214,395 -1115705,123,131,254 -1115706,151,176,327 -1115707,104,97,201 -1115708,111,121,232 -1115709,202,186,388 -1115710,132,189,321 -1115711,170,227,397 -1115712,107,129,236 -1115713,151,169,320 -1115714,202,206,408 -1115715,79,96,175 -1115801,219,220,439 -1115802,236,252,488 -1115803,130,162,292 -1115804,243,295,538 -1115805,250,292,542 -1115806,175,209,384 -1115807,0,0,0 -1115808,0,0,0 -1115809,105,144,249 -1115810,148,155,303 -1115811,206,235,441 -1115812,3,0,3 -1115813,136,156,292 -1115814,282,313,595 -1115815,157,161,318 -1115816,252,271,523 -1115817,183,225,408 -1115818,248,249,497 -1115819,193,158,351 -1115901,227,200,427 -1115902,115,148,263 -1115903,221,244,465 -1115904,53,54,107 -1115905,424,407,831 -1115906,203,181,384 -1115907,120,100,220 -1115908,179,169,348 -1115909,263,259,522 -1115910,130,120,250 -1115911,193,184,377 -1115912,149,132,281 -1115913,67,82,149 -1115914,161,161,322 -1115915,172,169,341 -1115916,224,164,388 -1115917,159,151,310 -1115918,163,168,331 -1115919,48,55,103 -1115920,221,254,475 -1115921,113,118,231 -1115922,108,99,207 -1116001,237,263,500 -1116002,145,154,299 -1116003,125,125,250 -1116004,115,174,289 -1116005,163,171,334 -1116006,198,204,402 -1116007,182,171,353 -1116008,78,84,162 -1116009,180,166,346 -1116010,0,0,0 -1116011,60,76,136 -1116012,0,0,0 -1116013,226,222,448 -1116014,166,162,328 -1116015,183,184,367 -1116016,121,132,253 -1116017,242,245,487 -1116101,175,185,360 -1116201,215,204,419 -1116202,107,96,203 -1116203,172,170,342 -1116204,291,323,614 -1116205,109,112,221 -1116206,227,240,467 -1116207,130,151,281 -1116208,140,143,283 -1116209,118,108,226 -1116210,279,276,555 -1116211,165,185,350 -1116212,96,104,200 -1116213,108,165,273 -1116214,116,134,250 -1116215,157,154,311 -1116216,72,54,126 -1116217,168,176,344 -1116218,223,218,441 -1116219,140,131,271 -1116220,177,183,360 -1116221,108,106,214 -1116222,118,122,240 -1116223,150,153,303 -1116224,173,158,331 -1116225,144,134,278 -1116226,8,8,16 -1116227,120,116,236 -1116228,135,131,266 -1116229,243,288,531 -1116230,219,221,440 -1116231,140,147,287 -1116232,256,242,498 -1116233,6,6,12 -1116234,127,152,279 -1116235,120,124,244 -1116236,143,166,309 -1116237,262,265,527 -1116238,64,57,121 -1116239,181,187,368 -1116240,0,0,0 -1116241,146,135,281 -1116242,225,196,421 -1116243,210,225,435 -1116244,178,198,376 -1116245,106,103,209 -1116246,149,147,296 -1116247,222,307,529 -1116248,176,215,391 -1116249,263,344,607 -1116250,0,0,0 -1116251,84,81,165 -1116301,189,199,388 -1116302,144,190,334 -1116303,249,332,581 -1116304,221,241,462 -1116305,206,223,429 -1116306,128,161,289 -1116307,319,423,742 -1116308,266,269,535 -1116309,183,244,427 -1116310,157,171,328 -1116311,273,295,568 -1116312,227,236,463 -1116313,175,171,346 -1116314,125,144,269 -1116315,258,255,513 -1116316,191,171,362 -1116317,147,206,353 -1116318,200,208,408 -1116319,0,0,0 -1116320,186,280,466 -1116321,161,168,329 -1116322,161,158,319 -1116323,129,168,297 -1116324,138,155,293 -1116325,0,0,0 -1116326,236,239,475 -1116327,197,222,419 -1116328,138,142,280 -1116329,142,148,290 -1116330,122,141,263 -1116331,129,140,269 -1116332,174,177,351 -1116333,150,165,315 -1116334,163,182,345 -1116335,208,183,391 -1116336,159,183,342 -1116337,193,209,402 -1116338,208,199,407 -1116339,222,235,457 -1116340,116,144,260 -1116341,318,347,665 -1116342,269,258,527 -1116343,183,212,395 -1116344,108,112,220 -1116345,174,191,365 -1116346,282,283,565 -1116347,133,147,280 -1116348,145,166,311 -1116349,234,224,458 -1116350,273,307,580 -1116351,186,191,377 -1116352,211,214,425 -1116353,158,165,323 -1116354,251,253,504 -1116355,191,203,394 -1116356,118,150,268 -1116357,209,222,431 -1116358,240,239,479 -1116359,268,282,550 -1116360,195,232,427 -1116361,243,240,483 -1116362,129,255,384 -1116363,289,312,601 -1116364,269,267,536 -1116365,182,184,366 -1116366,186,197,383 -1116367,297,357,654 -1116401,191,139,330 -1116402,232,257,489 -1116403,24,18,42 -1116404,131,162,293 -1116405,230,257,487 -1116406,201,360,561 -1116407,297,303,600 -1116408,230,249,479 -1116409,163,170,333 -1116410,296,348,644 -1116411,253,287,540 -1116412,193,174,367 -1116413,259,295,554 -1116414,194,154,348 -1116415,114,123,237 -1116416,183,213,396 -1116417,101,102,203 -1116418,182,191,373 -1116419,255,282,537 -1116420,193,208,401 -1116421,216,321,537 -1116422,285,349,634 -1116423,236,287,523 -1116424,257,310,567 -1116425,276,302,578 -1116426,200,185,385 -1116427,217,258,475 -1116428,179,226,405 -1116429,134,171,305 -1116430,212,243,455 -1116431,119,123,242 -1116432,97,151,248 -1116433,199,209,408 -1116434,173,262,435 -1116435,0,0,0 -1116436,125,98,223 -1116437,11,7,18 -1116438,156,192,348 -1116501,195,186,381 -1116502,118,136,254 -1116503,107,114,221 -1116504,141,124,265 -1116505,215,182,397 -1116506,192,182,374 -1116507,190,189,379 -1116508,78,70,148 -1116509,192,200,392 -1116510,111,97,208 -1116511,133,132,265 -1116512,159,134,293 -1116513,199,185,384 -1116514,166,162,328 -1116515,155,139,294 -1116516,236,217,453 -1116601,96,102,198 -1116602,140,165,305 -1116603,181,194,375 -1116604,244,246,490 -1116605,190,203,393 -1116606,188,223,411 -1116607,224,227,451 -1116608,174,195,369 -1116609,161,267,428 -1116610,153,147,300 -1116611,276,311,587 -1116612,170,175,345 -1116613,72,67,139 -1116614,274,296,570 -1116615,196,197,393 -1116616,128,127,255 -1116617,3,3,6 -1116618,209,216,425 -1116619,281,286,567 -1116620,226,213,439 -1116621,162,166,328 -1116622,208,199,407 -1116623,116,99,215 -1116624,139,154,293 -1116625,117,130,247 -1116626,185,210,395 -1116627,155,164,319 -1116628,91,109,200 -1116629,170,194,364 -1116701,152,160,312 -1116702,231,239,470 -1116703,135,170,305 -1116704,119,144,263 -1116705,149,122,271 -1116706,126,146,272 -1116707,17,6,23 -1116708,259,280,539 -1116709,140,128,268 -1116710,123,118,241 -1116711,196,163,359 -1116712,101,91,192 -1116713,244,274,518 -1116714,208,207,415 -1116715,227,186,413 -1116801,258,285,543 -1116802,108,98,206 -1116803,241,204,445 -1116804,145,156,301 -1116805,218,239,457 -1116806,310,310,620 -1116807,136,114,250 -1116808,191,212,403 -1116809,149,170,319 -1116810,20,28,48 -1116811,108,104,212 -1116812,229,226,455 -1116813,183,182,365 -1116814,112,96,208 -1116815,272,273,545 -1116816,214,228,442 -1116817,99,118,217 -1116818,143,212,355 -1116819,217,250,467 -1116820,182,231,413 -1116821,70,70,140 -1116822,190,209,399 -1116823,126,141,267 -1116824,171,178,349 -1116825,206,228,434 -1116826,88,108,196 -1116827,93,95,188 -1116828,0,0,0 -1116829,153,154,307 -1116901,224,285,509 -1116902,160,175,335 -1116903,171,246,417 -1116904,172,191,363 -1116905,133,149,282 -1116906,90,66,156 -1116907,216,204,420 -1116908,156,139,295 -1116909,184,181,365 -1116910,135,128,263 -1116911,160,161,321 -1116912,162,183,345 -1116913,179,209,388 -1116914,129,146,275 -1116915,254,273,527 -1116916,259,279,538 -1116917,139,170,309 -1116918,249,247,496 -1116919,163,205,368 -1116920,142,164,306 -1116921,116,135,251 -1116922,222,273,495 -1116923,199,170,369 -1116924,104,159,263 -1116925,89,96,185 -1116926,177,179,356 -1116927,58,87,145 -1116928,202,197,399 -1116929,226,235,461 -1116930,134,125,259 -1116931,228,241,469 -1116932,111,123,234 -1116933,159,157,316 -1116934,130,149,279 -1116935,181,193,374 -1116936,109,108,217 -1116937,171,159,330 -1116938,122,155,277 -1116939,129,150,279 -1116940,153,146,299 -1116941,138,161,299 -1116942,137,140,277 -1116943,234,255,489 -1116944,110,139,249 -1116945,94,104,198 -1116946,187,203,390 -1116947,84,85,169 -1116948,234,258,492 -1116949,292,313,605 -1116950,162,196,358 -1116951,39,33,72 -1116952,169,246,415 -1116953,43,47,90 -1116954,208,191,399 -1116955,179,174,353 -1116956,170,153,323 -1116957,157,205,362 -1116958,152,152,304 -1116959,190,229,419 -1116960,134,203,337 -1117001,380,395,775 -1117002,0,0,0 -1117003,127,87,214 -1117004,142,161,303 -1117005,206,181,387 -1117006,189,189,378 -1117007,130,91,221 -1117008,181,203,384 -1117009,0,0,0 -1117010,153,137,290 -1117011,0,0,0 -1117012,294,272,566 -1117013,166,181,347 -1117014,221,201,422 -1117015,251,242,493 -1117016,148,118,266 -1117017,165,157,322 -1117018,0,0,0 -1117019,134,123,257 -1117020,162,165,327 -1117021,178,162,340 -1117022,208,192,400 -1117023,152,157,309 -1117024,178,161,339 -1117025,142,122,264 -1117026,132,115,247 -1117027,196,189,385 -1117028,129,151,280 -1117029,58,62,120 -1117030,79,98,177 -1117031,200,192,392 -1117032,240,226,466 -1117033,169,171,340 -1117034,248,240,488 -1117035,3,7,10 -1117036,51,44,95 -1117037,164,168,332 -1117038,109,109,218 -1117039,184,186,370 -1117101,120,125,245 -1117102,220,242,462 -1117103,143,177,320 -1117104,185,191,376 -1117105,189,211,400 -1117106,243,258,501 -1117107,220,246,466 -1117108,210,238,448 -1117109,185,162,347 -1117110,130,122,252 -1117111,196,200,396 -1117112,83,96,179 -1117113,167,175,342 -1117114,126,184,310 -1117115,120,139,259 -1117201,212,199,411 -1117202,260,286,546 -1117203,187,234,421 -1117204,178,209,387 -1117205,206,233,439 -1117206,325,316,641 -1117207,207,202,409 -1117208,249,241,490 -1117209,167,188,355 -1117210,212,225,437 -1117211,180,182,362 -1117212,183,195,378 -1117213,151,170,321 -1117214,239,238,477 -1117215,144,144,288 -1117216,148,172,320 -1117217,273,239,512 -1117218,131,116,247 -1117219,153,247,400 -1117220,279,314,593 -1117221,369,478,847 -1117222,197,239,436 -1117223,357,376,733 -1117224,197,204,401 -1117225,85,86,171 -1117226,97,93,190 -1117227,318,319,637 -1117228,192,206,398 -1117229,259,281,540 -1117230,4,0,4 -1117301,57,56,113 -1117302,139,150,289 -1117303,127,148,275 -1117304,206,243,449 -1117305,192,199,391 -1117306,282,270,552 -1117307,289,293,582 -1117308,131,142,273 -1117309,279,265,544 -1117310,104,78,182 -1117311,265,281,546 -1117312,193,244,437 -1117313,113,127,240 -1117314,187,190,377 -1117315,160,162,322 -1117316,160,200,360 -1117317,131,151,282 -1117318,183,223,406 -1117319,167,196,363 -1117320,189,182,371 -1117321,251,280,531 -1117322,202,204,406 -1117323,45,57,102 -1117324,137,140,277 -1117325,140,141,281 -1117326,182,191,373 -1117401,157,153,310 -1117402,228,262,490 -1117403,237,258,495 -1117404,273,252,525 -1117405,229,262,491 -1117406,247,278,525 -1117407,254,251,505 -1117408,212,191,403 -1117409,252,202,454 -1117410,299,332,631 -1117411,169,184,353 -1117412,103,141,244 -1117413,166,204,370 -1117414,180,323,503 -1117415,260,268,528 -1117416,204,222,426 -1117417,179,204,383 -1117418,251,258,509 -1117419,0,4,4 -1117420,0,0,0 -1117421,4,0,4 -1117422,0,4,4 -1117423,139,146,285 -1117424,147,136,283 -1117425,195,232,427 -1117426,234,272,506 -1117427,104,117,221 -1117428,186,188,374 -1117429,131,137,268 -1117501,222,264,486 -1117502,129,127,256 -1117503,200,191,391 -1117504,188,177,365 -1117505,204,223,427 -1117506,157,173,330 -1117507,202,214,416 -1117508,261,244,505 -1117509,206,211,417 -1117510,112,102,214 -1117511,198,215,413 -1117512,137,133,270 -1117513,200,175,375 -1117514,195,201,396 -1117515,119,106,225 -1117516,186,190,376 -1117517,177,160,337 -1117518,129,120,249 -1117519,142,149,291 -1117520,113,105,218 -1117521,117,123,240 -1117522,207,207,414 -1117523,196,171,367 -1117524,176,158,334 -1117525,163,146,309 -1117526,130,125,255 -1117527,162,164,326 -1117528,263,291,554 -1117529,162,154,316 -1117530,3,3,6 -1117531,177,143,320 -1117532,78,78,156 -1117533,107,102,209 -1117534,53,59,112 -1117601,289,291,580 -1117602,144,134,278 -1117603,150,173,323 -1117604,252,284,536 -1117605,243,240,483 -1117606,154,173,327 -1117607,283,274,557 -1117608,161,171,332 -1117609,172,205,377 -1117610,281,279,560 -1117611,209,220,429 -1117612,169,212,381 -1117613,250,262,512 -1117614,182,245,427 -1117615,208,237,445 -1117616,155,177,332 -1117617,166,175,341 -1117618,124,146,270 -1117619,140,142,282 -1117620,269,271,540 -1117621,162,174,336 -1117622,198,221,419 -1117623,119,116,235 -1117624,166,168,334 -1117625,79,70,149 -1117626,4,0,4 -1117627,197,208,405 -1117628,248,249,497 -1117629,78,90,168 -1117630,109,106,215 -1117631,183,173,356 -1117632,199,199,398 -1117633,266,295,561 -1117634,348,342,690 -1117635,109,112,221 -1117636,292,332,624 -1117701,161,160,321 -1117702,114,108,222 -1117703,91,90,181 -1117704,192,193,385 -1117705,149,162,311 -1117706,82,76,158 -1117707,127,139,266 -1117708,112,120,232 -1117709,93,120,213 -1117710,91,71,162 -1117711,115,93,208 -1117712,165,158,323 -1117801,166,149,315 -1117802,201,212,413 -1117803,111,98,209 -1117804,153,130,283 -1117805,200,173,373 -1117806,0,0,0 -1117807,129,137,266 -1117808,122,125,247 -1117809,101,108,209 -1117810,54,76,130 -1117811,105,132,237 -1117812,144,135,279 -1117813,171,139,310 -1117814,142,138,280 -1117815,171,200,371 -1117816,10,10,20 -1117817,216,197,413 -1117818,102,118,220 -1117819,151,128,279 -1117820,124,111,235 -1117821,210,209,419 -1117822,136,126,262 -1117901,190,165,355 -1117902,74,62,136 -1117903,223,218,441 -1117904,197,131,328 -1117905,122,105,227 -1117906,247,131,378 -1117907,249,217,466 -1117908,224,225,449 -1117909,170,152,322 -1117910,191,190,381 -1117911,95,80,175 -1118001,106,107,213 -1118002,89,69,158 -1118003,221,220,441 -1118004,172,234,406 -1118005,152,162,314 -1118006,154,160,314 -1118007,199,223,422 -1118008,145,145,290 -1118009,65,90,155 -1118010,126,103,229 -1118011,164,172,336 -1118012,234,231,465 -1118013,284,337,621 -1118014,6,3,9 -1118015,4,4,8 -1118016,0,0,0 -1118017,129,170,299 -1118018,103,111,214 -1118019,41,35,76 -1118020,208,216,424 -1118021,108,95,203 -1118101,166,144,310 -1118102,258,249,507 -1118103,120,111,231 -1118104,160,151,311 -1118105,90,82,172 -1118106,202,195,397 -1118107,0,0,0 -1118108,178,167,345 -1118109,179,175,354 -1118110,155,145,300 -1118111,213,191,404 -1118112,126,112,238 -1118113,151,152,303 -1118114,202,224,426 -1118115,196,165,361 -1118116,284,240,524 -1118117,131,109,240 -1118118,190,173,363 -1118119,175,196,371 -1118120,171,179,350 -1118201,114,121,235 -1118202,4,0,4 -1118203,135,151,286 -1118204,180,167,347 -1118205,140,144,284 -1118206,105,125,230 -1118207,203,188,391 -1118208,104,111,215 -1118209,122,130,252 -1118210,134,143,277 -1118211,184,171,355 -1118212,141,172,313 -1118213,214,233,447 -1118214,188,215,403 -1118215,155,170,325 -1118216,134,161,295 -1118217,143,166,309 -1118218,130,151,281 -1118219,225,234,459 -1118220,186,200,386 -1118221,130,135,265 -1118222,231,241,472 -1118223,0,0,0 -1118224,145,145,290 -1118301,138,106,244 -1118302,231,214,445 -1118303,102,100,202 -1118304,125,150,275 -1118305,262,297,559 -1118306,153,161,314 -1118307,93,88,181 -1118308,165,165,330 -1118309,151,126,277 -1118310,136,120,256 -1118311,141,103,244 -1118312,188,186,374 -1118313,161,131,292 -1118314,134,98,232 -1118315,219,195,414 -1118316,195,180,375 -1118317,268,251,519 -1118318,194,180,374 -1118319,201,195,396 -1118320,139,135,274 -1118321,76,70,146 -1118322,34,36,70 -1118401,229,251,480 -1118402,112,118,230 -1118403,263,244,507 -1118404,151,157,308 -1118405,45,39,84 -1118406,77,102,179 -1118407,248,243,491 -1118408,192,192,384 -1118409,146,181,327 -1118410,143,177,320 -1118411,215,204,419 -1118412,217,193,410 -1118413,164,132,296 -1118414,148,154,302 -1118415,183,209,392 -1118501,166,175,341 -1118502,210,196,406 -1118503,263,275,538 -1118504,178,200,378 -1118505,317,328,645 -1118506,210,214,424 -1118507,112,121,233 -1118508,135,127,262 -1118509,133,121,254 -1118510,165,170,335 -1118511,93,76,169 -1118512,170,148,318 -1118513,163,129,292 -1118514,96,70,166 -1118515,130,129,259 -1118516,192,206,398 -1118517,222,222,444 -1118518,166,180,346 -1118519,207,232,439 -1118520,140,153,293 -1118521,153,151,304 -1118522,95,78,173 -1118523,200,200,400 -1118524,198,179,377 -1118525,172,162,334 -1118526,143,181,324 -1118527,227,223,450 -1118601,387,470,857 -1118602,219,211,430 -1118603,230,247,477 -1118604,327,328,655 -1118605,239,238,477 -1118606,190,180,370 -1118607,215,233,448 -1118608,165,182,347 -1118609,210,225,435 -1118610,152,169,321 -1118611,114,133,247 -1118612,213,222,435 -1118613,137,185,322 -1118614,206,212,418 -1118615,235,273,508 -1118616,189,226,415 -1118617,144,180,324 -1118618,268,272,540 -1118619,102,95,197 -1118620,196,222,418 -1118621,176,181,357 -1118622,206,231,437 -1118623,211,217,428 -1118624,288,292,580 -1118625,88,130,218 -1118626,116,163,279 -1118627,194,245,439 -1118628,125,150,275 -1118629,165,209,374 -1118630,255,297,552 -1118631,174,193,367 -1118632,206,231,437 -1118633,152,160,312 -1118634,103,119,222 -1118635,95,109,204 -1118636,182,193,375 -1118637,253,271,524 -1118638,196,290,486 -1118639,268,140,408 -1118640,194,216,410 -1118641,203,243,446 -1118642,245,300,545 -1118643,270,271,541 -1118644,253,269,522 -1118645,169,210,379 -1118646,109,105,214 -1118647,142,160,302 -1118648,202,217,419 -1118649,240,322,562 -1118650,230,249,479 -1118651,180,204,384 -1118652,183,226,409 -1118653,101,167,268 -1118654,336,346,682 -1118701,230,241,471 -1118702,185,183,368 -1118703,239,273,512 -1118704,294,302,596 -1118705,91,92,183 -1118706,167,171,338 -1118707,229,207,436 -1118708,180,152,332 -1118709,115,114,229 -1118710,131,102,233 -1118711,152,138,290 -1118712,164,140,304 -1118801,187,196,383 -1118802,194,182,376 -1118803,213,253,466 -1118804,130,175,305 -1118805,217,205,422 -1118806,195,193,388 -1118807,181,181,362 -1118808,144,134,278 -1118809,87,84,171 -1118810,237,220,457 -1118811,106,115,221 -1118812,115,104,219 -1118813,94,96,190 -1118814,158,167,325 -1118815,175,145,320 -1118816,138,119,257 -1118817,159,154,313 -1118818,159,185,344 -1118819,93,110,203 -1118901,112,109,221 -1118902,138,148,286 -1118903,172,179,351 -1118904,119,135,254 -1118905,181,189,370 -1118906,134,114,248 -1118907,182,187,369 -1118908,200,185,385 -1118909,74,68,142 -1118910,69,70,139 -1118911,133,129,262 -1118912,89,78,167 -1119001,118,101,219 -1119002,215,228,443 -1119003,145,155,300 -1119004,159,160,319 -1119005,150,146,296 -1119006,184,197,381 -1119007,143,147,290 -1119008,200,207,407 -1119009,214,248,462 -1119010,204,226,430 -1119011,142,169,311 -1119012,183,236,419 -1119013,298,352,650 -1119014,136,135,271 -1119015,177,207,384 -1119016,121,155,276 -1119017,190,217,407 -1119018,211,186,397 -1119019,72,55,127 -1119020,107,99,206 -1119021,366,239,605 -1119022,190,163,353 -1119023,123,117,240 -1119024,123,123,246 -1119025,113,112,225 -1119101,225,228,453 -1119102,197,173,370 -1119103,175,166,341 -1119104,114,117,231 -1119105,122,141,263 -1119106,227,267,494 -1119107,172,194,366 -1119108,157,171,328 -1119109,177,207,384 -1119110,200,203,403 -1119111,272,295,567 -1119112,213,223,436 -1119113,250,275,525 -1119114,279,322,601 -1119115,94,162,256 -1119116,104,90,194 -1119117,243,232,475 -1119118,241,250,491 -1119119,247,273,520 -1119120,201,211,412 -1119121,136,171,307 -1119122,215,195,410 -1119123,254,266,520 -1119124,206,207,413 -1119125,279,324,603 -1119126,113,114,227 -1119127,234,214,448 -1119128,169,182,351 -1119201,135,141,276 -1119202,98,116,214 -1119203,145,124,269 -1119204,123,134,257 -1119205,184,164,348 -1119206,197,207,404 -1119207,197,196,393 -1119208,206,186,392 -1119209,105,91,196 -1119210,215,181,396 -1119211,206,209,415 -1119212,286,281,567 -1119213,152,153,305 -1119214,109,92,201 -1119215,321,320,641 -1119301,119,146,265 -1119302,172,153,325 -1119303,97,103,200 -1119304,167,155,322 -1119305,70,55,125 -1119306,155,161,316 -1119307,163,145,308 -1119308,136,128,264 -1119309,176,145,321 -1119310,139,131,270 -1119311,119,83,202 -1119312,107,100,207 -1119313,119,126,245 -1119314,141,158,299 -1119315,157,185,342 -1119316,234,248,482 -1119317,142,149,291 -1119318,112,120,232 -1119319,186,202,388 -1119320,101,108,209 -1119401,72,56,128 -1119402,169,209,378 -1119403,211,226,437 -1119404,149,178,327 -1119405,113,121,234 -1119406,220,174,394 -1119407,184,166,350 -1119408,190,180,370 -1119409,107,113,220 -1119410,115,110,225 -1119411,111,98,209 -1119412,237,208,445 -1119413,111,100,211 -1119414,157,146,303 -1119415,121,136,257 -1119416,124,147,271 -1119417,140,171,311 -1119418,196,169,365 -1119419,159,144,303 -1119420,82,66,148 -1119421,64,75,139 -1119422,166,190,356 -1119423,99,119,218 -1119424,85,114,199 -1119501,24,22,46 -1119502,116,125,241 -1119503,247,314,561 -1119504,269,285,554 -1119505,160,156,316 -1119506,202,180,382 -1119507,134,144,278 -1119508,216,228,444 -1119509,206,182,388 -1119510,238,234,472 -1119511,195,197,392 -1119512,49,48,97 -1119513,191,198,389 -1119514,173,187,360 -1119515,145,162,307 -1119516,234,223,457 -1119517,217,221,438 -1119518,147,147,294 -1119519,271,281,552 -1119520,216,176,392 -1119521,161,192,353 -1119522,177,169,346 -1119523,180,146,326 -1119524,0,0,0 -1119525,0,4,4 -1119601,126,127,253 -1119602,72,65,137 -1119603,92,94,186 -1119604,155,128,283 -1119605,311,239,550 -1119606,196,152,348 -1119607,111,115,226 -1119608,217,207,424 -1119609,99,105,204 -1119610,56,38,94 -1119611,101,92,193 -1119612,238,185,423 -1119613,124,117,241 -1119614,224,261,485 -1119615,138,117,255 -1119616,180,159,339 -1119617,162,122,284 -1119618,334,290,624 -1119701,135,126,261 -1119702,146,143,289 -1119703,130,136,266 -1119704,104,108,212 -1119705,179,182,361 -1119706,184,187,371 -1119707,135,166,301 -1119708,196,182,378 -1119709,139,156,295 -1119710,191,220,411 -1119711,156,155,311 -1119712,141,110,251 -1119713,150,168,318 -1119714,177,188,365 -1119715,173,167,340 -1119716,6,6,12 -1119717,171,218,389 -1119718,110,113,223 -1119719,135,150,285 -1119720,129,145,274 -1119721,276,301,577 -1119722,244,202,446 -1119801,239,218,457 -1119802,105,120,225 -1119803,224,209,433 -1119804,200,186,386 -1119805,106,97,203 -1119806,142,122,264 -1119807,93,97,190 -1119808,274,251,525 -1119809,142,120,262 -1119810,83,63,146 -1119811,214,193,407 -1119812,174,170,344 -1119813,288,272,560 -1119814,202,214,416 -1119901,272,253,525 -1119902,192,221,413 -1119903,238,243,481 -1119904,149,152,301 -1119905,244,238,482 -1119906,202,212,414 -1119907,260,239,499 -1119908,218,238,456 -1119909,130,131,261 -1119910,102,99,201 -1119911,88,88,176 -1119912,252,256,508 -1119913,201,201,402 -1119914,174,176,350 -1119915,330,344,674 -1119916,302,349,651 -1119917,130,139,269 -1119918,206,250,456 -1119919,194,216,410 -1119920,74,87,161 -1119921,320,344,664 -1120001,307,282,589 -1120002,205,200,405 -1120003,212,247,459 -1120004,100,76,176 -1120005,134,104,238 -1120006,204,176,380 -1120007,171,153,324 -1120008,135,121,256 -1120009,130,123,253 -1120010,188,169,357 -1120011,116,108,224 -1120012,288,252,540 -1120013,163,155,318 -1120101,290,287,577 -1120102,99,100,199 -1120103,185,173,358 -1120104,155,154,309 -1120105,217,213,430 -1120106,232,270,502 -1120107,119,124,243 -1120108,173,226,399 -1120109,143,134,277 -1120110,192,182,374 -1120111,170,187,357 -1120112,120,109,229 -1120113,159,161,320 -1120114,153,135,288 -1120115,254,205,459 -1120116,243,244,487 -1120117,230,192,422 -1120118,117,129,246 -1120119,149,143,292 -1120120,133,101,234 -1120121,204,185,389 -1120122,52,38,90 -1120201,297,305,602 -1120202,121,115,236 -1120203,211,227,438 -1120204,441,443,884 -1120205,251,297,548 -1120206,165,176,341 -1120207,306,340,646 -1120208,149,166,315 -1120209,289,303,592 -1120210,121,106,227 -1120211,327,31,358 -1120212,194,212,406 -1120213,133,144,277 -1120214,274,278,552 -1120215,135,141,276 -1120216,127,123,250 -1120217,113,115,228 -1120218,158,164,322 -1120219,168,183,351 -1120220,224,210,434 -1120221,104,106,210 -1120222,103,139,242 -1120223,234,230,464 -1120224,102,111,213 -1120225,229,232,461 -1120226,155,171,326 -1120227,219,213,432 -1120228,136,137,273 -1120229,0,0,0 -1120230,171,165,336 -1120231,278,326,604 -1120232,164,193,357 -1120233,75,72,147 -1120234,140,155,295 -1120235,246,244,490 -1120236,149,167,316 -1120237,211,227,438 -1120238,113,133,246 -1120239,190,189,379 -1120240,216,212,428 -1120241,213,238,451 -1120242,152,156,308 -1120243,213,223,436 -1120244,219,238,457 -1120245,197,193,390 -1120246,172,190,362 -1120247,105,110,215 -1120248,230,243,473 -1120249,141,159,300 -1120250,215,230,445 -1120251,190,236,426 -1120252,141,163,304 -1120253,185,206,391 -1120301,152,200,352 -1120302,158,232,390 -1120303,120,138,258 -1120304,204,128,332 -1120305,152,171,323 -1120306,205,302,507 -1120307,135,183,318 -1120308,150,197,347 -1120309,226,276,502 -1120310,133,150,283 -1120311,134,106,240 -1120312,130,161,291 -1120313,132,141,273 -1120314,248,263,511 -1120315,171,219,390 -1120316,177,178,355 -1120317,138,175,313 -1120318,204,220,424 -1120319,222,250,472 -1120320,251,291,542 -1120321,167,187,354 -1120322,237,304,541 -1120323,191,259,450 -1120324,210,211,421 -1120325,403,451,854 -1120326,242,273,515 -1120327,203,185,388 -1120328,159,182,341 -1120329,247,246,493 -1120330,203,207,410 -1120331,19,25,44 -1120332,3,3,6 -1120333,147,173,320 -1120334,113,118,231 -1120335,246,274,520 -1120336,112,124,236 -1120401,28,22,50 -1120402,151,135,286 -1120403,195,166,361 -1120404,165,141,306 -1120405,167,188,355 -1120406,177,214,391 -1120407,365,342,707 -1120408,252,281,533 -1120409,200,202,402 -1120410,222,232,454 -1120411,262,283,545 -1120412,266,287,553 -1120413,174,208,382 -1120501,55,47,102 -1120502,104,90,194 -1120503,92,85,177 -1120504,101,100,201 -1120505,103,121,224 -1120506,298,275,573 -1120507,225,203,428 -1120508,135,109,244 -1120509,116,116,232 -1120510,122,122,244 -1120511,112,102,214 -1120512,555,592,1147 -1120513,174,174,348 -1120514,325,345,670 -1120515,148,154,302 -1120516,153,135,288 -1120517,190,195,385 -1120518,146,154,300 -1120519,119,111,230 -1120520,69,65,134 -1120521,95,78,173 -1120522,125,132,257 -1120523,189,220,409 -1120524,132,123,255 -1120525,113,117,230 -1120526,185,197,382 -1120527,188,185,373 -1120528,204,188,392 -1120529,260,269,529 -1120530,92,86,178 -1120531,198,206,404 -1120532,189,198,387 -1120533,190,199,389 -1120534,140,154,294 -1120535,123,133,256 -1120536,139,131,270 -1120537,164,166,330 -1120538,259,265,524 -1120539,116,104,220 -1120540,80,63,143 -1120541,152,157,309 -1120542,201,204,405 -1120543,165,177,342 -1120544,197,192,389 -1120545,170,169,339 -1120546,175,149,324 -1120547,215,238,453 -1120548,185,191,376 -1120549,116,127,243 -1120550,232,292,524 -1120551,83,94,177 -1120552,218,228,446 -1120601,78,90,168 -1120602,156,159,315 -1120603,129,127,256 -1120604,173,174,347 -1120605,203,239,442 -1120606,208,266,474 -1120607,0,0,0 -1120608,143,170,313 -1120609,213,260,473 -1120610,308,302,610 -1120611,238,212,450 -1120612,257,248,505 -1120613,156,153,309 -1120614,146,159,305 -1120615,279,287,566 -1120616,192,206,398 -1120617,132,147,279 -1120618,205,221,426 -1120619,272,282,554 -1120620,243,249,492 -1120621,214,241,455 -1120622,175,184,359 -1120623,297,315,612 -1120624,196,170,366 -1120625,201,202,403 -1120626,278,285,563 -1120627,265,310,575 -1120628,198,206,404 -1120629,181,185,366 -1120630,152,160,312 -1120631,182,189,371 -1120632,174,144,318 -1120633,246,311,557 -1120634,261,264,525 -1120635,132,219,351 -1120636,179,163,342 -1120637,186,208,394 -1120638,260,287,547 -1120639,210,203,413 -1120640,246,236,482 -1120641,212,231,443 -1120642,152,170,322 -1120701,218,231,449 -1120702,234,235,469 -1120703,207,184,391 -1120704,117,114,231 -1120705,207,204,411 -1120706,150,172,322 -1120707,192,244,436 -1120708,221,223,444 -1120709,241,250,491 -1120710,0,0,0 -1120711,183,153,336 -1120712,250,280,530 -1120713,145,132,277 -1120714,0,0,0 -1120715,273,294,567 -1120716,130,136,266 -1120801,210,188,398 -1120802,138,164,302 -1120803,141,141,282 -1120804,131,117,248 -1120805,228,240,468 -1120806,136,150,286 -1120807,204,197,401 -1120808,205,202,407 -1120809,145,148,293 -1120810,179,197,376 -1120811,183,194,377 -1120812,151,172,323 -1120813,158,166,324 -1120814,230,224,454 -1120815,186,217,403 -1120816,163,156,319 -1120817,250,248,498 -1120818,173,182,355 -1120819,218,194,412 -1120820,159,199,358 -1120821,224,208,432 -1120822,216,223,439 -1120823,0,0,0 -1120824,99,107,206 -1120825,207,228,435 -1120826,249,275,524 -1120827,255,255,510 -1120828,193,204,397 -1120829,142,147,289 -1120830,132,145,277 -1120831,144,168,312 -1120832,140,141,281 -1120833,145,137,282 -1120834,150,151,301 -1120835,192,217,409 -1120836,247,270,517 -1120837,221,212,433 -1120838,137,158,295 -1120839,174,244,418 -1120840,221,230,451 -1120841,233,234,467 -1120842,154,148,302 -1120843,129,154,283 -1120844,108,132,240 -1120845,190,193,383 -1120846,208,209,417 -1120847,130,131,261 -1120848,157,176,333 -1120849,196,200,396 -1120850,127,140,267 -1120851,138,144,282 -1120852,173,175,348 -1120853,167,151,318 -1120854,137,137,274 -1120855,302,305,607 -1120856,143,151,294 -1120857,169,174,343 -1120858,202,195,397 -1120859,229,239,468 -1120860,270,304,574 -1120861,154,153,307 -1120862,231,227,458 -1120863,189,192,381 -1120864,178,228,406 -1120865,10,10,20 -1120866,102,127,229 -1120901,214,252,466 -1120902,0,3,3 -1120903,167,164,331 -1120904,155,177,332 -1120905,218,244,462 -1120906,263,250,513 -1120907,202,230,432 -1120908,132,166,298 -1120909,152,169,321 -1120910,160,162,322 -1120911,154,146,300 -1120912,144,135,279 -1120913,231,261,492 -1120914,240,261,501 -1120915,292,310,602 -1120916,197,223,420 -1120917,261,276,537 -1120918,283,260,543 -1120919,190,171,361 -1120920,202,200,402 -1120921,272,300,572 -1120922,259,257,516 -1120923,209,215,424 -1120924,219,215,434 -1120925,235,268,503 -1120926,197,232,429 -1120927,193,222,415 -1120928,272,293,565 -1120929,135,151,286 -1120930,186,178,364 -1120931,211,216,427 -1120932,245,267,512 -1120933,223,229,452 -1120934,205,189,394 -1120935,200,185,385 -1120936,184,219,403 -1120937,6,3,9 -1120938,0,0,0 -1120939,261,248,509 -1120940,205,190,395 -1120941,202,193,395 -1120942,194,205,399 -1120943,219,202,421 -1120944,225,232,457 -1120945,204,222,426 -1120946,235,207,442 -1120947,239,249,488 -1120948,278,255,533 -1120949,152,171,323 -1120950,237,239,476 -1120951,128,200,328 -1120952,203,254,457 -1120953,240,237,477 -1120954,258,286,544 -1120955,218,224,442 -1120956,220,229,449 -1121001,109,118,227 -1121002,100,106,206 -1121003,196,203,399 -1121004,146,134,280 -1121005,191,196,387 -1121006,193,238,431 -1121007,285,294,579 -1121008,240,235,475 -1121009,449,427,876 -1121010,74,137,211 -1121011,135,167,302 -1121012,144,188,332 -1121013,265,316,581 -1121014,127,161,288 -1121015,130,189,319 -1121016,186,191,377 -1121017,151,166,317 -1121018,262,253,515 -1121019,133,157,290 -1121020,227,221,448 -1121021,183,219,402 -1121022,189,212,401 -1121101,140,129,269 -1121102,149,137,286 -1121103,220,252,472 -1121104,185,176,361 -1121105,147,199,346 -1121106,186,169,355 -1121107,172,174,346 -1121108,286,295,581 -1121109,5,5,10 -1121110,224,209,433 -1121201,204,207,411 -1121202,173,187,360 -1121203,116,122,238 -1121204,265,261,526 -1121205,177,193,370 -1121206,232,207,439 -1121207,267,262,529 -1121208,185,180,365 -1121209,201,194,395 -1121210,134,137,271 -1121211,149,216,365 -1121212,254,252,506 -1121213,112,99,211 -1121214,220,212,432 -1121215,196,222,418 -1121216,183,249,432 -1121217,211,214,425 -1121218,155,206,361 -1121219,156,149,305 -1121220,0,0,0 -1121221,148,143,291 -1121222,250,247,497 -1121223,186,185,371 -1121224,318,322,640 -1121225,301,310,611 -1121226,168,199,367 -1121227,288,297,585 -1121301,0,4,4 -1121302,0,0,0 -1121303,250,265,515 -1121304,228,197,425 -1121305,248,245,493 -1121306,198,204,402 -1121307,254,258,512 -1121308,272,271,543 -1121309,93,98,191 -1121310,224,244,468 -1121311,229,252,481 -1121312,210,234,444 -1121313,137,151,288 -1121314,224,283,507 -1121315,261,238,499 -1121316,106,108,214 -1121317,200,230,430 -1121318,210,213,423 -1121319,200,223,423 -1121320,122,112,234 -1121321,189,202,391 -1121322,259,263,522 -1121323,309,292,601 -1121324,242,261,503 -1121325,281,261,542 -1121326,215,227,442 -1121327,206,208,414 -1121328,153,161,314 -1121329,169,199,368 -1121330,177,195,372 -1121401,230,254,484 -1121402,161,184,345 -1121403,276,288,564 -1121404,206,225,431 -1121405,3,0,3 -1121406,250,266,516 -1121407,221,228,449 -1121408,145,152,297 -1121409,119,129,248 -1121410,261,327,588 -1121411,170,186,356 -1121412,91,96,187 -1121413,232,213,445 -1121414,291,334,625 -1121415,268,282,550 -1121416,183,196,379 -1121417,179,181,360 -1121418,0,0,0 -1121419,185,196,381 -1121420,6,0,6 -1121421,184,230,414 -1121422,235,268,503 -1121423,176,184,360 -1121424,162,160,322 -1121425,164,179,343 -1121426,192,201,393 -1121427,227,231,458 -1121428,249,273,522 -1121429,130,160,290 -1121430,219,188,407 -1121431,137,157,294 -1121432,265,271,536 -1121433,196,191,387 -1121434,138,163,301 -1121501,108,133,241 -1121502,180,181,361 -1121503,174,210,384 -1121504,163,174,337 -1121505,206,222,428 -1121506,205,224,429 -1121507,208,230,438 -1121508,238,233,471 -1121509,201,206,407 -1121510,235,257,492 -1121511,220,195,415 -1121512,138,139,277 -1121513,248,239,487 -1121514,114,128,242 -1121515,0,0,0 -1121516,237,250,487 -1121517,169,274,443 -1121518,186,275,461 -1121519,198,161,359 -1121520,145,130,275 -1121521,21,30,51 -1121522,246,238,484 -1121523,0,0,0 -1121524,192,205,397 -1121525,149,176,325 -1121601,175,176,351 -1121602,192,184,376 -1121603,382,366,748 -1121604,210,228,438 -1121605,109,140,249 -1121606,225,246,471 -1121607,294,298,592 -1121608,284,289,573 -1121609,244,234,478 -1121610,206,195,401 -1121611,130,150,280 -1121612,291,325,616 -1121613,166,187,353 -1121614,160,173,333 -1121615,265,294,559 -1121616,221,236,457 -1121617,345,314,659 -1121701,94,245,339 -1121702,195,183,378 -1121703,123,129,252 -1121704,235,240,475 -1121705,231,243,474 -1121706,213,203,416 -1121707,163,190,353 -1121708,180,187,367 -1121709,157,160,317 -1121710,118,123,241 -1121711,271,270,541 -1121712,168,179,347 -1121713,117,109,226 -1121714,202,210,412 -1121715,22,22,44 -1121716,191,182,373 -1121717,397,392,789 -1121718,0,0,0 -1121719,171,196,367 -1121720,80,102,182 -1121721,284,273,557 -1121722,258,265,523 -1121723,306,320,626 -1121724,185,189,374 -1121725,304,342,646 -1121726,42,34,76 -1121727,3,3,6 -1121728,224,224,448 -1121729,225,222,447 -1121730,178,188,366 -1121731,224,248,472 -1121801,183,201,384 -1121802,137,146,283 -1121803,131,126,257 -1121804,3,0,3 -1121805,126,138,264 -1121806,0,3,3 -1121807,74,83,157 -1121808,83,104,187 -1121809,195,248,443 -1121810,120,136,256 -1121811,219,204,423 -1121812,315,326,641 -1121813,104,128,232 -1121814,270,281,551 -1121815,132,156,288 -1121816,189,198,387 -1121817,156,47,203 -1121818,147,166,313 -1121819,134,138,272 -1121820,135,115,250 -1121821,141,134,275 -1121822,301,272,573 -1121823,148,127,275 -1121824,78,32,110 -1121825,185,180,365 -1121826,181,187,368 -1121827,134,175,309 -1121828,201,164,365 -1121829,85,102,187 -1121830,136,192,328 -1121831,218,278,496 -1121832,184,280,464 -1121833,166,151,317 -1121834,288,322,610 -1121835,188,202,390 -1121836,145,157,302 -1121837,239,263,502 -1121838,38,49,87 -1121839,115,126,241 -1121840,219,181,400 -1121841,151,134,285 -1121842,224,276,500 -1121843,172,126,298 -1121901,148,154,302 -1121902,151,167,318 -1121903,184,239,423 -1121904,196,209,405 -1121905,106,103,209 -1121906,109,96,205 -1121907,110,117,227 -1121908,214,218,432 -1121909,147,154,301 -1121910,264,294,558 -1121911,177,197,374 -1121912,81,110,191 -1121913,147,166,313 -1121914,238,229,467 -1121915,110,127,237 -1121916,168,219,387 -1121917,239,245,484 -1121918,199,213,412 -1121919,139,121,260 -1121920,162,162,324 -1121921,3,3,6 -1121922,56,47,103 -1121923,213,243,456 -1121924,107,121,228 -1121925,174,176,350 -1121926,172,172,344 -1121927,0,0,0 -1121928,155,145,300 -1121929,143,178,321 -1121930,261,251,512 -1121931,227,207,434 -1121932,318,375,693 -1121933,141,149,290 -1121934,193,256,449 -1121935,228,251,479 -1121936,170,185,355 -1121937,160,161,321 -1121938,280,266,546 -1121939,131,135,266 -1122001,213,198,411 -1122002,172,166,338 -1122003,203,186,389 -1122004,207,214,421 -1122005,265,244,509 -1122006,266,284,550 -1122007,229,214,443 -1122008,12,10,22 -1122009,230,244,474 -1122010,247,243,490 -1122011,271,265,536 -1122012,187,193,380 -1122013,266,242,508 -1122014,160,165,325 -1122015,158,132,290 -1122016,213,225,438 -1122017,209,220,429 -1122018,135,148,283 -1122019,142,154,296 -1122020,298,285,583 -1122021,289,317,606 -1122101,196,200,396 -1122102,85,80,165 -1122103,149,161,310 -1122104,181,201,382 -1122105,131,125,256 -1122106,220,232,452 -1122107,153,160,313 -1122108,103,108,211 -1122109,126,115,241 -1122110,184,172,356 -1122111,184,158,342 -1122112,233,219,452 -1122113,158,172,330 -1122114,165,158,323 -1122115,208,220,428 -1122116,101,112,213 -1122117,157,155,312 -1122118,116,118,234 -1122119,107,124,231 -1122120,89,88,177 -1122201,184,177,361 -1122202,182,180,362 -1122203,223,243,466 -1122204,261,290,551 -1122205,183,202,385 -1122206,234,232,466 -1122207,268,271,539 -1122208,197,224,421 -1122209,127,130,257 -1122210,231,241,472 -1122211,172,182,354 -1122212,230,243,473 -1122213,99,133,232 -1122214,192,182,374 -1122215,182,165,347 -1122216,231,230,461 -1122217,236,270,506 -1122218,208,239,447 -1122219,184,219,403 -1122220,214,237,451 -1122221,0,0,0 -1122222,0,0,0 -1122223,277,290,567 -1122224,212,219,431 -1122225,221,226,447 -1122226,194,193,387 -1122227,249,251,500 -1122228,188,169,357 -1122229,194,219,413 -1122230,215,203,418 -1122231,161,157,318 -1122232,199,204,403 -1122233,189,184,373 -1122234,159,161,320 -1122235,293,301,594 -1122236,142,135,277 -1122237,0,0,0 -1122238,3,0,3 -1122239,200,218,418 -1122240,228,256,484 -1122301,100,103,203 -1122302,190,204,394 -1122303,262,265,527 -1122304,151,164,315 -1122305,200,188,388 -1122306,236,205,441 -1122307,202,198,400 -1122308,172,160,332 -1122309,22,16,38 -1122310,242,231,473 -1122311,233,249,482 -1122312,214,231,445 -1122313,239,239,478 -1122314,153,158,311 -1122315,160,161,321 -1122316,99,80,179 -1122317,207,241,448 -1122318,161,175,336 -1122319,158,194,352 -1122320,195,213,408 -1122321,129,141,270 -1122322,243,265,508 -1122323,145,158,303 -1122401,244,250,494 -1122402,189,173,362 -1122403,301,201,502 -1122404,286,227,513 -1122405,182,166,348 -1122406,93,140,233 -1122407,158,129,287 -1122408,101,98,199 -1122409,0,0,0 -1122410,3,5,8 -1122411,190,177,367 -1122412,264,251,515 -1122413,215,205,420 -1122414,175,167,342 -1122415,199,182,381 -1122416,0,3,3 -1122417,106,98,204 -1122418,275,289,564 -1122419,161,210,371 -1122420,72,66,138 -1122421,340,323,663 -1122422,302,314,616 -1122423,156,173,329 -1122424,172,189,361 -1122425,232,194,426 -1122426,310,292,602 -1122427,301,272,573 -1122428,158,171,329 -1122429,242,231,473 -1122430,190,209,399 -1122431,217,269,486 -1122432,109,119,228 -1122501,229,280,509 -1122502,125,147,272 -1122503,194,213,407 -1122504,289,334,623 -1122505,222,192,414 -1122506,138,136,274 -1122507,242,257,499 -1122508,278,279,557 -1122509,151,155,306 -1122510,131,157,288 -1122511,148,182,330 -1122512,199,199,398 -1122513,294,300,594 -1122514,201,246,447 -1122515,144,144,288 -1122516,225,256,481 -1122517,159,159,318 -1122518,199,258,457 -1122519,215,238,453 -1122520,106,122,228 -1122521,222,237,459 -1122522,161,146,307 -1122523,219,294,513 -1122524,241,252,493 -1122525,191,215,406 -1122526,296,299,595 -1122527,106,160,266 -1122528,192,188,380 -1122529,128,150,278 -1122530,246,240,486 -1122531,146,177,323 -1122532,142,170,312 -1122533,12,18,30 -1122534,217,220,437 -1122535,0,0,0 -1122536,164,163,327 -1122537,202,177,379 -1122538,211,196,407 -1122539,226,248,474 -1122540,198,210,408 -1122541,137,146,283 -1122542,107,112,219 -1122543,209,258,467 -1122601,240,240,480 -1122602,98,107,205 -1122603,307,345,652 -1122604,138,135,273 -1122605,312,278,590 -1122606,138,128,266 -1122607,237,232,469 -1122608,248,255,503 -1122609,237,243,480 -1122610,146,150,296 -1122611,137,121,258 -1122612,106,104,210 -1122613,131,124,255 -1122614,209,232,441 -1122615,251,223,474 -1122616,128,127,255 -1122617,156,152,308 -1122618,216,221,437 -1122619,158,178,336 -1122620,133,116,249 -1122621,96,95,191 -1122622,0,0,0 -1122623,162,169,331 -1122624,175,178,353 -1122625,231,238,469 -1122626,194,211,405 -1122627,143,138,281 -1122628,212,219,431 -1122629,179,199,378 -1122630,282,275,557 -1122631,8,8,16 -1122632,176,179,355 -1122701,128,129,257 -1122702,0,0,0 -1122703,129,127,256 -1122704,162,161,323 -1122705,173,168,341 -1122706,252,237,489 -1122707,280,284,564 -1122708,250,225,475 -1122709,169,158,327 -1122710,206,192,398 -1122711,248,245,493 -1122712,113,104,217 -1122713,294,272,566 -1122714,286,247,533 -1122715,190,271,461 -1122716,127,138,265 -1122717,195,202,397 -1122718,217,243,460 -1122719,222,200,422 -1122720,212,209,421 -1122721,215,221,436 -1122722,111,164,275 -1122723,235,266,501 -1122724,213,204,417 -1122725,224,227,451 -1122726,160,187,347 -1122727,144,137,281 -1122728,210,267,477 -1122729,247,247,494 -1122730,252,256,508 -1122731,227,273,500 -1122732,279,231,510 -1122733,208,191,399 -1122734,228,181,409 -1122735,206,213,419 -1122736,260,298,558 -1122801,252,246,498 -1122802,256,270,526 -1122803,0,0,0 -1122804,169,153,322 -1122805,144,141,285 -1122806,231,250,481 -1122807,298,314,612 -1122808,216,204,420 -1122809,264,254,518 -1122810,243,295,538 -1122811,249,273,522 -1122812,262,248,510 -1122813,219,235,454 -1122814,227,218,445 -1122815,147,145,292 -1122816,125,158,283 -1122817,279,289,568 -1122818,282,268,550 -1122819,125,138,263 -1122820,244,235,479 -1122821,197,213,410 -1122822,167,180,347 -1122823,134,119,253 -1122824,121,120,241 -1122825,147,155,302 -1122826,310,308,618 -1122827,248,227,475 -1122828,160,149,309 -1122829,294,317,611 -1122830,167,190,357 -1122831,224,218,442 -1122832,241,236,477 -1122901,192,224,416 -1122902,235,247,482 -1122903,308,267,575 -1122904,232,181,413 -1122905,344,329,673 -1122906,153,122,275 -1122907,218,229,447 -1122908,189,176,365 -1122909,198,224,422 -1122910,170,196,366 -1122911,319,287,606 -1122912,165,167,332 -1122913,152,147,299 -1122914,0,0,0 -1122915,162,142,304 -1122916,217,211,428 -1122917,158,186,344 -1122918,195,178,373 -1122919,242,209,451 -1122920,104,113,217 -1122921,114,93,207 -1122922,217,180,397 -1122923,307,213,520 -1122924,169,204,373 -1122925,251,288,539 -1122926,171,150,321 -1123001,12,6,18 -1123101,167,147,314 -1123102,170,188,358 -1123103,180,166,346 -1123104,323,287,610 -1123105,124,185,309 -1123106,16,8,24 -1123107,53,29,82 -1123108,257,256,513 -1123109,277,273,550 -1123110,252,264,516 -1123111,231,281,512 -1123112,0,0,0 -1123113,207,193,400 -1123114,272,271,543 -1123115,211,224,435 -1123116,203,199,402 -1123117,118,104,222 -1123118,104,96,200 -1123119,225,229,454 -1123120,152,137,289 -1123121,125,150,275 -1123122,214,222,436 -1123123,256,289,545 -1123124,328,367,695 -1123125,328,324,652 -1123126,192,208,400 -1123201,180,183,363 -1123202,218,184,402 -1123203,177,164,341 -1123204,237,240,477 -1123205,239,223,462 -1123206,149,150,299 -1123207,228,233,461 -1123208,200,232,432 -1123209,217,219,436 -1123210,53,60,113 -1123211,187,210,397 -1123212,251,269,520 -1123213,368,373,741 -1123214,160,140,300 -1123215,183,182,365 -1123216,0,0,0 -1123301,179,176,355 -1123302,171,219,390 -1123303,267,257,524 -1123304,285,277,562 -1123305,319,330,649 -1123306,203,292,495 -1123307,118,193,311 -1123308,0,0,0 -1123309,209,225,434 -1123310,331,317,648 -1123311,0,0,0 -1123312,219,222,441 -1123313,97,148,245 -1123314,192,200,392 -1123315,214,227,441 -1123316,269,294,563 -1123317,211,231,442 -1123318,188,241,429 -1123319,319,344,663 -1123320,178,181,359 -1123321,292,286,578 -1123322,195,197,392 -1123323,184,236,420 -1123324,205,216,421 -1123325,248,266,514 -1123326,97,109,206 -1123327,261,289,550 -1123328,206,228,434 -1123329,231,205,436 -1123330,227,195,422 -1123331,176,178,354 -1123332,177,174,351 -1123333,171,192,363 -1123334,237,271,508 -1123335,281,341,622 -1123336,266,272,538 -1123337,254,292,546 -1123338,197,200,397 -1123339,140,150,290 -1123340,144,142,286 -1123341,244,279,523 -1123342,269,295,564 -1123343,240,249,489 -1123344,216,282,498 -1123401,161,191,352 -1123402,287,301,588 -1123403,257,243,500 -1123404,173,167,340 -1123405,149,149,298 -1123406,280,282,562 -1123407,310,348,658 -1123408,180,188,368 -1123409,204,199,403 -1123410,223,326,549 -1123411,131,148,279 -1123412,180,226,406 -1123413,254,248,502 -1123414,227,248,475 -1123415,201,186,387 -1123416,297,309,606 -1123417,213,227,440 -1123418,163,189,352 -1123419,149,156,305 -1123420,222,204,426 -1123421,207,230,437 -1123422,180,245,425 -1123423,178,216,394 -1123424,139,231,370 -1123425,317,323,640 -1123426,174,199,373 -1123427,220,208,428 -1123501,125,123,248 -1123502,312,294,606 -1123503,343,299,642 -1123504,251,246,497 -1123505,195,180,375 -1123506,0,0,0 -1123507,225,257,482 -1123508,187,163,350 -1123509,197,215,412 -1123510,179,184,363 -1123511,252,251,503 -1123512,246,252,498 -1123513,213,182,395 -1123514,209,216,425 -1123515,117,145,262 -1123516,279,293,572 -1123517,186,156,342 -1123518,134,130,264 -1123519,222,216,438 -1123601,287,310,597 -1123602,0,0,0 -1123603,0,0,0 -1123604,75,70,145 -1123605,29,30,59 -1123606,0,0,0 -1123607,0,0,0 -1123608,191,205,396 -1123609,210,208,418 -1123610,134,131,265 -1123611,192,216,408 -1123612,181,178,359 -1123613,102,124,226 -1123614,134,311,445 -1123615,183,170,353 -1123616,182,206,388 -1123617,239,253,492 -1123618,351,406,757 -1123619,194,229,423 -1123620,153,171,324 -1123621,165,164,329 -1123622,198,226,424 -1123623,174,177,351 -1123624,138,129,267 -1123625,113,120,233 -1123626,139,148,287 -1123627,192,206,398 -1123628,192,175,367 -1123629,191,197,388 -1123630,284,306,590 -1123631,143,160,303 -1123632,139,155,294 -1123633,234,250,484 -1123634,169,278,447 -1123635,172,181,353 -1123636,225,257,482 -1123637,126,174,300 -1123638,261,282,543 -1123639,165,187,352 -1123640,176,236,412 -1123641,118,108,226 -1123642,163,185,348 -1123643,130,126,256 -1123644,194,245,439 -1123645,134,159,293 -1123646,230,297,527 -1123647,208,206,414 -1123701,200,222,422 -1123702,107,129,236 -1123703,172,233,405 -1123704,246,269,515 -1123705,145,151,296 -1123706,246,250,496 -1123707,49,49,98 -1123708,202,193,395 -1123709,185,171,356 -1123710,135,120,255 -1123711,133,121,254 -1123712,230,224,454 -1123713,90,85,175 -1123714,150,129,279 -1123715,69,120,189 -1123716,198,189,387 -1123717,395,476,871 -1123718,180,169,349 -1123719,139,128,267 -1123720,138,139,277 -1123721,165,137,302 -1123722,135,127,262 -1123723,97,97,194 -1123724,238,222,460 -1123725,219,208,427 -1123726,131,119,250 -1123727,163,146,309 -1123728,98,110,208 -1123729,98,86,184 -1123730,101,94,195 -1123731,142,132,274 -1123732,205,251,456 -1123733,170,173,343 -1123734,247,224,471 -1123735,327,321,648 -1123736,166,180,346 -1123737,155,190,345 -1123738,151,156,307 -1123739,205,226,431 -1123740,162,206,368 -1123741,201,258,459 -1123742,162,247,409 -1123743,100,145,245 -1123744,163,170,333 -1123745,75,102,177 -1123746,153,160,313 -1123801,99,100,199 -1123802,160,146,306 -1123803,218,204,422 -1123804,133,144,277 -1123805,125,122,247 -1123806,117,122,239 -1123807,199,185,384 -1123808,154,167,321 -1123809,131,112,243 -1123810,122,123,245 -1123811,148,152,300 -1123812,76,96,172 -1123813,98,90,188 -1123814,130,136,266 -1123815,163,191,354 -1123816,155,147,302 -1123817,211,215,426 -1123818,192,248,440 -1123901,206,232,438 -1123902,262,255,517 -1123903,97,127,224 -1123904,93,99,192 -1123905,184,226,410 -1123906,193,189,382 -1123907,77,81,158 -1123908,0,0,0 -1123909,184,234,418 -1123910,269,301,570 -1123911,121,150,271 -1123912,0,0,0 -1123913,225,254,479 -1123914,254,269,523 -1123915,3,4,7 -1123916,10,15,25 -1123917,187,201,388 -1123918,256,249,505 -1123919,161,185,346 -1123920,224,237,461 -1123921,148,145,293 -1123922,107,128,235 -1123923,101,112,213 -1123924,162,173,335 -1123925,180,169,349 -1124001,164,197,361 -1124002,115,104,219 -1124003,126,129,255 -1124004,200,206,406 -1124005,216,238,454 -1124006,151,176,327 -1124007,118,127,245 -1124008,187,179,366 -1124009,127,136,263 -1124010,93,96,189 -1124011,267,294,561 -1124012,161,140,301 -1124013,221,238,459 -1124014,199,202,401 -1124015,260,209,469 -1124016,149,152,301 -1124017,93,126,219 -1124018,186,193,379 -1124019,147,147,294 -1124020,110,114,224 -1124021,238,211,449 -1124022,275,268,543 -1124023,266,243,509 -1124024,125,100,225 -1124025,119,115,234 -1124101,194,156,350 -1124102,156,133,289 -1124103,223,213,436 -1124104,113,114,227 -1124105,152,172,324 -1124106,201,227,428 -1124107,187,173,360 -1124108,265,246,511 -1124109,287,275,562 -1124110,251,292,543 -1124111,153,141,294 -1124112,146,140,286 -1124113,74,69,143 -1124114,131,113,244 -1124115,0,4,4 -1124201,137,179,316 -1124202,173,172,345 -1124203,188,196,384 -1124204,94,108,202 -1124205,269,271,540 -1124206,260,266,526 -1124207,33,26,59 -1124208,48,44,92 -1124209,303,297,600 -1124210,4,5,9 -1124211,247,257,504 -1124212,192,220,412 -1124213,167,185,352 -1124214,309,362,671 -1124215,202,199,401 -1124216,179,194,373 -1124217,271,320,591 -1124218,224,205,429 -1124219,262,271,533 -1124301,104,123,227 -1124302,138,144,282 -1124303,187,176,363 -1124304,277,274,551 -1124305,115,78,193 -1124306,178,164,342 -1124307,97,135,232 -1124308,212,241,453 -1124309,168,198,366 -1124310,144,197,341 -1124311,199,258,457 -1124312,115,175,290 -1124313,182,205,387 -1124314,121,135,256 -1124315,177,210,387 -1124316,166,151,317 -1124317,139,132,271 -1124318,213,230,443 -1124319,309,263,572 -1124320,160,144,304 -1124321,146,147,293 -1124401,48,36,84 -1124402,200,224,424 -1124403,300,290,590 -1124404,268,286,554 -1124405,116,110,226 -1124406,218,249,467 -1124407,173,192,365 -1124408,177,231,408 -1124409,278,272,550 -1124410,111,110,221 -1124411,201,215,416 -1124412,233,254,487 -1124413,198,182,380 -1124414,80,79,159 -1124415,59,42,101 -1124416,147,151,298 -1124417,0,0,0 -1124418,139,179,318 -1124419,23,19,42 -1124420,0,0,0 -1124421,93,98,191 -1124422,96,88,184 -1124423,217,230,447 -1124424,187,200,387 -1124425,263,257,520 -1124426,151,153,304 -1124427,143,200,343 -1124428,267,271,538 -1124429,203,207,410 -1124430,225,232,457 -1124431,255,280,535 -1124432,200,239,439 -1124433,129,110,239 -1124434,169,207,376 -1124435,161,216,377 -1124501,141,144,285 -1124502,92,111,203 -1124503,128,149,277 -1124504,176,183,359 -1124505,112,116,228 -1124506,76,69,145 -1124507,137,136,273 -1124508,127,97,224 -1124509,101,96,197 -1124510,131,128,259 -1124511,73,58,131 -1124512,137,138,275 -1124513,121,111,232 -1124514,125,122,247 -1124515,80,77,157 -1124516,185,160,345 -1124517,205,174,379 -1124518,82,92,174 -1124519,139,126,265 -1124520,99,100,199 -1124521,105,105,210 -1124522,139,116,255 -1124523,123,125,248 -1124524,118,127,245 -1124525,158,122,280 -1124526,156,153,309 -1124527,131,105,236 -1124528,136,124,260 -1124601,137,165,302 -1124602,72,73,145 -1124603,177,222,399 -1124604,263,300,563 -1124605,147,182,329 -1124606,150,163,313 -1124607,222,256,478 -1124608,301,307,608 -1124609,171,196,367 -1124610,282,302,584 -1124611,183,256,439 -1124612,164,197,361 -1124613,198,240,438 -1124614,265,298,563 -1124615,123,182,305 -1124616,245,243,488 -1124617,185,185,370 -1124618,242,268,510 -1124619,136,166,302 -1124620,202,213,415 -1124621,117,123,240 -1124622,184,195,379 -1124623,146,166,312 -1124624,219,249,468 -1124625,144,216,360 -1124626,124,178,302 -1124627,212,209,421 -1124628,127,132,259 -1124629,166,170,336 -1124630,223,255,478 -1124631,53,58,111 -1124632,155,166,321 -1124633,134,142,276 -1124634,96,86,182 -1124701,86,83,169 -1124702,94,88,182 -1124703,305,256,561 -1124704,106,100,206 -1124705,135,128,263 -1124706,115,116,231 -1124707,199,189,388 -1124708,104,96,200 -1124709,188,168,356 -1124710,116,98,214 -1124711,191,183,374 -1124712,75,76,151 -1124713,113,108,221 -1124714,251,269,520 -1124715,274,301,575 -1124716,114,126,240 -1124717,90,114,204 -1124718,156,176,332 -1124719,199,220,419 -1124720,215,230,445 -1124721,149,161,310 -1124722,91,77,168 -1124723,113,100,213 -1124724,132,120,252 -1124725,152,163,315 -1124801,61,74,135 -1124802,141,150,291 -1124803,255,274,529 -1124804,190,180,370 -1124805,228,229,457 -1124806,240,312,552 -1124807,207,210,417 -1124808,242,317,559 -1124809,180,198,378 -1124810,242,240,482 -1124811,242,281,523 -1124812,227,234,461 -1124813,137,146,283 -1124814,196,198,394 -1124815,232,240,472 -1124816,247,248,495 -1124817,176,153,329 -1124818,322,279,601 -1124819,208,242,450 -1124820,181,207,388 -1124821,234,264,498 -1124822,109,101,210 -1124823,226,268,494 -1124824,206,204,410 -1124825,223,246,469 -1124826,191,234,425 -1124827,124,138,262 -1124828,147,149,296 -1124829,161,223,384 -1124830,236,245,481 -1124831,51,49,100 -1124832,111,96,207 -1124833,119,124,243 -1124834,145,100,245 -1124835,288,217,505 -1124836,200,152,352 -1124837,229,221,450 -1124838,92,83,175 -1124839,199,181,380 -1124840,200,205,405 -1124901,263,303,566 -1124902,115,116,231 -1124903,124,104,228 -1124904,247,233,480 -1124905,141,128,269 -1124906,173,158,331 -1124907,82,94,176 -1124908,174,177,351 -1124909,217,210,427 -1124910,252,260,512 -1124911,227,219,446 -1124912,334,327,661 -1124913,172,165,337 -1124914,157,175,332 -1124915,119,126,245 -1124916,189,191,380 -1124917,179,178,357 -1124918,105,88,193 -1124919,242,243,485 -1124920,138,159,297 -1124921,204,203,407 -1124922,259,264,523 -1124923,106,91,197 -1124924,168,183,351 -1124925,155,165,320 -1124926,158,167,325 -1124927,98,114,212 -1124928,0,0,0 -1124929,136,129,265 -1124930,228,240,468 -1124931,120,115,235 -1124932,91,77,168 -1124933,256,234,490 -1124934,239,206,445 -1124935,118,116,234 -1124936,152,122,274 -1124937,193,178,371 -1124938,138,108,246 -1124939,181,152,333 -1124940,132,139,271 -1124941,118,117,235 -1124942,222,219,441 -1124943,197,182,379 -1124944,128,132,260 -1125001,283,261,544 -1125002,446,448,894 -1125003,374,390,764 -1125004,435,474,909 -1125005,256,270,526 -1125006,153,166,319 -1125007,308,316,624 -1125008,266,274,540 -1125009,290,306,596 -1125010,0,0,0 -1125011,214,254,468 -1125012,197,218,415 -1125013,247,292,539 -1125014,153,194,347 -1125015,162,173,335 -1125016,160,223,383 -1125017,296,352,648 -1125018,133,148,281 -1125019,207,158,365 -1125020,316,313,629 -1125021,247,241,488 -1125022,171,152,323 -1125101,196,219,415 -1125102,127,123,250 -1125103,227,254,481 -1125104,148,152,300 -1125105,249,325,574 -1125106,130,135,265 -1125107,201,209,410 -1125108,292,298,590 -1125109,36,33,69 -1125110,5,5,10 -1125111,228,212,440 -1125112,145,160,305 -1125113,215,260,475 -1125114,179,183,362 -1125115,297,350,647 -1125116,131,215,346 -1125117,129,139,268 -1125118,4,4,8 -1125119,220,274,494 -1125120,186,169,355 -1125121,191,225,416 -1125122,235,276,511 -1125123,114,123,237 -1125201,164,155,319 -1125202,123,124,247 -1125203,244,241,485 -1125204,113,106,219 -1125205,228,213,441 -1125206,191,193,384 -1125207,104,119,223 -1125208,123,124,247 -1125209,118,137,255 -1125210,179,156,335 -1125211,146,138,284 -1125212,201,194,395 -1125213,140,146,286 -1125214,169,178,347 -1125215,109,99,208 -1125216,91,97,188 -1125217,140,134,274 -1125218,162,155,317 -1125219,153,156,309 -1125220,166,163,329 -1125221,122,116,238 -1125222,170,156,326 -1125223,111,102,213 -1125224,163,157,320 -1125225,141,140,281 -1125226,149,149,298 -1125227,182,181,363 -1125228,96,108,204 -1125229,232,236,468 -1125230,102,112,214 -1125231,133,140,273 -1125232,147,134,281 -1125301,171,202,373 -1125302,199,178,377 -1125303,235,229,464 -1125304,145,142,287 -1125305,220,201,421 -1125306,156,138,294 -1125307,163,119,282 -1125308,344,340,684 -1125309,442,522,964 -1125310,239,238,477 -1125311,211,238,449 -1125312,206,232,438 -1125313,197,209,406 -1125314,289,286,575 -1125315,195,213,408 -1125316,276,268,544 -1125317,163,150,313 -1125318,181,205,386 -1125319,0,0,0 -1125320,282,300,582 -1125321,131,132,263 -1125322,122,140,262 -1125323,299,297,596 -1125324,0,0,0 -1125325,225,240,465 -1125326,156,187,343 -1125327,233,242,475 -1125328,237,241,478 -1125329,265,266,531 -1125401,205,222,427 -1125402,159,210,369 -1125403,77,72,149 -1125404,118,127,245 -1125405,179,248,427 -1125406,155,150,305 -1125407,174,189,363 -1125408,240,281,521 -1125409,132,146,278 -1125410,202,214,416 -1125411,177,207,384 -1125412,165,195,360 -1125413,123,125,248 -1125414,179,203,382 -1125415,191,218,409 -1125416,99,116,215 -1125417,104,136,240 -1125418,203,223,426 -1125419,174,153,327 -1125420,194,203,397 -1125421,207,253,460 -1125422,257,237,494 -1125423,165,169,334 -1125424,206,216,422 -1125425,188,215,403 -1125426,200,204,404 -1125427,116,109,225 -1125428,148,148,296 -1125429,249,209,458 -1125430,132,137,269 -1125431,184,226,410 -1125432,248,287,535 -1125433,236,269,505 -1125434,164,165,329 -1125435,313,311,624 -1125436,140,138,278 -1125437,83,75,158 -1125438,197,228,425 -1125439,189,182,371 -1125440,382,410,792 -1125441,211,283,494 -1125442,246,254,500 -1125443,130,133,263 -1125444,282,311,593 -1125445,137,199,336 -1125446,276,274,550 -1125447,191,197,388 -1125501,297,384,681 -1125502,206,219,425 -1125503,175,207,382 -1125504,103,129,232 -1125505,0,0,0 -1125506,145,146,291 -1125507,182,178,360 -1125508,245,283,528 -1125509,78,106,184 -1125510,163,169,332 -1125511,301,340,641 -1125512,160,145,305 -1125513,355,355,710 -1125514,144,152,296 -1125515,143,148,291 -1125516,283,277,560 -1125517,115,103,218 -1125518,288,309,597 -1125519,110,154,264 -1125520,145,182,327 -1125521,258,291,549 -1125522,121,139,260 -1125523,5,4,9 -1125524,256,259,515 -1125525,195,254,449 -1125526,145,169,314 -1125527,143,150,293 -1125528,243,277,520 -1125529,95,107,202 -1125530,244,271,515 -1125531,275,282,557 -1125532,192,213,405 -1125533,153,182,335 -1125534,151,153,304 -1125535,0,0,0 -1125536,218,253,471 -1125537,84,116,200 -1125538,133,147,280 -1125539,194,182,376 -1125540,85,121,206 -1125541,134,229,363 -1125542,226,227,453 -1125543,289,313,602 -1125544,206,314,520 -1125545,156,168,324 -1125546,180,200,380 -1125547,215,262,477 -1125548,148,149,297 -1125549,123,104,227 -1125550,230,285,515 -1125551,177,186,363 -1125552,178,180,358 -1125553,246,218,464 -1125554,277,285,562 -1125555,121,153,274 -1125556,166,173,339 -1125557,215,216,431 -1125558,243,302,545 -1125559,170,121,291 -1125560,326,415,741 -1125561,210,278,488 -1125562,217,249,466 -1125563,115,190,305 -1125564,229,225,454 -1125565,138,123,261 -1125566,276,295,571 -1125567,265,330,595 -1125601,162,166,328 -1125602,130,143,273 -1125603,127,134,261 -1125604,192,168,360 -1125605,139,130,269 -1125606,201,255,456 -1125607,310,313,623 -1125608,291,264,555 -1125609,186,188,374 -1125610,127,129,256 -1125611,154,168,322 -1125612,126,125,251 -1125613,249,283,532 -1125614,295,317,612 -1125615,174,189,363 -1125616,285,297,582 -1125617,171,164,335 -1125618,13,12,25 -1125619,173,192,365 -1125620,211,228,439 -1125621,249,275,524 -1125622,243,226,469 -1125623,284,244,528 -1125624,238,268,506 -1125625,200,228,428 -1125626,201,219,420 -1125627,209,235,444 -1125628,179,190,369 -1125629,391,401,792 -1125630,242,208,450 -1125631,92,96,188 -1125632,148,156,304 -1125633,173,147,320 -1125634,336,296,632 -1125635,207,254,461 -1125636,177,158,335 -1125637,273,247,520 -1125638,231,233,464 -1125639,160,179,339 -1125640,157,128,285 -1125641,81,73,154 -1125642,245,247,492 -1125643,126,125,251 -1125644,205,197,402 -1125645,117,138,255 -1125701,132,123,255 -1125702,86,71,157 -1125703,257,222,479 -1125704,158,153,311 -1125705,70,66,136 -1125706,114,77,191 -1125707,230,204,434 -1125708,156,143,299 -1125709,231,199,430 -1125710,241,176,417 -1125711,238,203,441 -1125712,255,233,488 -1125713,141,135,276 -1125714,126,107,233 -1125715,148,113,261 -1125716,113,84,197 -1125717,165,131,296 -1125718,148,138,286 -1125719,97,72,169 -1125720,209,183,392 -1125721,160,149,309 -1125722,195,177,372 -1125723,159,152,311 -1125724,110,111,221 -1125725,128,136,264 -1125726,241,247,488 -1125727,154,157,311 -1125728,177,176,353 -1125729,100,107,207 -1125730,204,175,379 -1125731,111,105,216 -1125732,256,248,504 -1125733,161,133,294 -1125734,181,169,350 -1125735,147,112,259 -1125736,159,185,344 -1125737,123,100,223 -1125738,133,126,259 -1125739,0,0,0 -1125740,143,128,271 -1125741,219,195,414 -1125742,106,81,187 -1125801,132,145,277 -1125802,313,336,649 -1125803,10,13,23 -1125804,193,199,392 -1125805,126,159,285 -1125806,22,23,45 -1125807,136,155,291 -1125808,94,95,189 -1125809,146,167,313 -1125810,178,168,346 -1125811,179,196,375 -1125812,43,82,125 -1125813,162,149,311 -1125814,123,122,245 -1125815,146,175,321 -1125816,183,186,369 -1125817,162,188,350 -1125818,244,266,510 -1125819,104,107,211 -1125820,199,176,375 -1125821,203,187,390 -1125822,167,129,296 -1125823,125,112,237 -1125824,136,167,303 -1125825,114,124,238 -1125826,190,215,405 -1125827,254,252,506 -1125828,192,215,407 -1125829,238,229,467 -1125830,208,233,441 -1125831,106,89,195 -1125901,118,153,271 -1125902,170,197,367 -1125903,167,175,342 -1125904,95,103,198 -1125905,210,231,441 -1125906,114,114,228 -1125907,238,227,465 -1125908,166,162,328 -1125909,211,180,391 -1125910,160,155,315 -1125911,103,115,218 -1125912,89,95,184 -1125913,154,171,325 -1125914,100,108,208 -1125915,114,98,212 -1125916,107,96,203 -1125917,113,134,247 -1125918,125,106,231 -1125919,143,172,315 -1125920,0,0,0 -1125921,109,116,225 -1125922,219,186,405 -1126001,237,237,474 -1126002,253,261,514 -1126003,157,156,313 -1126004,123,101,224 -1126005,230,100,330 -1126006,116,108,224 -1126007,168,135,303 -1126008,6,5,11 -1126009,121,123,244 -1126010,6,6,12 -1126011,12,12,24 -1126012,176,160,336 -1126013,120,109,229 -1126014,79,77,156 -1126101,178,182,360 -1126102,219,225,444 -1126103,239,238,477 -1126104,186,181,367 -1126105,238,210,448 -1126106,164,179,343 -1126107,107,106,213 -1126108,186,213,399 -1126109,109,102,211 -1126110,149,183,332 -1126111,197,197,394 -1126112,226,229,455 -1126113,211,211,422 -1126114,151,180,331 -1126115,201,212,413 -1126116,121,114,235 -1126117,110,127,237 -1126118,84,71,155 -1126119,6,5,11 -1126120,31,22,53 -1126201,151,141,292 -1126202,108,90,198 -1126203,199,197,396 -1126204,96,98,194 -1126205,200,165,365 -1126206,150,132,282 -1126207,92,75,167 -1126208,156,112,268 -1126209,66,58,124 -1126210,108,107,215 -1126211,156,151,307 -1126212,214,223,437 -1126213,126,96,222 -1126214,228,219,447 -1126215,203,190,393 -1126216,176,163,339 -1126301,266,259,525 -1126302,252,319,571 -1126303,133,142,275 -1126304,238,267,505 -1126305,189,199,388 -1126306,176,192,368 -1126307,113,131,244 -1126308,140,165,305 -1126309,161,162,323 -1126310,103,97,200 -1126311,258,240,498 -1126312,146,148,294 -1126313,256,252,508 -1126314,85,76,161 -1126315,151,151,302 -1126316,174,169,343 -1126317,141,170,311 -1126318,145,177,322 -1126319,197,213,410 -1126320,133,156,289 -1126321,157,148,305 -1126322,0,0,0 -1126401,152,150,302 -1126402,179,182,361 -1126403,115,132,247 -1126404,152,148,300 -1126405,128,142,270 -1126406,213,239,452 -1126407,174,164,338 -1126408,216,194,410 -1126409,208,157,365 -1126410,183,151,334 -1126411,103,96,199 -1126501,190,173,363 -1126502,118,118,236 -1126503,218,229,447 -1126504,163,141,304 -1126505,223,266,489 -1126506,217,214,431 -1126507,117,124,241 -1126508,3,3,6 -1126509,761,18,779 -1126510,203,210,413 -1126511,111,120,231 -1126512,228,232,460 -1126513,96,83,179 -1126514,272,258,530 -1126515,215,199,414 -1126516,171,128,299 -1126517,0,0,0 -1126601,0,0,0 -1126602,90,79,169 -1126603,113,92,205 -1126604,163,146,309 -1126605,164,197,361 -1126606,132,111,243 -1126607,209,208,417 -1126608,169,160,329 -1126609,133,155,288 -1126610,105,85,190 -1126611,92,118,210 -1126612,189,218,407 -1126613,154,162,316 -1126614,146,141,287 -1126615,170,213,383 -1126616,154,140,294 -1126617,144,130,274 -1126618,186,173,359 -1126619,209,213,422 -1126620,173,191,364 -1126621,114,104,218 -1126622,130,138,268 -1126701,143,155,298 -1126702,172,177,349 -1126703,190,155,345 -1126704,149,164,313 -1126705,120,133,253 -1126706,0,0,0 -1126707,186,174,360 -1126708,192,214,406 -1126709,235,272,507 -1126710,170,182,352 -1126711,219,231,450 -1126712,189,210,399 -1126713,154,135,289 -1126714,246,234,480 -1126715,191,196,387 -1126716,121,141,262 -1126717,228,245,473 -1126718,212,240,452 -1126719,193,208,401 -1126720,119,146,265 -1126721,240,230,470 -1126722,151,169,320 -1126723,201,235,436 -1126724,142,123,265 -1126725,250,270,520 -1126726,125,149,274 -1126727,278,267,545 -1126728,160,155,315 -1126729,217,217,434 -1126730,101,125,226 -1126731,172,175,347 -1126732,197,243,440 -1126733,164,200,364 -1126734,140,147,287 -1126735,113,100,213 -1126736,215,282,497 -1126737,213,243,456 -1126738,164,177,341 -1126739,306,319,625 -1126740,118,142,260 -1126741,249,247,496 -1126742,129,105,234 -1126743,231,265,496 -1126801,181,226,407 -1126802,128,159,287 -1126803,155,144,299 -1126804,171,178,349 -1126805,183,220,403 -1126806,63,67,130 -1126807,61,51,112 -1126808,201,361,562 -1126809,295,276,571 -1126810,86,81,167 -1126811,15,15,30 -1126812,97,79,176 -1126901,380,359,739 -1126902,265,264,529 -1126903,194,216,410 -1126904,198,197,395 -1126905,445,507,952 -1126906,245,292,537 -1126907,127,115,242 -1126908,3,0,3 -1126909,0,5,5 -1126910,298,314,612 -1126911,233,198,431 -1126912,257,260,517 -1126913,194,205,399 -1126914,143,162,305 -1126915,196,215,411 -1126916,181,205,386 -1126917,167,185,352 -1126918,368,388,756 -1126919,441,449,890 -1126920,241,268,509 -1126921,204,216,420 -1126922,253,274,527 -1126923,190,206,396 -1126924,210,336,546 -1126925,112,134,246 -1126926,112,127,239 -1126927,236,223,459 -1126928,249,258,507 -1126929,204,234,438 -1126930,154,171,325 -1126931,158,177,335 -1126932,208,200,408 -1126933,143,230,373 -1126934,204,253,457 -1126935,263,269,532 -1126936,168,219,387 -1126937,149,175,324 -1126938,179,183,362 -1126939,223,211,434 -1126940,193,204,397 -1126941,154,148,302 -1126942,178,192,370 -1126943,116,147,263 -1126944,246,262,508 -1126945,220,233,453 -1126946,183,193,376 -1126947,175,179,354 -1126948,197,220,417 -1126949,155,174,329 -1127001,179,160,339 -1127002,48,57,105 -1127003,150,170,320 -1127004,174,210,384 -1127005,218,238,456 -1127006,145,159,304 -1127007,225,268,493 -1127008,126,183,309 -1127009,236,234,470 -1127010,227,205,432 -1127011,202,214,416 -1127012,200,238,438 -1127013,221,287,508 -1127014,187,193,380 -1127015,151,139,290 -1127016,152,159,311 -1127017,137,141,278 -1127018,135,202,337 -1127019,217,217,434 -1127020,223,117,340 -1127021,268,280,548 -1127022,218,236,454 -1127023,179,183,362 -1127024,160,168,328 -1127025,241,229,470 -1127026,142,170,312 -1127027,149,154,303 -1127028,192,177,369 -1127029,173,224,397 -1127030,0,0,0 -1127031,231,196,427 -1127032,214,245,459 -1127101,101,96,197 -1127102,3,0,3 -1127103,101,120,221 -1127104,146,155,301 -1127105,68,67,135 -1127106,229,247,476 -1127107,165,163,328 -1127108,163,138,301 -1127109,163,143,306 -1127110,166,139,305 -1127111,206,204,410 -1127112,186,204,390 -1127113,104,87,191 -1127114,109,121,230 -1127115,322,300,622 -1127116,275,242,517 -1127117,109,120,229 -1127118,128,108,236 -1127119,130,145,275 -1127120,99,94,193 -1127121,115,111,226 -1127122,245,231,476 -1127123,216,202,418 -1127124,171,189,360 -1127125,125,149,274 -1127126,180,204,384 -1127127,239,284,523 -1127128,195,218,413 -1127129,274,267,541 -1127130,202,190,392 -1127131,119,104,223 -1127132,159,160,319 -1127133,483,75,558 -1127134,15,13,28 -1127135,179,176,355 -1127136,292,280,572 -1127137,239,277,516 -1127138,220,251,471 -1127139,189,190,379 -1127140,118,117,235 -1127141,154,153,307 -1127142,84,85,169 -1127201,177,192,369 -1127202,267,298,565 -1127203,176,198,374 -1127204,166,214,380 -1127205,142,156,298 -1127206,124,128,252 -1127207,218,225,443 -1127208,93,97,190 -1127209,217,217,434 -1127210,145,140,285 -1127211,161,130,291 -1127212,131,165,296 -1127213,182,192,374 -1127214,127,126,253 -1127215,152,140,292 -1127216,107,91,198 -1127217,248,274,522 -1127218,109,123,232 -1127219,163,159,322 -1127220,157,161,318 -1127221,123,133,256 -1127222,233,230,463 -1127223,190,223,413 -1127224,235,238,473 -1127301,44,33,77 -1127302,208,226,434 -1127303,166,174,340 -1127304,148,114,262 -1127305,212,234,446 -1127306,210,193,403 -1127307,257,253,510 -1127308,236,262,498 -1127309,71,54,125 -1127310,178,148,326 -1127311,0,0,0 -1127312,53,52,105 -1127401,132,128,260 -1127402,62,39,101 -1127403,155,165,320 -1127404,166,140,306 -1127405,118,118,236 -1127406,157,168,325 -1127407,169,170,339 -1127408,243,252,495 -1127409,121,105,226 -1127410,155,121,276 -1127411,190,191,381 -1127412,169,147,316 -1127413,144,148,292 -1127414,137,123,260 -1127415,18,23,41 -1127416,297,325,622 -1127501,20,19,39 -1127601,139,144,283 -1127602,226,224,450 -1127603,210,233,443 -1127604,162,178,340 -1127605,190,220,410 -1127606,205,217,422 -1127607,223,245,468 -1127608,160,171,331 -1127609,187,204,391 -1127610,148,142,290 -1127701,207,233,440 -1127702,186,190,376 -1127703,235,255,490 -1127704,121,120,241 -1127705,193,186,379 -1127706,105,106,211 -1127707,134,129,263 -1127708,185,166,351 -1127709,129,159,288 -1127710,163,171,334 -1127711,237,237,474 -1127712,218,240,458 -1127713,143,141,284 -1127714,176,188,364 -1127715,141,176,317 -1127716,150,141,291 -1127717,244,257,501 -1127718,215,198,413 -1127719,179,186,365 -1127720,162,152,314 -1127721,216,198,414 -1127722,156,154,310 -1127723,217,247,464 -1127724,114,117,231 -1127725,259,258,517 -1127726,189,178,367 -1127727,272,302,574 -1127728,225,249,474 -1127729,154,163,317 -1127730,252,255,507 -1127731,170,170,340 -1127732,266,272,538 -1127733,276,297,573 -1127734,176,163,339 -1127735,172,174,346 -1127736,109,110,219 -1127737,256,312,568 -1127738,114,139,253 -1127739,185,195,380 -1127740,0,3,3 -1127741,163,173,336 -1127801,242,266,508 -1127802,166,177,343 -1127803,288,286,574 -1127804,87,119,206 -1127805,207,29,236 -1127806,53,42,95 -1127807,614,139,753 -1127808,89,172,261 -1127809,156,190,346 -1127810,166,204,370 -1127811,216,262,478 -1127812,228,261,489 -1127813,220,258,478 -1127814,458,496,954 -1127815,304,281,585 -1127816,248,265,513 -1127817,143,185,328 -1127818,180,180,360 -1127819,191,189,380 -1127820,183,162,345 -1127821,214,223,437 -1127822,213,238,451 -1127823,115,122,237 -1127824,36,34,70 -1127825,174,185,359 -1127826,328,332,660 -1127827,136,155,291 -1127828,228,243,471 -1127829,221,215,436 -1127830,162,161,323 -1127831,106,130,236 -1127832,205,226,431 -1127833,169,157,326 -1127834,135,150,285 -1127835,207,218,425 -1127836,142,159,301 -1127837,127,117,244 -1127838,105,104,209 -1127839,227,265,492 -1127840,302,315,617 -1127841,162,177,339 -1127842,186,181,367 -1127843,174,153,327 -1127844,162,187,349 -1127845,183,212,395 -1127846,219,224,443 -1127901,0,0,0 -1127902,0,0,0 -1127903,0,0,0 -1127904,308,299,607 -1127905,173,194,367 -1127906,115,109,224 -1127907,137,145,282 -1127908,185,196,381 -1127909,167,218,385 -1127910,188,206,394 -1127911,309,310,619 -1127912,131,152,283 -1127913,190,182,372 -1127914,107,115,222 -1127915,212,227,439 -1127916,234,256,490 -1127917,167,172,339 -1127918,119,126,245 -1127919,82,104,186 -1127920,145,197,342 -1127921,184,184,368 -1127922,241,232,473 -1127923,289,263,552 -1127924,63,62,125 -1127925,129,159,288 -1127926,123,123,246 -1127927,226,253,479 -1127928,187,200,387 -1127929,188,201,389 -1127930,178,169,347 -1127931,181,220,401 -1127932,171,178,349 -1127933,159,164,323 -1127934,232,278,510 -1127935,119,127,246 -1127936,247,265,512 -1127937,207,230,437 -1127938,0,0,0 -1128001,89,91,180 -1128002,122,122,244 -1128003,251,273,524 -1128004,174,156,330 -1128005,192,186,378 -1128006,199,197,396 -1128007,0,3,3 -1128008,129,165,294 -1128009,149,156,305 -1128010,174,131,305 -1128011,140,143,283 -1128012,161,163,324 -1128013,144,154,298 -1128014,133,126,259 -1128101,145,134,279 -1128102,149,163,312 -1128103,225,215,440 -1128104,201,203,404 -1128105,171,150,321 -1128106,119,117,236 -1128107,154,148,302 -1128108,167,158,325 -1128109,140,139,279 -1128110,207,191,398 -1128201,0,0,0 -1128202,197,192,389 -1128203,297,320,617 -1128204,265,297,562 -1128205,231,208,439 -1128206,153,181,334 -1128207,109,127,236 -1128208,141,204,345 -1128209,140,146,286 -1128210,184,200,384 -1128211,169,196,365 -1128212,214,242,456 -1128213,117,97,214 -1128214,170,187,357 -1128215,212,241,453 -1128216,109,136,245 -1128217,167,184,351 -1128218,113,124,237 -1128219,228,266,494 -1128220,129,158,287 -1128221,219,218,437 -1128222,164,178,342 -1128223,174,209,383 -1128224,185,202,387 -1128225,135,232,367 -1128226,217,228,445 -1128227,235,228,463 -1128228,195,192,387 -1128229,206,225,431 -1128230,182,210,392 -1128231,246,246,492 -1128232,117,149,266 -1128233,165,165,330 -1128234,133,141,274 -1128235,212,252,464 -1128236,113,139,252 -1128237,200,220,420 -1128238,148,158,306 -1128239,123,132,255 -1128301,106,86,192 -1128302,198,184,382 -1128303,126,108,234 -1128304,224,197,421 -1128305,306,294,600 -1128306,176,163,339 -1128307,210,185,395 -1128308,103,113,216 -1128309,169,156,325 -1128310,105,92,197 -1128311,0,0,0 -1128312,16,15,31 -1128313,130,127,257 -1128314,203,195,398 -1128315,93,102,195 -1128316,114,94,208 -1128317,128,122,250 -1128401,143,196,339 -1128402,149,178,327 -1128403,148,157,305 -1128404,200,209,409 -1128405,267,279,546 -1128406,175,207,382 -1128407,214,234,448 -1128408,150,171,321 -1128409,319,343,662 -1128410,79,84,163 -1128411,227,233,460 -1128412,161,178,339 -1128413,203,257,460 -1128414,135,181,316 -1128415,175,214,389 -1128416,195,212,407 -1128417,148,162,310 -1128418,190,214,404 -1128419,160,204,364 -1128420,148,173,321 -1128421,170,190,360 -1128422,302,305,607 -1128423,162,181,343 -1128424,181,265,446 -1128425,162,162,324 -1128426,258,284,542 -1128427,147,183,330 -1128428,173,206,379 -1128429,55,57,112 -1128430,297,288,585 -1128431,183,282,465 -1128501,172,141,313 -1128502,194,190,384 -1128503,126,113,239 -1128504,193,188,381 -1128505,239,230,469 -1128506,306,289,595 -1128507,220,208,428 -1128508,154,149,303 -1128509,202,198,400 -1128510,178,172,350 -1128511,162,166,328 -1128512,91,88,179 -1128513,294,324,618 -1128514,143,149,292 -1128515,164,173,337 -1128516,26,23,49 -1128601,188,185,373 -1128602,0,0,0 -1128603,148,152,300 -1128604,184,217,401 -1128605,167,183,350 -1128606,202,216,418 -1128607,238,306,544 -1128608,129,125,254 -1128609,145,179,324 -1128610,227,258,485 -1128611,199,206,405 -1128612,0,0,0 -1128613,221,244,465 -1128614,215,476,691 -1128615,261,277,538 -1128616,140,137,277 -1128617,136,130,266 -1128618,138,123,261 -1128619,212,264,476 -1128620,241,249,490 -1128621,116,106,222 -1128622,154,154,308 -1128623,107,141,248 -1128701,195,180,375 -1128702,227,195,422 -1128703,304,324,628 -1128704,302,338,640 -1128705,214,204,418 -1128706,123,140,263 -1128707,210,201,411 -1128708,214,248,462 -1128709,167,196,363 -1128710,184,192,376 -1128711,144,140,284 -1128712,83,88,171 -1128713,102,139,241 -1128714,391,395,786 -1128715,26,34,60 -1128716,206,277,483 -1128717,166,213,379 -1128718,156,173,329 -1128719,155,161,316 -1128720,83,163,246 -1128721,271,271,542 -1128722,0,0,0 -1128723,166,182,348 -1128724,124,117,241 -1128725,61,55,116 -1128726,13,7,20 -1128801,69,83,152 -1128802,144,142,286 -1128803,109,116,225 -1128804,154,153,307 -1128805,160,149,309 -1128806,131,118,249 -1128807,264,251,515 -1128808,95,88,183 -1128809,110,129,239 -1128810,7,3,10 -1128811,105,103,208 -1128812,334,358,692 -1128901,305,317,622 -1128902,190,196,386 -1128903,257,275,532 -1128904,251,223,474 -1128905,73,78,151 -1128906,183,203,386 -1128907,141,128,269 -1128908,101,92,193 -1128909,165,145,310 -1128910,122,129,251 -1128911,81,67,148 -1128912,78,75,153 -1128913,158,151,309 -1128914,203,267,470 -1128915,129,157,286 -1128916,185,223,408 -1128917,159,171,330 -1128918,130,152,282 -1128919,102,100,202 -1129001,255,271,526 -1129002,342,363,705 -1129003,230,260,490 -1129004,217,298,515 -1129005,293,352,645 -1129006,196,182,378 -1129007,148,147,295 -1129008,299,302,601 -1129009,240,205,445 -1129010,245,240,485 -1129011,174,173,347 -1129012,253,246,499 -1129013,272,277,549 -1129014,236,235,471 -1129015,212,216,428 -1129016,305,282,587 -1129017,158,158,316 -1129018,270,270,540 -1129019,174,163,337 -1129020,199,200,399 -1129021,271,257,528 -1129022,211,198,409 -1129023,171,186,357 -1129024,276,252,528 -1129025,127,121,248 -1129026,302,265,567 -1129027,164,179,343 -1129028,250,249,499 -1129029,260,260,520 -1129030,154,178,332 -1129031,270,279,549 -1129032,286,413,699 -1129033,335,372,707 -1129034,105,110,215 -1129035,269,258,527 -1129036,209,199,408 -1129037,311,356,667 -1129038,147,159,306 -1129039,108,110,218 -1129040,248,232,480 -1129041,146,164,310 -1129042,241,240,481 -1129043,278,304,582 -1129044,138,147,285 -1129045,284,278,562 -1129046,96,103,199 -1129047,133,136,269 -1129101,155,197,352 -1129102,194,199,393 -1129103,257,273,530 -1129104,195,212,407 -1129105,233,231,464 -1129106,192,212,404 -1129107,136,122,258 -1129108,252,238,490 -1129109,236,244,480 -1129110,240,275,515 -1129111,269,284,553 -1129112,196,183,379 -1129113,125,135,260 -1129114,187,202,389 -1129115,213,214,427 -1129116,280,295,575 -1129117,163,159,322 -1129118,204,202,406 -1129119,223,225,448 -1129120,192,207,399 -1129121,227,209,436 -1129122,126,147,273 -1129123,160,208,368 -1129124,158,141,299 -1129125,148,155,303 -1129126,537,525,1062 -1129127,7,14,21 -1129128,262,273,535 -1129129,288,279,567 -1129130,89,108,197 -1129131,185,184,369 -1129132,100,120,220 -1129133,225,238,463 -1129134,126,117,243 -1129135,151,152,303 -1129136,102,121,223 -1129137,224,242,466 -1129138,0,0,0 -1129139,197,196,393 -1129140,221,265,486 -1129141,184,186,370 -1129142,270,235,505 -1129143,343,350,693 -1129144,227,226,453 -1129145,277,226,503 -1129146,184,213,397 -1129147,0,3,3 -1129201,142,143,285 -1129202,252,254,506 -1129203,195,203,398 -1129204,239,245,484 -1129205,153,156,309 -1129206,225,253,478 -1129207,149,174,323 -1129208,134,136,270 -1129209,191,209,400 -1129210,257,251,508 -1129211,155,231,386 -1129212,241,241,482 -1129213,294,281,575 -1129214,0,0,0 -1129215,147,147,294 -1129216,122,128,250 -1129217,308,283,591 -1129218,304,315,619 -1129219,292,295,587 -1129220,199,246,445 -1129221,221,219,440 -1129222,183,164,347 -1129223,170,150,320 -1129224,165,176,341 -1129225,336,314,650 -1129226,110,103,213 -1129227,281,287,568 -1129228,271,256,527 -1129229,147,122,269 -1129230,280,317,597 -1129231,239,258,497 -1129232,112,112,224 -1129233,203,199,402 -1129234,189,199,388 -1129235,188,214,402 -1129236,201,202,403 -1129237,254,309,563 -1129238,239,256,495 -1129239,233,219,452 -1129240,210,222,432 -1129241,331,334,665 -1129242,278,282,560 -1129243,8,8,16 -1129244,174,162,336 -1129245,250,288,538 -1129246,280,303,583 -1129247,198,197,395 -1129248,310,332,642 -1129249,322,332,654 -1129250,217,232,449 -1129251,304,341,645 -1129252,0,0,0 -1129253,179,187,366 -1129254,183,190,373 -1129255,145,145,290 -1129256,146,153,299 -1129257,230,228,458 -1129258,217,221,438 -1129259,242,246,488 -1129260,189,213,402 -1129261,560,567,1127 -1129262,254,263,517 -1129263,110,125,235 -1129264,132,119,251 -1129301,167,194,361 -1129302,200,201,401 -1129303,288,292,580 -1129304,145,141,286 -1129305,262,275,537 -1129306,157,168,325 -1129307,164,175,339 -1129308,232,269,501 -1129309,116,106,222 -1129310,173,169,342 -1129311,144,136,280 -1129312,106,110,216 -1129313,146,148,294 -1129314,140,132,272 -1129315,240,253,493 -1129316,141,173,314 -1129317,246,252,498 -1129318,140,146,286 -1129319,200,198,398 -1129320,181,189,370 -1129321,185,214,399 -1129322,138,135,273 -1129323,94,93,187 -1129324,119,121,240 -1129325,199,225,424 -1129326,117,97,214 -1129327,199,191,390 -1129328,167,169,336 -1129329,186,157,343 -1129330,169,188,357 -1129331,239,246,485 -1129332,184,197,381 -1129333,255,240,495 -1129334,208,225,433 -1129335,154,154,308 -1129336,246,266,512 -1129337,321,310,631 -1129338,192,167,359 -1129339,198,222,420 -1129340,173,175,348 -1129341,123,130,253 -1129342,97,188,285 -1129343,0,0,0 -1129344,151,239,390 -1129345,445,1063,1508 -1129346,0,0,0 -1129347,223,211,434 -1129348,208,219,427 -1129349,128,138,266 -1129350,115,121,236 -1129351,307,302,609 -1129352,205,234,439 -1129353,172,177,349 -1129354,153,149,302 -1129355,160,149,309 -1129356,239,212,451 -1129357,213,211,424 -1129358,237,232,469 -1129359,173,188,361 -1129360,187,192,379 -1129361,122,124,246 -1129362,221,239,460 -1129363,266,299,565 -1129364,167,176,343 -1129401,304,284,588 -1129402,179,179,358 -1129403,110,133,243 -1129404,42,54,96 -1129405,173,206,379 -1129406,160,159,319 -1129407,148,156,304 -1129408,230,236,466 -1129409,172,170,342 -1129410,150,128,278 -1129411,114,101,215 -1129412,202,225,427 -1129413,297,312,609 -1129414,172,198,370 -1129415,170,224,394 -1129416,224,220,444 -1129501,117,122,239 -1129502,260,271,531 -1129503,215,224,439 -1129504,286,314,600 -1129505,351,336,687 -1129506,258,251,509 -1129507,167,157,324 -1129508,187,195,382 -1129509,363,371,734 -1129510,235,245,480 -1129511,196,210,406 -1129512,333,311,644 -1129513,221,196,417 -1129514,300,303,603 -1129515,289,285,574 -1129516,311,356,667 -1129517,149,138,287 -1129518,233,282,515 -1129519,254,252,506 -1129520,252,244,496 -1129521,149,153,302 -1129522,315,363,678 -1129523,277,281,558 -1129524,329,314,643 -1129525,260,274,534 -1129526,213,198,411 -1129527,263,261,524 -1129528,170,189,359 -1129529,221,242,463 -1129530,245,246,491 -1129531,123,137,260 -1129532,164,186,350 -1129533,192,234,426 -1129534,185,185,370 -1129535,414,415,829 -1129536,213,232,445 -1129537,266,292,558 -1129538,305,288,593 -1129539,167,175,342 -1129540,225,230,455 -1129541,144,146,290 -1129542,241,263,504 -1129543,216,254,470 -1129544,272,299,571 -1129545,281,264,545 -1129546,365,415,780 -1129547,209,214,423 -1129548,275,269,544 -1129601,177,155,332 -1129602,160,160,320 -1129603,195,194,389 -1129604,117,119,236 -1129605,172,184,356 -1129606,219,225,444 -1129607,127,133,260 -1129608,123,143,266 -1129609,177,168,345 -1129610,279,307,586 -1129611,203,208,411 -1129612,168,162,330 -1129613,167,181,348 -1129614,302,327,629 -1129615,217,222,439 -1129616,214,213,427 -1129617,202,182,384 -1129618,92,167,259 -1129619,199,213,412 -1129620,263,246,509 -1129621,188,188,376 -1129622,288,288,576 -1129623,178,184,362 -1129624,134,121,255 -1129625,211,244,455 -1129626,122,131,253 -1129627,186,199,385 -1129628,252,247,499 -1129629,237,229,466 -1129630,153,160,313 -1129631,174,185,359 -1129632,227,244,471 -1129701,198,197,395 -1129702,174,188,362 -1129703,203,215,418 -1129704,167,173,340 -1129705,153,146,299 -1129706,99,98,197 -1129707,135,112,247 -1129708,131,132,263 -1129709,225,218,443 -1129710,182,185,367 -1129711,108,112,220 -1129712,178,170,348 -1129713,207,346,553 -1129714,267,221,488 -1129715,187,167,354 -1129716,115,108,223 -1129717,136,127,263 -1129718,187,195,382 -1129719,194,177,371 -1129720,167,180,347 -1129721,135,128,263 -1129722,235,215,450 -1129723,154,143,297 -1129724,132,137,269 -1129725,138,153,291 -1129726,141,135,276 -1129727,99,85,184 -1129728,153,161,314 -1129729,143,146,289 -1129730,113,115,228 -1129731,162,156,318 -1129732,204,220,424 -1129733,179,192,371 -1129734,245,282,527 -1129735,160,195,355 -1129736,210,233,443 -1129737,216,227,443 -1129738,155,174,329 -1129739,197,183,380 -1129740,105,130,235 -1129741,133,130,263 -1129742,145,135,280 -1129743,185,184,369 -1129744,197,187,384 -1129745,135,132,267 -1129746,182,172,354 -1129747,222,223,445 -1129748,236,220,456 -1129749,168,193,361 -1129750,205,200,405 -1129751,212,202,414 -1129752,224,202,426 -1129753,262,263,525 -1129754,193,192,385 -1129755,179,186,365 -1129756,229,225,454 -1129757,99,117,216 -1129758,149,129,278 -1129801,161,158,319 -1129802,135,148,283 -1129803,200,204,404 -1129804,137,142,279 -1129805,108,86,194 -1129806,211,186,397 -1129807,203,204,407 -1129808,138,174,312 -1129809,155,158,313 -1129810,116,97,213 -1129811,136,141,277 -1129812,170,164,334 -1129813,56,85,141 -1129814,220,265,485 -1129815,137,147,284 -1129816,97,104,201 -1129817,122,121,243 -1129901,184,157,341 -1129902,311,281,592 -1129903,176,156,332 -1129904,156,125,281 -1129905,129,132,261 -1129906,99,98,197 -1129907,195,133,328 -1129908,165,140,305 -1130001,210,211,421 -1130002,245,254,499 -1130003,126,122,248 -1130004,210,206,416 -1130005,138,131,269 -1130006,138,141,279 -1130007,180,171,351 -1130008,0,0,0 -1130009,124,138,262 -1130010,168,181,349 -1130011,150,164,314 -1130012,139,125,264 -1130013,148,170,318 -1130014,160,161,321 -1130015,142,134,276 -1130016,313,286,599 -1130017,116,131,247 -1130018,190,192,382 -1130019,260,263,523 -1130020,93,99,192 -1130021,140,112,252 -1130022,235,230,465 -1130023,250,256,506 -1130024,146,135,281 -1130025,192,172,364 -1130026,191,199,390 -1130027,127,136,263 -1130028,152,153,305 -1130029,260,241,501 -1130030,114,80,194 -1130031,203,220,423 -1130032,139,145,284 -1130033,157,169,326 -1130034,208,199,407 -1130035,215,223,438 -1130036,172,172,344 -1130037,226,211,437 -1130038,156,170,326 -1130039,0,0,0 -1130040,140,119,259 -1130041,224,210,434 -1130042,234,231,465 -1130043,256,277,533 -1130044,150,138,288 -1130045,196,180,376 -1130046,125,104,229 -1130047,263,265,528 -1130048,227,205,432 -1130049,236,242,478 -1130050,196,178,374 -1130051,174,163,337 -1130052,181,169,350 -1130053,152,159,311 -1130054,221,221,442 -1130055,136,157,293 -1130056,232,203,435 -1130057,129,107,236 -1130058,173,175,348 -1130059,55,43,98 -1130060,101,107,208 -1130061,61,57,118 -1130062,248,251,499 -1130063,173,171,344 -1130101,249,188,437 -1130102,117,115,232 -1130103,166,201,367 -1130104,285,296,581 -1130105,155,151,306 -1130106,209,186,395 -1130107,243,246,489 -1130108,179,168,347 -1130109,291,295,586 -1130110,222,209,431 -1130111,168,138,306 -1130112,183,176,359 -1130113,151,122,273 -1130114,208,195,403 -1130115,230,197,427 -1130116,306,333,639 -1130117,157,175,332 -1130118,280,281,561 -1130119,202,195,397 -1130120,215,212,427 -1130121,228,220,448 -1130122,132,138,270 -1130201,255,231,486 -1130202,165,162,327 -1130203,212,215,427 -1130204,359,353,712 -1130205,290,302,592 -1130206,306,271,577 -1130207,122,113,235 -1130208,250,221,471 -1130209,184,185,369 -1130210,259,255,514 -1130211,230,271,501 -1130212,213,203,416 -1130213,128,109,237 -1130214,266,236,502 -1130215,231,222,453 -1130216,168,176,344 -1130217,194,167,361 -1130218,267,217,484 -1130219,306,303,609 -1130220,276,260,536 -1130221,165,158,323 -1130222,195,205,400 -1130223,163,161,324 -1130224,217,228,445 -1130225,169,170,339 -1130226,232,225,457 -1130227,178,175,353 -1130228,196,209,405 -1130229,197,181,378 -1130230,192,175,367 -1130231,280,267,547 -1130232,169,175,344 -1130233,161,162,323 -1130234,191,178,369 -1130235,208,193,401 -1130236,204,219,423 -1130237,252,261,513 -1130238,192,212,404 -1130239,8,7,15 -1130240,213,206,419 -1130241,193,195,388 -1130242,172,165,337 -1130243,241,250,491 -1130244,132,120,252 -1130301,115,105,220 -1130302,152,123,275 -1130303,3,3,6 -1130304,212,194,406 -1130305,183,188,371 -1130306,265,269,534 -1130307,214,195,409 -1130308,260,243,503 -1130309,3,0,3 -1130310,165,172,337 -1130311,253,213,466 -1130312,183,187,370 -1130313,3,0,3 -1130314,216,215,431 -1130315,242,250,492 -1130316,92,101,193 -1130317,130,135,265 -1130318,160,197,357 -1130319,327,285,612 -1130320,251,227,478 -1130321,109,112,221 -1130322,230,226,456 -1130323,191,192,383 -1130324,191,200,391 -1130325,285,287,572 -1130326,182,210,392 -1130327,212,218,430 -1130328,401,362,763 -1130329,260,242,502 -1130330,3,3,6 -1130331,470,400,870 -1130332,59,91,150 -1130333,338,289,627 -1130334,256,238,494 -1130335,332,331,663 -1130336,149,152,301 -1130337,0,0,0 -1130338,247,229,476 -1130339,168,160,328 -1130340,15,6,21 -1130341,206,184,390 -1130342,179,174,353 -1130401,180,160,340 -1130402,176,166,342 -1130403,249,244,493 -1130404,254,297,551 -1130405,179,191,370 -1130406,198,196,394 -1130407,233,244,477 -1130408,164,156,320 -1130409,168,178,346 -1130410,210,199,409 -1130411,171,169,340 -1130412,149,166,315 -1130413,309,335,644 -1130414,188,301,489 -1130415,148,148,296 -1130416,254,243,497 -1130417,296,321,617 -1130418,370,338,708 -1130419,202,205,407 -1130420,221,228,449 -1130421,199,176,375 -1130422,149,133,282 -1130423,128,130,258 -1130424,331,318,649 -1130425,213,223,436 -1130426,306,282,588 -1130427,0,0,0 -1130428,196,194,390 -1130429,169,180,349 -1130430,206,212,418 -1130431,89,81,170 -1130432,292,275,567 -1130433,189,189,378 -1130434,207,205,412 -1130435,261,235,496 -1130436,201,200,401 -1130437,198,209,407 -1130438,148,135,283 -1130439,250,262,512 -1130440,161,172,333 -1130441,0,0,0 -1130442,180,177,357 -1130501,263,242,505 -1130502,170,185,355 -1130503,209,213,422 -1130504,170,149,319 -1130505,219,209,428 -1130506,298,308,606 -1130507,165,178,343 -1130508,199,211,410 -1130509,333,351,684 -1130510,207,198,405 -1130511,208,223,431 -1130512,134,135,269 -1130513,178,172,350 -1130514,252,258,510 -1130515,142,158,300 -1130516,253,246,499 -1130517,309,318,627 -1130518,166,182,348 -1130519,188,196,384 -1130520,92,91,183 -1130521,230,237,467 -1130522,153,181,334 -1130523,129,150,279 -1130524,266,274,540 -1130525,144,132,276 -1130526,111,144,255 -1130527,291,334,625 -1130528,212,217,429 -1130529,222,230,452 -1130530,163,173,336 -1130531,189,178,367 -1130532,148,159,307 -1130533,224,220,444 -1130534,304,290,594 -1130535,182,195,377 -1130536,255,238,493 -1130537,178,168,346 -1130538,240,280,520 -1130539,236,241,477 -1130540,160,155,315 -1130541,162,146,308 -1130542,207,212,419 -1130543,183,188,371 -1130544,154,146,300 -1130545,188,196,384 -1130546,178,192,370 -1130547,214,203,417 -1130548,230,315,545 -1130549,256,256,512 -1130550,294,327,621 -1130551,244,225,469 -1130552,145,132,277 -1130553,193,175,368 -1130554,211,222,433 -1130555,285,273,558 -1130556,240,256,496 -1130557,212,239,451 -1130558,158,209,367 -1130559,246,279,525 -1130560,146,169,315 -1130561,255,267,522 -1130562,180,177,357 -1130563,301,326,627 -1130601,272,272,544 -1130602,219,237,456 -1130603,584,588,1172 -1130604,0,0,0 -1130605,123,141,264 -1130606,212,191,403 -1130607,149,138,287 -1130608,323,318,641 -1130609,143,148,291 -1130610,116,148,264 -1130611,239,235,474 -1130612,216,231,447 -1130613,217,222,439 -1130614,190,213,403 -1130615,190,206,396 -1130616,147,160,307 -1130617,215,241,456 -1130618,165,142,307 -1130619,256,268,524 -1130620,243,261,504 -1130621,215,233,448 -1130622,202,185,387 -1130623,122,119,241 -1130624,220,212,432 -1130625,270,271,541 -1130626,218,189,407 -1130627,177,223,400 -1130628,171,184,355 -1130629,4,0,4 -1130630,260,223,483 -1130631,204,181,385 -1130632,188,206,394 -1130633,154,170,324 -1130634,165,174,339 -1130635,119,142,261 -1130636,116,130,246 -1130637,118,132,250 -1130638,283,269,552 -1130639,207,193,400 -1130640,166,168,334 -1130641,245,262,507 -1130642,168,184,352 -1130643,130,186,316 -1130644,91,113,204 -1130645,183,196,379 -1130646,218,212,430 -1130647,186,219,405 -1130648,157,163,320 -1130649,150,184,334 -1130650,249,258,507 -1130701,276,273,549 -1130702,185,202,387 -1130703,196,233,429 -1130704,119,106,225 -1130705,187,207,394 -1130706,168,168,336 -1130707,219,228,447 -1130708,234,211,445 -1130709,259,227,486 -1130710,216,249,465 -1130711,241,244,485 -1130712,197,197,394 -1130713,183,165,348 -1130714,259,261,520 -1130715,182,173,355 -1130716,228,260,488 -1130717,279,266,545 -1130718,183,199,382 -1130719,191,230,421 -1130720,269,285,554 -1130721,3,4,7 -1130722,153,151,304 -1130723,203,190,393 -1130724,142,156,298 -1130725,202,216,418 -1130726,289,275,564 -1130727,182,181,363 -1130728,87,129,216 -1130729,168,185,353 -1130730,260,319,579 -1130731,192,186,378 -1130732,138,136,274 -1130733,161,166,327 -1130734,235,237,472 -1130735,267,246,513 -1130736,242,254,496 -1130737,161,150,311 -1130738,209,239,448 -1130739,211,200,411 -1130740,241,224,465 -1130741,220,223,443 -1130742,246,268,514 -1130743,139,143,282 -1130744,264,272,536 -1130745,270,269,539 -1130746,197,200,397 -1130747,233,229,462 -1130748,263,315,578 -1130749,275,284,559 -1130750,265,261,526 -1130751,180,170,350 -1130752,237,203,440 -1130753,214,236,450 -1130754,300,307,607 -1130755,246,247,493 -1130756,277,265,542 -1130801,199,206,405 -1130802,231,257,488 -1130803,200,207,407 -1130804,116,132,248 -1130805,245,250,495 -1130806,176,176,352 -1130807,259,276,535 -1130808,166,154,320 -1130809,239,251,490 -1130810,326,348,674 -1130811,225,286,511 -1130812,204,230,434 -1130813,269,244,513 -1130814,252,284,536 -1130815,204,193,397 -1130816,184,203,387 -1130817,175,176,351 -1130818,24,19,43 -1130819,142,177,319 -1130820,282,317,599 -1130821,265,269,534 -1130822,168,168,336 -1130823,342,337,679 -1130824,151,129,280 -1130825,122,137,259 -1130826,190,211,401 -1130827,277,258,535 -1130828,264,273,537 -1130829,328,324,652 -1130830,264,216,480 -1130831,133,148,281 -1130832,267,273,540 -1130833,308,285,593 -1130834,211,198,409 -1130835,180,178,358 -1130836,234,232,466 -1130837,269,253,522 -1130838,259,243,502 -1130839,159,172,331 -1130840,168,188,356 -1130841,0,0,0 -1130842,283,311,594 -1130843,271,247,518 -1130844,270,244,514 -1130845,313,286,599 -1130846,259,275,534 -1130847,162,176,338 -1130848,250,246,496 -1130849,270,293,563 -1130850,189,210,399 -1130851,208,197,405 -1130901,266,242,508 -1130902,213,232,445 -1130903,185,192,377 -1130904,198,204,402 -1130905,221,218,439 -1130906,277,277,554 -1130907,180,170,350 -1130908,201,200,401 -1130909,152,172,324 -1130910,226,217,443 -1130911,186,199,385 -1130912,261,257,518 -1130913,132,148,280 -1130914,308,308,616 -1130915,153,160,313 -1130916,144,151,295 -1130917,180,174,354 -1130918,282,303,585 -1130919,309,282,591 -1130920,159,144,303 -1130921,159,170,329 -1130922,369,339,708 -1130923,197,194,391 -1130924,333,358,691 -1130925,271,283,554 -1130926,128,141,269 -1130927,147,142,289 -1130928,255,277,532 -1130929,228,236,464 -1130930,224,217,441 -1130931,221,231,452 -1130932,218,190,408 -1130933,124,113,237 -1130934,215,194,409 -1130935,162,156,318 -1130936,160,169,329 -1131001,581,584,1165 -1131002,445,460,905 -1131003,1003,987,1990 -1131004,276,288,564 -1131005,283,295,578 -1131006,117,122,239 -1131007,118,141,259 -1131008,203,220,423 -1131009,455,485,940 -1131010,542,532,1074 -1131011,155,144,299 -1131012,165,195,360 -1131013,176,189,365 -1131014,198,212,410 -1131015,177,193,370 -1131016,505,506,1011 -1131017,252,278,530 -1131018,279,308,587 -1131019,283,237,520 -1131020,227,218,445 -1131021,127,170,297 -1131022,185,195,380 -1131023,515,536,1051 -1131024,735,0,735 -1131025,271,263,534 -1131026,725,692,1417 -1131027,228,258,486 -1131028,886,885,1771 -1131029,393,393,786 -1131030,243,237,480 -1131031,719,724,1443 -1131101,332,353,685 -1131102,260,261,521 -1131103,324,338,662 -1131104,302,311,613 -1131105,238,246,484 -1131106,108,115,223 -1131107,182,188,370 -1131108,232,243,475 -1131109,256,229,485 -1131110,218,231,449 -1131111,144,177,321 -1131112,241,264,505 -1131113,70,40,110 -1131114,316,299,615 -1131115,218,209,427 -1131116,436,441,877 -1131117,193,205,398 -1131118,255,266,521 -1131119,138,138,276 -1131120,231,203,434 -1131121,250,267,517 -1131122,203,195,398 -1131123,226,226,452 -1131124,317,294,611 -1131125,169,154,323 -1131126,228,214,442 -1131127,243,234,477 -1131128,157,159,316 -1131129,188,189,377 -1131130,186,172,358 -1131131,213,230,443 -1131132,138,145,283 -1131133,237,274,511 -1131134,126,159,285 -1131135,165,157,322 -1131136,139,157,296 -1131137,219,251,470 -1131138,221,227,448 -1131139,217,226,443 -1131140,295,279,574 -1131141,139,152,291 -1131142,142,146,288 -1131143,177,217,394 -1131144,207,207,414 -1131145,299,292,591 -1131146,182,170,352 -1131147,151,150,301 -1131148,177,165,342 -1131149,188,186,374 -1131150,203,202,405 -1131151,333,298,631 -1131152,224,255,479 -1131153,297,308,605 -1131154,143,140,283 -1131155,243,239,482 -1131156,283,298,581 -1131157,253,246,499 -1131158,357,355,712 -1131201,114,100,214 -1131202,352,289,641 -1131203,95,81,176 -1131204,191,232,423 -1131205,209,254,463 -1131206,153,152,305 -1131207,162,184,346 -1131208,175,197,372 -1131209,201,215,416 -1131210,237,244,481 -1131211,136,116,252 -1131212,101,88,189 -1131213,183,172,355 -1131214,180,173,353 -1131215,239,238,477 -1131216,122,130,252 -1131217,217,237,454 -1131218,158,143,301 -1131219,133,124,257 -1131220,212,190,402 -1131221,7,3,10 -1131222,198,202,400 -1131223,160,155,315 -1131224,165,140,305 -1131225,0,0,0 -1131226,289,314,603 -1131227,221,184,405 -1131228,115,103,218 -1131229,193,140,333 -1131230,169,136,305 -1131231,180,184,364 -1131232,242,222,464 -1131233,197,187,384 -1131301,125,140,265 -1131302,108,112,220 -1131303,267,327,594 -1131304,263,315,578 -1131305,216,227,443 -1131306,195,203,398 -1131307,174,201,375 -1131308,116,124,240 -1131309,202,214,416 -1131310,228,245,473 -1131311,174,196,370 -1131312,155,164,319 -1131313,118,110,228 -1131314,232,245,477 -1131315,152,143,295 -1131316,113,134,247 -1131317,220,220,440 -1131318,264,238,502 -1131319,180,182,362 -1131320,222,245,467 -1131321,155,174,329 -1131322,182,248,430 -1131323,176,202,378 -1131324,0,0,0 -1131325,272,283,555 -1131326,92,110,202 -1131327,287,275,562 -1131328,257,238,495 -1131329,0,0,0 -1131330,119,164,283 -1131331,0,0,0 -1131332,207,204,411 -1131333,216,232,448 -1131334,116,113,229 -1131335,204,210,414 -1131336,277,281,558 -1131337,160,176,336 -1131338,179,175,354 -1131339,139,169,308 -1131340,101,94,195 -1131341,170,178,348 -1131342,234,259,493 -1131343,120,107,227 -1131344,0,0,0 -1131345,214,202,416 -1131346,173,179,352 -1131347,260,281,541 -1131348,195,163,358 -1131349,219,227,446 -1131350,324,316,640 -1131351,189,182,371 -1131352,111,115,226 -1131401,214,232,446 -1131402,269,265,534 -1131403,210,192,402 -1131404,198,206,404 -1131405,236,288,524 -1131406,226,208,434 -1131407,214,236,450 -1131408,237,249,486 -1131409,166,167,333 -1131410,159,147,306 -1131411,265,272,537 -1131412,204,197,401 -1131413,172,163,335 -1131414,128,145,273 -1131415,227,214,441 -1131416,140,149,289 -1131417,245,232,477 -1131418,0,0,0 -1131419,176,165,341 -1131420,4,0,4 -1131421,3,0,3 -1131422,177,165,342 -1131423,178,183,361 -1131501,172,172,344 -1131502,176,189,365 -1131503,141,125,266 -1131504,267,256,523 -1131505,227,222,449 -1131506,339,345,684 -1131507,0,0,0 -1131508,176,167,343 -1131509,126,157,283 -1131510,166,171,337 -1131511,143,141,284 -1131512,230,248,478 -1131513,221,230,451 -1131514,319,323,642 -1131515,216,210,426 -1131516,281,281,562 -1131517,237,237,474 -1131518,229,236,465 -1131519,177,189,366 -1131520,313,314,627 -1131521,187,211,398 -1131522,245,250,495 -1131523,291,296,587 -1131524,239,245,484 -1131525,210,231,441 -1131526,119,129,248 -1131527,207,193,400 -1131528,192,190,382 -1131529,250,223,473 -1131530,206,216,422 -1131531,146,145,291 -1131532,209,203,412 -1131533,248,266,514 -1131534,149,137,286 -1131535,283,300,583 -1131536,133,182,315 -1131537,304,313,617 -1131538,173,166,339 -1131539,227,211,438 -1131540,193,223,416 -1131541,176,168,344 -1131542,230,212,442 -1131543,244,244,488 -1131544,290,285,575 -1131545,178,186,364 -1131546,231,229,460 -1131601,0,0,0 -1131602,111,102,213 -1131603,88,117,205 -1131604,735,743,1478 -1131605,265,284,549 -1131606,222,229,451 -1131607,176,196,372 -1131608,177,168,345 -1131609,117,144,261 -1131610,223,236,459 -1131611,177,192,369 -1131612,156,150,306 -1131613,236,244,480 -1131614,139,138,277 -1131615,174,191,365 -1131616,135,140,275 -1131617,258,258,516 -1131618,166,184,350 -1131619,156,153,309 -1131620,171,187,358 -1131621,146,155,301 -1131622,192,175,367 -1131623,295,299,594 -1131624,186,188,374 -1131625,150,193,343 -1131626,194,199,393 -1131627,142,146,288 -1131628,132,144,276 -1131629,160,174,334 -1131630,211,245,456 -1131631,166,179,345 -1131632,249,291,540 -1131633,191,193,384 -1131634,295,262,557 -1131635,106,88,194 -1131636,239,227,466 -1131637,0,0,0 -1131638,242,235,477 -1131639,215,263,478 -1131640,269,274,543 -1131641,178,218,396 -1131701,3,0,3 -1131702,261,274,535 -1131703,236,243,479 -1131704,490,498,988 -1131705,151,158,309 -1131706,228,233,461 -1131707,279,298,577 -1131708,214,237,451 -1131709,254,277,531 -1131710,278,238,516 -1131711,311,277,588 -1131712,182,176,358 -1131713,6,3,9 -1131714,210,217,427 -1131715,216,236,452 -1131716,0,0,0 -1131717,325,336,661 -1131718,208,222,430 -1131719,262,249,511 -1131720,303,276,579 -1131721,269,281,550 -1131722,311,326,637 -1131723,114,138,252 -1131724,143,147,290 -1131725,196,194,390 -1131726,278,306,584 -1131727,150,148,298 -1131728,205,193,398 -1131729,165,162,327 -1131730,226,237,463 -1131731,248,260,508 -1131732,185,190,375 -1131733,265,294,559 -1131734,241,262,503 -1131735,335,333,668 -1131736,197,186,383 -1131737,188,221,409 -1131738,214,221,435 -1131739,288,270,558 -1131740,292,293,585 -1131741,340,317,657 -1131742,278,294,572 -1131743,366,343,709 -1131744,252,232,484 -1131745,382,393,775 -1131746,271,239,510 -1131801,9,3,12 -1131802,8,0,8 -1131803,0,0,0 -1131901,176,166,342 -1131902,162,180,342 -1131903,172,166,338 -1131904,114,101,215 -1131905,196,204,400 -1131906,166,156,322 -1131907,174,178,352 -1131908,212,217,429 -1131909,255,270,525 -1131910,6,7,13 -1131911,4,4,8 -1131912,138,169,307 -1131913,323,375,698 -1131914,292,312,604 -1131915,197,226,423 -1131916,227,227,454 -1131917,245,267,512 -1131918,214,237,451 -1131919,149,182,331 -1131920,15,7,22 -1131921,309,349,658 -1131922,328,291,619 -1131923,230,210,440 -1131924,184,194,378 -1131925,191,187,378 -1131926,150,150,300 -1131927,160,170,330 -1131928,335,341,676 -1131929,285,255,540 -1131930,154,164,318 -1131931,310,347,657 -1131932,232,450,682 -1131933,189,189,378 -1131934,208,213,421 -1131935,276,273,549 -1131936,166,159,325 -1131937,300,307,607 -1131938,165,196,361 -1131939,203,197,400 -1131940,210,189,399 -1131941,226,219,445 -1131942,178,182,360 -1131943,154,139,293 -1131944,164,139,303 -1131945,172,165,337 -1131946,248,275,523 -1131947,168,154,322 -1131948,263,269,532 -1132001,11,0,11 -1132002,5,0,5 -1132003,0,0,0 -1132101,388,407,795 -1132102,108,135,243 -1132103,174,206,380 -1132104,239,268,507 -1132105,189,200,389 -1132106,276,250,526 -1132107,368,364,732 -1132108,243,221,464 -1132109,211,200,411 -1132110,164,149,313 -1132111,339,314,653 -1132112,220,225,445 -1132113,216,226,442 -1132114,256,232,488 -1132115,184,244,428 -1132116,193,205,398 -1132117,108,114,222 -1132118,185,192,377 -1132119,330,347,677 -1132120,11,4,15 -1132121,0,0,0 -1132122,0,0,0 -1132123,5,0,5 -1132201,235,233,468 -1132202,162,173,335 -1132203,216,241,457 -1132204,165,146,311 -1132205,181,203,384 -1132206,174,148,322 -1132207,113,110,223 -1132208,162,164,326 -1132209,282,291,573 -1132210,172,197,369 -1132211,256,252,508 -1132212,131,148,279 -1132213,207,205,412 -1132214,127,109,236 -1132215,295,258,553 -1132216,360,345,705 -1132217,0,0,0 -1132218,246,264,510 -1132219,787,747,1534 -1132220,96,112,208 -1132221,302,265,567 -1132222,155,149,304 -1132223,213,174,387 -1132224,185,224,409 -1132225,106,134,240 -1132226,123,135,258 -1132227,304,333,637 -1132228,171,180,351 -1132229,228,197,425 -1132230,149,151,300 -1132231,263,252,515 -1132232,217,229,446 -1132233,197,197,394 -1132234,283,260,543 -1132235,244,254,498 -1132236,250,260,510 -1132237,205,225,430 -1132238,220,229,449 -1132239,250,242,492 -1132240,248,222,470 -1132241,211,249,460 -1132242,228,202,430 -1132243,111,134,245 -1132244,224,235,459 -1132245,138,160,298 -1132246,151,148,299 -1132247,170,171,341 -1132248,0,0,0 -1132301,162,170,332 -1132302,127,137,264 -1132303,223,233,456 -1132304,181,168,349 -1132305,256,281,537 -1132306,196,305,501 -1132307,103,120,223 -1132308,181,258,439 -1132309,212,237,449 -1132310,211,184,395 -1132311,186,188,374 -1132312,176,163,339 -1132313,213,210,423 -1132314,204,220,424 -1132315,170,195,365 -1132316,177,177,354 -1132317,254,255,509 -1132318,119,126,245 -1132319,161,163,324 -1132320,245,240,485 -1132321,0,0,0 -1132322,219,220,439 -1132323,185,193,378 -1132324,0,0,0 -1132325,228,211,439 -1132326,152,174,326 -1132327,287,250,537 -1132328,238,213,451 -1132329,118,122,240 -1132401,3,0,3 -1132501,4,0,4 -1132601,160,176,336 -1132602,200,220,420 -1132603,127,113,240 -1132604,189,194,383 -1132605,202,228,430 -1132606,275,249,524 -1132607,316,280,596 -1132608,228,229,457 -1132609,219,247,466 -1132610,238,239,477 -1132611,298,310,608 -1132612,173,204,377 -1132613,178,199,377 -1132614,182,163,345 -1132615,208,231,439 -1132616,226,253,479 -1132617,172,171,343 -1132618,194,232,426 -1132619,219,225,444 -1132620,274,277,551 -1132621,143,139,282 -1132622,234,266,500 -1132623,348,353,701 -1132624,195,159,354 -1132625,184,189,373 -1132626,125,145,270 -1132627,209,196,405 -1132628,219,233,452 -1132629,247,236,483 -1132630,214,226,440 -1132631,135,158,293 -1132632,241,225,466 -1132633,234,221,455 -1132634,104,109,213 -1132635,119,133,252 -1132636,148,136,284 -1132637,164,158,322 -1132638,200,196,396 -1132639,138,142,280 -1132640,179,164,343 -1132641,87,98,185 -1132642,132,126,258 -1132643,204,202,406 -1132644,221,222,443 -1132645,162,171,333 -1132646,98,112,210 -1132647,281,237,518 -1132648,275,250,525 -1132649,182,235,417 -1132650,194,192,386 -1132651,251,311,562 -1132652,281,265,546 -1132653,291,241,532 -1132654,124,142,266 -1132655,191,155,346 -1132656,206,209,415 -1132657,177,204,381 -1132658,16,10,26 -1132659,183,216,399 -1132660,133,137,270 -1132661,193,192,385 -1132662,252,250,502 -1132701,170,195,365 -1132702,189,188,377 -1132703,181,180,361 -1132704,226,210,436 -1132705,185,185,370 -1132706,312,278,590 -1132707,243,249,492 -1132708,248,272,520 -1132709,246,224,470 -1132710,192,210,402 -1132711,257,257,514 -1132712,116,120,236 -1132713,243,243,486 -1132714,216,242,458 -1132715,137,142,279 -1132716,200,214,414 -1132717,105,89,194 -1132718,238,292,530 -1132719,215,174,389 -1132720,154,133,287 -1132721,154,186,340 -1132722,134,161,295 -1132723,199,187,386 -1132724,158,148,306 -1132725,300,279,579 -1132726,110,118,228 -1132727,114,112,226 -1132728,157,158,315 -1132729,213,209,422 -1132730,159,136,295 -1132731,170,192,362 -1132732,206,210,416 -1132733,209,235,444 -1132734,199,190,389 -1132735,133,146,279 -1132736,129,149,278 -1132737,234,232,466 -1132738,221,279,500 -1132739,177,223,400 -1132740,189,127,316 -1132741,113,100,213 -1132742,184,211,395 -1132743,171,173,344 -1132744,123,107,230 -1132745,177,172,349 -1132746,119,130,249 -1132747,243,176,419 -1132748,160,174,334 -1132749,230,219,449 -1132750,198,203,401 -1132801,220,244,464 -1132802,216,197,413 -1132803,107,106,213 -1132804,129,107,236 -1132805,22,23,45 -1132806,150,156,306 -1132807,284,264,548 -1132808,160,160,320 -1132809,106,108,214 -1132810,271,255,526 -1132811,251,234,485 -1132812,182,168,350 -1132813,6,9,15 -1132814,165,158,323 -1132815,152,137,289 -1132816,3,4,7 -1132817,278,242,520 -1132818,141,117,258 -1132819,153,158,311 -1132820,203,192,395 -1132821,286,241,527 -1132822,230,196,426 -1132901,189,148,337 -1132902,7,10,17 -1132903,357,236,593 -1132904,181,97,278 -1132905,221,150,371 -1132906,124,147,271 -1132907,212,176,388 -1132908,229,102,331 -1132909,439,276,715 -1132910,245,153,398 -1132911,115,94,209 -1132912,178,176,354 -1132913,200,180,380 -1132914,193,183,376 -1132915,102,66,168 -1132916,135,91,226 -1132917,264,144,408 -1132918,208,101,309 -1132919,256,204,460 -1132920,195,114,309 -1132921,289,232,521 -1132922,244,175,419 -1132923,162,126,288 -1132924,237,133,370 -1132925,142,110,252 -1132926,280,208,488 -1132927,321,199,520 -1132928,179,117,296 -1133001,187,154,341 -1133002,402,367,769 -1133003,228,242,470 -1133004,220,230,450 -1133005,114,120,234 -1133006,206,215,421 -1133007,196,191,387 -1133008,284,244,528 -1133009,277,231,508 -1133010,243,266,509 -1133011,257,238,495 -1133012,385,341,726 -1133013,151,148,299 -1133014,6,0,6 -1133015,199,180,379 -1133016,299,258,557 -1133017,136,171,307 -1133018,20,15,35 -1133019,325,298,623 -1133020,0,0,0 -1133021,158,121,279 -1133022,135,134,269 -1133023,150,124,274 -1133024,381,347,728 -1133025,341,325,666 -1133026,239,245,484 -1133027,199,198,397 -1133028,264,285,549 -1133029,207,238,445 -1133030,253,233,486 -1133031,354,309,663 -1133032,330,282,612 -1133101,0,0,0 -1133102,144,142,286 -1133103,248,215,463 -1133104,566,507,1073 -1133105,165,176,341 -1133106,227,129,356 -1133107,152,146,298 -1133108,172,204,376 -1133109,174,162,336 -1133110,116,126,242 -1133111,240,223,463 -1133112,150,145,295 -1133113,205,192,397 -1133114,183,208,391 -1133115,196,206,402 -1133116,190,220,410 -1133117,260,276,536 -1133118,231,241,472 -1133119,208,241,449 -1133120,193,253,446 -1133121,199,184,383 -1133122,125,154,279 -1133123,204,222,426 -1133124,271,289,560 -1133125,158,148,306 -1133126,278,271,549 -1133127,223,221,444 -1133128,0,0,0 -1133129,112,124,236 -1133130,245,304,549 -1133131,222,293,515 -1133132,191,226,417 -1133133,230,274,504 -1133134,197,227,424 -1133135,138,241,379 -1133136,193,199,392 -1133137,171,151,322 -1133138,148,165,313 -1133139,182,216,398 -1133140,173,199,372 -1133141,213,170,383 -1133142,193,201,394 -1133201,225,201,426 -1133202,525,631,1156 -1133203,0,0,0 -1133204,246,236,482 -1133205,226,217,443 -1133206,263,287,550 -1133207,176,150,326 -1133208,227,255,482 -1133209,195,191,386 -1133210,161,110,271 -1133211,204,136,340 -1133212,196,186,382 -1133213,150,177,327 -1133214,207,256,463 -1133215,140,151,291 -1133216,162,179,341 -1133217,177,208,385 -1133218,162,133,295 -1133219,150,206,356 -1133220,223,228,451 -1133221,146,179,325 -1133222,229,274,503 -1133223,277,246,523 -1133224,260,293,553 -1133225,139,164,303 -1133226,241,243,484 -1133227,269,247,516 -1133228,190,188,378 -1133229,176,204,380 -1133230,225,211,436 -1133231,168,170,338 -1133232,238,227,465 -1133233,139,130,269 -1133234,272,259,531 -1133235,207,208,415 -1133236,269,215,484 -1133237,166,166,332 -1133238,177,174,351 -1133239,171,183,354 -1133240,327,319,646 -1133241,181,166,347 -1133242,176,158,334 -1133243,217,226,443 -1133244,189,156,345 -1133245,230,236,466 -1133246,124,134,258 -1133247,199,207,406 -1133248,233,189,422 -1133249,328,276,604 -1133250,219,194,413 -1133251,199,165,364 -1133252,185,203,388 -1133301,50,49,99 -1133302,168,140,308 -1133303,108,119,227 -1133304,162,94,256 -1133305,324,308,632 -1133306,320,247,567 -1133307,293,247,540 -1133308,198,135,333 -1133309,142,94,236 -1133310,311,206,517 -1133311,199,155,354 -1133312,178,125,303 -1133313,306,204,510 -1133314,286,217,503 -1133315,112,115,227 -1133316,110,110,220 -1133317,299,96,395 -1133318,188,141,329 -1133319,183,178,361 -1133320,302,242,544 -1133321,226,91,317 -1133322,216,157,373 -1133323,177,177,354 -1133324,222,156,378 -1133325,214,178,392 -1133326,169,137,306 -1133327,70,70,140 -1133328,111,113,224 -1133329,234,226,460 -1133330,147,137,284 -1133331,244,213,457 -1133332,84,97,181 -1133333,204,219,423 -1133334,193,202,395 -1133335,105,103,208 -1133336,196,188,384 -1133337,95,125,220 -1133338,240,219,459 -1133339,150,126,276 -1133340,226,174,400 -1133341,176,210,386 -1133342,203,198,401 -1133343,238,200,438 -1133344,146,133,279 -1133345,313,276,589 -1133346,213,192,405 -1133347,284,339,623 -1133348,250,247,497 -1133349,174,160,334 -1133401,84,90,174 -1133402,321,273,594 -1133403,325,300,625 -1133404,167,178,345 -1133405,166,182,348 -1133406,219,227,446 -1133407,452,395,847 -1133408,245,215,460 -1133409,208,190,398 -1133410,236,234,470 -1133411,212,183,395 -1133412,374,391,765 -1133413,205,194,399 -1133414,0,0,0 -1133415,507,519,1026 -1133416,225,241,466 -1133417,338,326,664 -1133418,361,339,700 -1133419,190,172,362 -1133420,50,79,129 -1133421,221,230,451 -1133422,197,169,366 -1133423,214,199,413 -1133424,315,283,598 -1133425,195,199,394 -1133426,486,385,871 -1133427,299,338,637 -1133428,298,327,625 -1133429,138,191,329 -1133430,285,258,543 -1133431,291,251,542 -1133432,263,262,525 -1133433,98,92,190 -1133434,336,312,648 -1133435,476,386,862 -1133436,167,181,348 -1133437,59,61,120 -1133438,296,286,582 -1133439,41,44,85 -1133501,209,181,390 -1133502,242,245,487 -1133503,385,265,650 -1133504,138,74,212 -1133505,277,225,502 -1133506,211,164,375 -1133507,261,210,471 -1133508,0,0,0 -1133509,146,105,251 -1133510,288,176,464 -1133511,162,104,266 -1133512,101,80,181 -1133513,252,305,557 -1133514,255,198,453 -1133515,185,116,301 -1133516,271,232,503 -1133517,172,138,310 -1133518,269,268,537 -1133519,200,183,383 -1133520,91,48,139 -1133521,268,239,507 -1133522,213,155,368 -1133523,208,163,371 -1133524,0,0,0 -1133525,201,185,386 -1133526,196,171,367 -1133527,365,286,651 -1133528,186,125,311 -1133529,138,100,238 -1133530,151,118,269 -1133531,326,309,635 -1133532,321,251,572 -1133533,263,206,469 -1133534,329,218,547 -1133535,429,323,752 -1133536,261,169,430 -1133537,216,153,369 -1133538,221,191,412 -1133539,172,132,304 -1133540,179,160,339 -1133541,181,175,356 -1133542,238,235,473 -1133601,4,0,4 -1133602,202,162,364 -1133603,239,147,386 -1133604,368,289,657 -1133605,238,184,422 -1133606,261,254,515 -1133607,265,208,473 -1133608,236,194,430 -1133609,397,312,709 -1133610,247,171,418 -1133611,209,145,354 -1133612,246,148,394 -1133613,268,265,533 -1133614,244,151,395 -1133615,187,133,320 -1133616,321,243,564 -1133617,289,147,436 -1133618,288,156,444 -1133619,253,189,442 -1133620,339,185,524 -1133621,368,193,561 -1133622,280,153,433 -1133623,138,108,246 -1133624,123,88,211 -1133625,302,201,503 -1133626,213,146,359 -1133627,430,372,802 -1133628,300,247,547 -1133629,182,143,325 -1133630,216,172,388 -1133631,168,137,305 -1133632,157,146,303 -1133633,213,153,366 -1133634,261,217,478 -1133635,152,100,252 -1133636,265,226,491 -1133701,262,250,512 -1133702,60,77,137 -1133703,545,602,1147 -1133704,129,103,232 -1133705,260,200,460 -1133706,275,212,487 -1133707,429,387,816 -1133708,144,171,315 -1133709,495,428,923 -1133710,252,258,510 -1133711,375,422,797 -1133712,997,963,1960 -1133713,0,0,0 -1133714,306,298,604 -1133715,512,520,1032 -1133716,356,320,676 -1133717,253,210,463 -1133718,382,320,702 -1133719,360,313,673 -1133720,3,0,3 -1133721,702,733,1435 -1133722,153,181,334 -1133723,133,113,246 -1133724,164,162,326 -1133725,106,98,204 -1133726,165,164,329 -1133727,60,50,110 -1133728,40,28,68 -1133729,156,138,294 -1133730,48,28,76 -1133731,0,0,0 -1133732,0,0,0 -1133733,165,177,342 -1133734,252,248,500 -1133735,131,132,263 -1133736,239,227,466 -1133737,371,394,765 -1133738,439,437,876 -1133739,0,0,0 -1133740,101,106,207 -1133741,0,0,0 -1133742,400,327,727 -1133743,149,130,279 -1133744,212,150,362 -1133745,0,0,0 -1133746,148,128,276 -1133747,256,237,493 -1133748,126,119,245 -1133749,285,200,485 -1133750,0,0,0 -1133751,207,195,402 -1133752,98,98,196 -1133801,142,133,275 -1133802,283,300,583 -1133803,301,223,524 -1133804,283,196,479 -1133805,177,177,354 -1133806,86,95,181 -1133807,492,467,959 -1133808,164,163,327 -1133809,277,203,480 -1133810,139,124,263 -1133811,257,247,504 -1133812,49,67,116 -1133813,214,200,414 -1133814,269,231,500 -1133815,131,119,250 -1133816,170,172,342 -1133817,322,242,564 -1133818,233,237,470 -1133819,3,0,3 -1133820,626,541,1167 -1133821,220,215,435 -1133822,359,290,649 -1133823,495,492,987 -1133824,245,251,496 -1133825,980,954,1934 -1133826,311,309,620 -1133827,286,303,589 -1133828,401,303,704 -1133829,392,309,701 -1133830,523,393,916 -1133831,174,186,360 -1133832,140,122,262 -1133833,154,158,312 -1133834,159,112,271 -1133835,296,180,476 -1133836,142,106,248 -1133837,222,237,459 -1133838,269,221,490 -1133839,337,259,596 -1133840,123,149,272 -1133841,253,308,561 -1133901,248,255,503 -1133902,172,177,349 -1133903,156,143,299 -1133904,272,263,535 -1133905,221,237,458 -1133906,190,194,384 -1133907,164,173,337 -1133908,199,215,414 -1133909,0,0,0 -1133910,214,240,454 -1133911,256,298,554 -1133912,267,248,515 -1133913,144,177,321 -1133914,161,191,352 -1133915,159,180,339 -1133916,0,0,0 -1133917,170,165,335 -1133918,116,119,235 -1133919,196,203,399 -1133920,108,119,227 -1133921,180,202,382 -1133922,213,228,441 -1133923,279,327,606 -1133924,139,179,318 -1133925,123,133,256 -1133926,134,164,298 -1133927,236,211,447 -1133928,138,143,281 -1133929,189,188,377 -1133930,177,183,360 -1133931,105,107,212 -1133932,151,149,300 -1133933,255,300,555 -1133934,284,320,604 -1133935,270,337,607 -1133936,228,223,451 -1133937,199,192,391 -1133938,223,198,421 -1133939,216,205,421 -1133940,295,277,572 -1133941,159,125,284 -1133942,170,155,325 -1133943,240,229,469 -1133944,271,250,521 -1133945,238,200,438 -1133946,132,104,236 -1133947,160,169,329 -1134001,171,146,317 -1134002,135,135,270 -1134003,292,278,570 -1134004,246,206,452 -1134005,267,260,527 -1134006,212,205,417 -1134007,242,235,477 -1134008,299,254,553 -1134009,214,197,411 -1134010,206,225,431 -1134011,317,325,642 -1134012,299,284,583 -1134013,293,273,566 -1134014,298,260,558 -1134015,234,255,489 -1134016,155,144,299 -1134017,249,213,462 -1134018,312,318,630 -1134019,121,128,249 -1134020,138,121,259 -1134021,204,193,397 -1134022,175,171,346 -1134023,153,137,290 -1134024,211,204,415 -1134025,259,273,532 -1134026,266,261,527 -1134027,205,210,415 -1134028,169,165,334 -1134029,253,275,528 -1134030,294,291,585 -1134031,302,284,586 -1134032,192,199,391 -1134033,312,315,627 -1134034,0,0,0 -1134035,86,75,161 -1134036,189,201,390 -1134037,124,115,239 -1134038,191,189,380 -1134039,233,243,476 -1134040,171,147,318 -1134041,102,104,206 -1134042,318,315,633 -1134043,248,266,514 -1134044,131,124,255 -1134045,116,109,225 -1134046,0,0,0 -1134047,212,201,413 -1134101,132,133,265 -1134102,111,178,289 -1134103,265,330,595 -1134104,172,168,340 -1134105,138,142,280 -1134106,179,188,367 -1134107,189,213,402 -1134108,242,253,495 -1134109,204,246,450 -1134110,213,224,437 -1134111,168,162,330 -1134112,226,226,452 -1134113,134,140,274 -1134114,201,175,376 -1134115,205,224,429 -1134116,270,265,535 -1134117,271,300,571 -1134118,105,139,244 -1134119,146,146,292 -1134120,211,221,432 -1134121,250,253,503 -1134122,134,190,324 -1134123,191,182,373 -1134124,213,199,412 -1134125,140,122,262 -1134126,282,282,564 -1134127,315,297,612 -1134128,289,322,611 -1134129,208,206,414 -1134130,167,171,338 -1134131,214,258,472 -1134132,119,160,279 -1134133,274,277,551 -1134134,215,204,419 -1134135,250,316,566 -1134136,0,3,3 -1134137,142,162,304 -1134138,267,330,597 -1134139,185,201,386 -1134201,0,0,0 -1134301,158,201,359 -1134302,255,323,578 -1134303,202,253,455 -1134304,219,255,474 -1134305,165,176,341 -1134306,184,211,395 -1134307,287,350,637 -1134308,327,364,691 -1134309,102,213,315 -1134310,69,73,142 -1134311,176,219,395 -1134312,237,272,509 -1134313,268,269,537 -1134314,215,202,417 -1134315,260,106,366 -1134316,183,190,373 -1134317,270,284,554 -1134318,197,118,315 -1134319,202,237,439 -1134320,183,204,387 -1134321,159,185,344 -1134322,306,282,588 -1134323,127,129,256 -1134324,213,265,478 -1134325,184,243,427 -1134326,155,163,318 -1134327,241,250,491 -1134328,195,211,406 -1134329,120,180,300 -1134330,145,167,312 -1134331,207,195,402 -1134332,267,318,585 -1134333,236,215,451 -1134334,95,101,196 -1134335,267,286,553 -1134336,161,204,365 -1134337,153,171,324 -1134338,248,288,536 -1134339,150,181,331 -1134340,199,260,459 -1134341,114,152,266 -1134342,161,172,333 -1134343,170,162,332 -1134344,116,113,229 -1134345,168,173,341 -1134346,241,267,508 -1134347,276,348,624 -1134348,208,211,419 -1134349,280,317,597 -1134350,190,190,380 -1134351,179,175,354 -1134352,177,190,367 -1134353,212,233,445 -1134354,186,204,390 -1134355,239,300,539 -1134356,265,384,649 -1134357,153,203,356 -1134401,315,331,646 -1134402,189,190,379 -1134403,215,255,470 -1134404,209,229,438 -1134405,195,218,413 -1134406,235,248,483 -1134407,230,260,490 -1134408,215,242,457 -1134409,215,212,427 -1134410,149,162,311 -1134411,183,186,369 -1134412,327,373,700 -1134413,156,186,342 -1134414,182,220,402 -1134415,161,192,353 -1134416,199,204,403 -1134417,161,153,314 -1134418,246,283,529 -1134419,181,166,347 -1134420,140,161,301 -1134421,166,205,371 -1134422,242,250,492 -1134423,169,186,355 -1134424,308,313,621 -1134501,259,254,513 -1134502,256,279,535 -1134503,179,182,361 -1134504,182,226,408 -1134505,244,255,499 -1134506,166,150,316 -1134507,239,242,481 -1134508,233,265,498 -1134509,203,262,465 -1134510,197,192,389 -1134511,133,150,283 -1134512,246,272,518 -1134513,125,132,257 -1134514,0,0,0 -1134515,0,0,0 -1134516,208,224,432 -1134517,126,162,288 -1134518,176,192,368 -1134519,200,248,448 -1134520,253,294,547 -1134521,163,194,357 -1134522,7,0,7 -1134523,169,193,362 -1134524,193,242,435 -1134525,115,139,254 -1134526,217,228,445 -1134527,214,187,401 -1134528,202,232,434 -1134529,275,268,543 -1134530,264,304,568 -1134531,217,215,432 -1134532,64,90,154 -1134533,168,201,369 -1134534,159,183,342 -1134535,355,320,675 -1134536,215,185,400 -1134537,223,232,455 -1134601,136,199,335 -1134602,113,183,296 -1134603,206,192,398 -1134604,153,169,322 -1134605,145,146,291 -1134606,283,263,546 -1134607,0,0,0 -1134608,180,180,360 -1134609,207,351,558 -1134610,133,159,292 -1134611,0,0,0 -1134612,245,238,483 -1134613,210,208,418 -1134614,127,117,244 -1134615,147,173,320 -1134616,160,196,356 -1134617,227,235,462 -1134618,266,334,600 -1134619,0,0,0 -1134620,327,389,716 -1134621,158,213,371 -1134622,174,179,353 -1134623,145,164,309 -1134624,194,223,417 -1134625,209,236,445 -1134626,229,241,470 -1134627,200,216,416 -1134628,285,277,562 -1134629,135,58,193 -1134630,216,223,439 -1134631,151,155,306 -1134632,192,231,423 -1134701,211,268,479 -1134702,207,259,466 -1134703,109,197,306 -1134704,221,318,539 -1134705,306,346,652 -1134706,259,312,571 -1134707,171,182,353 -1134708,237,265,502 -1134709,162,151,313 -1134710,183,236,419 -1134711,154,142,296 -1134712,170,191,361 -1134713,207,229,436 -1134714,236,289,525 -1134715,139,183,322 -1134716,169,243,412 -1134717,110,121,231 -1134801,331,320,651 -1134802,221,232,453 -1134803,267,306,573 -1134804,249,355,604 -1134805,110,134,244 -1134806,202,214,416 -1134807,198,233,431 -1134808,104,115,219 -1134809,130,135,265 -1134810,150,195,345 -1134811,219,235,454 -1134812,157,152,309 -1134813,239,239,478 -1134814,271,296,567 -1134815,171,154,325 -1134816,247,276,523 -1134817,220,230,450 -1134818,148,153,301 -1134819,190,220,410 -1134820,247,189,436 -1134821,224,231,455 -1134822,121,131,252 -1134823,244,266,510 -1134824,261,272,533 -1134825,143,175,318 -1134826,193,211,404 -1134827,205,238,443 -1134828,156,144,300 -1134829,162,170,332 -1134830,239,275,514 -1134831,153,176,329 -1134832,239,248,487 -1134833,217,207,424 -1134834,147,161,308 -1134835,203,253,456 -1134836,197,199,396 -1134837,145,172,317 -1134838,246,254,500 -1134839,205,240,445 -1134840,167,205,372 -1134841,197,266,463 -1134842,313,362,675 -1134843,271,278,549 -1134844,196,193,389 -1134845,298,293,591 -1134846,197,219,416 -1134847,187,209,396 -1134848,156,147,303 -1134849,184,200,384 -1134850,144,137,281 -1134851,170,175,345 -1134852,138,156,294 -1134853,105,111,216 -1134854,166,170,336 -1134855,45,43,88 -1134856,124,114,238 -1134857,118,136,254 -1134858,106,115,221 -1134859,178,259,437 -1134860,118,131,249 -1134901,102,98,200 -1134902,183,164,347 -1134903,247,236,483 -1134904,294,278,572 -1134905,158,130,288 -1134906,134,109,243 -1134907,339,342,681 -1134908,79,100,179 -1134909,291,275,566 -1134910,187,242,429 -1134911,0,0,0 -1134912,254,240,494 -1134913,152,170,322 -1134914,254,255,509 -1134915,195,205,400 -1134916,208,208,416 -1134917,194,206,400 -1134918,211,180,391 -1134919,221,244,465 -1134920,226,211,437 -1134921,156,166,322 -1134922,178,186,364 -1134923,200,192,392 -1134924,291,302,593 -1134925,298,254,552 -1134926,192,205,397 -1134927,267,299,566 -1134928,237,245,482 -1134929,249,240,489 -1134930,161,200,361 -1134931,216,232,448 -1134932,239,242,481 -1134933,219,233,452 -1134934,173,178,351 -1134935,258,242,500 -1134936,524,442,966 -1134937,225,221,446 -1134938,284,265,549 -1134939,196,157,353 -1134940,918,892,1810 -1134941,142,139,281 -1134942,275,304,579 -1134943,220,254,474 -1134944,224,239,463 -1134945,131,140,271 -1134946,157,143,300 -1134947,268,226,494 -1134948,291,293,584 -1134949,141,128,269 -1134950,171,177,348 -1134951,314,288,602 -1134952,250,202,452 -1134953,148,126,274 -1134954,294,237,531 -1134955,399,371,770 -1134956,200,185,385 -1134957,205,174,379 -1134958,190,185,375 -1134959,175,167,342 -1135001,174,220,394 -1135002,216,227,443 -1135003,262,281,543 -1135004,163,175,338 -1135005,320,314,634 -1135006,229,241,470 -1135007,45,44,89 -1135008,205,184,389 -1135009,213,220,433 -1135010,165,200,365 -1135011,203,190,393 -1135012,211,216,427 -1135013,199,287,486 -1135014,131,124,255 -1135015,188,206,394 -1135016,591,663,1254 -1135017,206,217,423 -1135018,242,240,482 -1135019,153,163,316 -1135020,246,321,567 -1135021,279,257,536 -1135022,185,196,381 -1135023,218,261,479 -1135024,8,3,11 -1135025,0,0,0 -1135026,0,0,0 -1135027,128,139,267 -1135028,1381,17,1398 -1135029,257,264,521 -1135030,182,197,379 -1135031,174,181,355 -1135032,208,201,409 -1135033,181,185,366 -1135034,129,142,271 -1135035,257,273,530 -1135036,168,176,344 -1135037,241,230,471 -1135038,259,252,511 -1135039,267,273,540 -1135040,239,240,479 -1135041,193,211,404 -1135042,173,191,364 -1135043,173,160,333 -1135044,249,235,484 -1135045,328,340,668 -1135046,357,330,687 -1135047,140,142,282 -1135048,263,290,553 -1135101,117,182,299 -1135102,129,147,276 -1135103,175,214,389 -1135104,167,202,369 -1135105,215,200,415 -1135106,226,241,467 -1135107,215,228,443 -1135108,165,183,348 -1135109,0,0,0 -1135110,186,219,405 -1135111,179,202,381 -1135112,211,203,414 -1135113,221,212,433 -1135114,136,139,275 -1135115,291,310,601 -1135116,281,297,578 -1135117,259,289,548 -1135118,214,180,394 -1135119,188,205,393 -1135120,217,229,446 -1135121,166,183,349 -1135122,122,151,273 -1135123,172,201,373 -1135124,245,270,515 -1135125,129,130,259 -1135126,234,285,519 -1135127,333,341,674 -1135128,182,176,358 -1135129,228,194,422 -1135130,251,200,451 -1135131,239,246,485 -1135132,215,228,443 -1135133,241,242,483 -1135134,193,208,401 -1135135,219,234,453 -1135136,195,217,412 -1135137,220,243,463 -1135138,241,261,502 -1135139,201,206,407 -1135140,233,207,440 -1135141,143,147,290 -1135142,190,199,389 -1135143,187,224,411 -1135144,221,249,470 -1135145,190,191,381 -1135146,360,374,734 -1135147,148,208,356 -1135148,253,309,562 -1135149,255,283,538 -1135150,147,192,339 -1135151,217,215,432 -1135152,346,344,690 -1135153,161,209,370 -1135154,164,166,330 -1135155,186,228,414 -1135156,529,602,1131 -1135157,155,172,327 -1135158,328,368,696 -1135159,213,214,427 -1135160,276,299,575 -1135161,262,272,534 -1135162,219,228,447 -1135163,184,223,407 -1135164,303,304,607 -1135165,255,246,501 -1135166,151,176,327 -1135167,170,178,348 -1135201,34,12,46 -1135202,186,162,348 -1135203,205,219,424 -1135204,160,163,323 -1135205,344,360,704 -1135206,184,329,513 -1135207,149,147,296 -1135208,118,72,190 -1135209,207,197,404 -1135210,221,227,448 -1135211,194,188,382 -1135212,124,147,271 -1135213,257,247,504 -1135214,130,124,254 -1135215,204,243,447 -1135216,81,99,180 -1135217,274,319,593 -1135218,196,201,397 -1135219,201,188,389 -1135220,211,235,446 -1135221,199,175,374 -1135222,292,333,625 -1135223,211,226,437 -1135224,129,150,279 -1135225,223,258,481 -1135226,207,210,417 -1135227,221,283,504 -1135228,114,163,277 -1135229,183,237,420 -1135230,305,347,652 -1135231,184,211,395 -1135232,162,206,368 -1135233,116,126,242 -1135234,276,285,561 -1135235,166,162,328 -1135236,199,222,421 -1135237,150,167,317 -1135238,218,250,468 -1135239,175,196,371 -1135240,181,192,373 -1135241,210,143,353 -1135242,255,280,535 -1135243,114,121,235 -1135244,175,200,375 -1135245,219,275,494 -1135246,169,204,373 -1135247,261,269,530 -1135248,153,168,321 -1135249,223,295,518 -1135250,195,217,412 -1135251,117,132,249 -1135252,160,180,340 -1135253,189,184,373 -1135254,135,156,291 -1135255,205,215,420 -1135256,256,290,546 -1135257,176,192,368 -1135258,129,145,274 -1135259,313,334,647 -1135260,161,227,388 -1135261,296,380,676 -1135262,210,239,449 -1135263,238,297,535 -1135264,271,257,528 -1135265,213,262,475 -1135266,164,237,401 -1135267,232,242,474 -1135268,136,163,299 -1135301,158,133,291 -1135302,0,0,0 -1135303,273,253,526 -1135304,363,336,699 -1135305,217,222,439 -1135306,3,0,3 -1135307,152,172,324 -1135308,5,3,8 -1135309,128,122,250 -1135310,727,705,1432 -1135311,318,330,648 -1135312,183,196,379 -1135313,184,176,360 -1135314,138,157,295 -1135315,181,188,369 -1135316,225,224,449 -1135317,291,335,626 -1135318,265,255,520 -1135319,279,272,551 -1135320,338,362,700 -1135321,245,262,507 -1135322,190,194,384 -1135323,196,196,392 -1135324,220,257,477 -1135325,182,193,375 -1135326,293,293,586 -1135327,183,179,362 -1135328,272,305,577 -1135329,192,170,362 -1135330,215,205,420 -1135331,232,263,495 -1135332,285,302,587 -1135333,221,216,437 -1135334,206,199,405 -1135335,172,200,372 -1135336,362,396,758 -1135337,171,177,348 -1135338,236,254,490 -1135339,412,426,838 -1135340,127,141,268 -1135341,0,0,0 -1135342,269,264,533 -1135343,121,137,258 -1135344,5,0,5 -1135345,3,3,6 -1135346,0,0,0 -1135347,149,149,298 -1135348,186,190,376 -1135349,207,200,407 -1135350,348,349,697 -1135351,360,339,699 -1135352,259,256,515 -1135353,247,266,513 -1135354,317,321,638 -1135355,264,259,523 -1135356,382,393,775 -1135357,412,408,820 -1135358,147,149,296 -1135359,5,4,9 -1135360,0,0,0 -1135361,132,119,251 -1135362,207,196,403 -1135363,213,218,431 -1135364,248,285,533 -1135365,254,281,535 -1135366,233,218,451 -1135367,188,204,392 -1135368,191,199,390 -1135369,19,13,32 -1135370,274,282,556 -1135371,351,373,724 -1135372,221,203,424 -1135401,209,220,429 -1135402,203,199,402 -1135403,254,272,526 -1135404,160,162,322 -1135405,159,155,314 -1135406,222,231,453 -1135407,107,136,243 -1135408,171,159,330 -1135409,215,190,405 -1135410,242,244,486 -1135411,148,147,295 -1135412,252,283,535 -1135413,284,278,562 -1135414,234,226,460 -1135415,346,318,664 -1135416,0,0,0 -1135417,175,172,347 -1135418,250,235,485 -1135419,272,306,578 -1135420,196,197,393 -1135421,263,295,558 -1135422,264,310,574 -1135423,8,9,17 -1135424,176,179,355 -1135425,141,149,290 -1135426,148,220,368 -1135427,305,313,618 -1135428,174,178,352 -1135429,122,135,257 -1135430,91,94,185 -1135431,157,183,340 -1135432,130,147,277 -1135433,139,156,295 -1135434,158,178,336 -1135435,266,273,539 -1135436,182,175,357 -1135437,0,0,0 -1135438,120,128,248 -1135439,238,245,483 -1135440,166,154,320 -1135441,204,189,393 -1135442,168,176,344 -1135443,191,198,389 -1135444,217,228,445 -1135445,277,225,502 -1135446,165,197,362 -1135447,160,167,327 -1135448,172,162,334 -1135449,87,98,185 -1135450,217,247,464 -1135451,178,266,444 -1135452,160,203,363 -1135453,140,141,281 -1135454,118,134,252 -1135501,0,0,0 -1135502,0,0,0 -1135601,3,0,3 -1135602,0,0,0 -1135603,169,164,333 -1135604,15,0,15 -1135605,7,0,7 -1135606,264,259,523 -1135607,155,143,298 -1135608,234,241,475 -1135609,256,259,515 -1135610,298,285,583 -1135611,275,289,564 -1135612,243,269,512 -1135613,314,300,614 -1135614,235,234,469 -1135615,238,257,495 -1135616,154,159,313 -1135617,164,160,324 -1135618,260,244,504 -1135619,298,258,556 -1135620,0,0,0 -1135621,207,189,396 -1135622,0,0,0 -1135623,238,228,466 -1135624,235,230,465 -1135625,184,191,375 -1135626,172,189,361 -1135627,185,182,367 -1135628,204,202,406 -1135629,122,126,248 -1135701,241,240,481 -1135702,172,188,360 -1135703,201,177,378 -1135704,180,191,371 -1135705,168,151,319 -1135706,350,337,687 -1135707,171,174,345 -1135708,289,315,604 -1135709,196,207,403 -1135710,191,181,372 -1135711,305,326,631 -1135712,307,324,631 -1135713,245,240,485 -1135714,149,144,293 -1135715,202,184,386 -1135716,277,322,599 -1135717,145,151,296 -1135718,230,226,456 -1135719,133,125,258 -1135720,172,173,345 -1135721,268,251,519 -1135722,214,188,402 -1135723,219,231,450 -1135724,176,167,343 -1135725,242,224,466 -1135726,280,242,522 -1135727,214,227,441 -1135728,292,336,628 -1135729,225,248,473 -1135730,181,203,384 -1135731,226,233,459 -1135732,239,249,488 -1135733,292,305,597 -1135734,254,232,486 -1135735,266,259,525 -1135736,272,269,541 -1135737,174,179,353 -1135738,254,269,523 -1135739,269,277,546 -1135740,168,200,368 -1135741,235,229,464 -1135742,198,195,393 -1135743,168,195,363 -1135744,181,199,380 -1135745,199,190,389 -1135746,183,179,362 -1135747,171,173,344 -1135748,182,187,369 -1135749,0,0,0 -1135750,263,294,557 -1135751,108,107,215 -1135752,183,208,391 -1135753,227,235,462 -1135754,132,126,258 -1135755,120,128,248 -1135756,137,134,271 -1135757,130,135,265 -1135758,153,222,375 -1135801,187,221,408 -1135802,118,125,243 -1135803,211,228,439 -1135804,311,339,650 -1135805,160,174,334 -1135806,0,4,4 -1135807,114,133,247 -1135808,268,263,531 -1135809,243,249,492 -1135810,274,292,566 -1135811,186,186,372 -1135812,156,170,326 -1135813,147,142,289 -1135814,235,240,475 -1135815,195,187,382 -1135816,261,252,513 -1135817,3,0,3 -1135818,181,209,390 -1135819,168,213,381 -1135820,254,246,500 -1135821,251,233,484 -1135822,135,136,271 -1135823,277,303,580 -1135824,130,143,273 -1135825,53,41,94 -1135826,105,179,284 -1135827,245,252,497 -1135828,217,220,437 -1135829,196,269,465 -1135830,198,194,392 -1135831,215,207,422 -1135832,139,139,278 -1135833,148,152,300 -1135834,227,287,514 -1135835,0,0,0 -1135836,202,202,404 -1135837,128,118,246 -1135838,226,220,446 -1135839,232,249,481 -1135840,168,162,330 -1135841,169,174,343 -1135842,268,270,538 -1135901,209,234,443 -1135902,133,149,282 -1135903,180,193,373 -1135904,162,165,327 -1135905,232,235,467 -1135906,185,187,372 -1135907,221,244,465 -1135908,240,221,461 -1135909,176,162,338 -1135910,0,0,0 -1135911,241,266,507 -1135912,198,195,393 -1135913,154,163,317 -1135914,187,210,397 -1135915,264,294,558 -1135916,199,197,396 -1135917,189,180,369 -1135918,173,200,373 -1135919,220,214,434 -1135920,127,129,256 -1135921,149,179,328 -1135922,0,0,0 -1135923,300,288,588 -1135924,279,262,541 -1135925,228,242,470 -1135926,283,291,574 -1135927,178,195,373 -1135928,178,185,363 -1135929,195,183,378 -1135930,239,237,476 -1135931,214,207,421 -1135932,226,267,493 -1135933,217,253,470 -1135934,291,316,607 -1135935,245,274,519 -1135936,168,166,334 -1135937,227,231,458 -1135938,164,166,330 -1135939,192,170,362 -1135940,156,166,322 -1135941,3,7,10 -1135942,249,240,489 -1135943,208,188,396 -1135944,179,195,374 -1135945,249,264,513 -1135946,195,194,389 -1135947,264,279,543 -1135948,157,187,344 -1135949,269,300,569 -1135950,212,207,419 -1135951,140,154,294 -1135952,0,0,0 -1135953,177,170,347 -1135954,298,300,598 -1135955,212,195,407 -1135956,239,244,483 -1135957,227,246,473 -1135958,179,175,354 -1135959,229,239,468 -1135960,249,265,514 -1135961,155,159,314 -1136001,233,271,504 -1136002,247,252,499 -1136003,257,231,488 -1136004,198,199,397 -1136005,194,193,387 -1136006,141,166,307 -1136007,203,211,414 -1136008,192,190,382 -1136009,221,220,441 -1136010,177,236,413 -1136011,158,145,303 -1136012,178,184,362 -1136013,161,163,324 -1136014,291,278,569 -1136015,137,159,296 -1136016,280,301,581 -1136017,220,264,484 -1136018,311,307,618 -1136019,303,349,652 -1136020,103,129,232 -1136021,150,184,334 -1136022,174,199,373 -1136023,161,178,339 -1136024,238,251,489 -1136025,140,118,258 -1136026,227,234,461 -1136027,291,332,623 -1136028,125,146,271 -1136029,300,338,638 -1136030,208,214,422 -1136031,133,133,266 -1136032,218,249,467 -1136033,234,241,475 -1136034,142,174,316 -1136035,222,261,483 -1136101,176,183,359 -1136102,0,0,0 -1136103,155,144,299 -1136104,306,298,604 -1136105,174,157,331 -1136106,214,171,385 -1136107,224,234,458 -1136108,295,271,566 -1136109,189,205,394 -1136110,149,156,305 -1136111,102,97,199 -1136112,256,244,500 -1136113,216,234,450 -1136114,248,254,502 -1136115,254,245,499 -1136116,158,160,318 -1136117,303,325,628 -1136118,172,214,386 -1136119,171,182,353 -1136120,202,190,392 -1136121,203,213,416 -1136122,273,276,549 -1136123,298,267,565 -1136124,245,280,525 -1136125,159,170,329 -1136126,241,252,493 -1136127,261,256,517 -1136128,173,191,364 -1136129,179,190,369 -1136130,163,184,347 -1136131,159,167,326 -1136132,248,238,486 -1136133,203,201,404 -1136134,307,295,602 -1136135,177,184,361 -1136136,165,185,350 -1136137,209,223,432 -1136138,188,206,394 -1136139,162,149,311 -1136140,248,245,493 -1136141,182,181,363 -1136142,323,325,648 -1136143,132,166,298 -1136144,152,134,286 -1136145,206,193,399 -1136146,196,215,411 -1136201,105,86,191 -1136202,131,131,262 -1136203,192,193,385 -1136204,192,197,389 -1136205,193,210,403 -1136206,208,192,400 -1136207,264,280,544 -1136208,187,165,352 -1136209,223,231,454 -1136210,194,189,383 -1136211,250,242,492 -1136212,277,271,548 -1136213,237,250,487 -1136214,163,163,326 -1136215,225,228,453 -1136216,214,210,424 -1136217,218,218,436 -1136218,174,201,375 -1136219,271,292,563 -1136220,207,212,419 -1136221,229,266,495 -1136222,199,198,397 -1136223,296,285,581 -1136224,219,221,440 -1136225,243,266,509 -1136226,215,245,460 -1136227,284,316,600 -1136228,301,282,583 -1136229,264,229,493 -1136230,262,282,544 -1136231,185,224,409 -1136232,298,290,588 -1136233,211,215,426 -1136234,176,206,382 -1136235,340,359,699 -1136236,140,132,272 -1136237,98,115,213 -1136238,236,244,480 -1136239,264,286,550 -1136240,169,156,325 -1136241,101,95,196 -1136242,141,127,268 -1136243,198,213,411 -1136301,130,134,264 -1136302,262,266,528 -1136303,269,271,540 -1136304,237,239,476 -1136305,200,222,422 -1136306,188,165,353 -1136307,203,219,422 -1136308,264,272,536 -1136309,246,272,518 -1136310,231,218,449 -1136311,201,211,412 -1136312,169,133,302 -1136313,185,193,378 -1136314,129,143,272 -1136315,241,207,448 -1136316,230,242,472 -1136317,181,157,338 -1136318,248,283,531 -1136319,271,247,518 -1136320,281,291,572 -1136321,198,182,380 -1136322,241,234,475 -1136323,187,179,366 -1136324,275,238,513 -1136325,203,190,393 -1136326,191,170,361 -1136327,298,284,582 -1136328,240,238,478 -1136329,269,293,562 -1136330,245,236,481 -1136331,165,171,336 -1136332,172,188,360 -1136333,184,186,370 -1136334,167,176,343 -1136335,271,250,521 -1136336,335,322,657 -1136337,177,199,376 -1136338,196,187,383 -1136339,121,119,240 -1136340,189,199,388 -1136341,199,230,429 -1136342,236,243,479 -1136343,178,155,333 -1136344,313,285,598 -1136345,274,282,556 -1136346,281,253,534 -1136347,240,207,447 -1136348,0,3,3 -1136349,153,156,309 -1136350,226,256,482 -1136351,252,250,502 -1136352,121,111,232 -1136353,169,157,326 -1136354,153,141,294 -1136355,168,161,329 -1136356,124,119,243 -1136357,157,126,283 -1136358,286,287,573 -1136359,130,155,285 -1136360,137,146,283 -1136361,109,118,227 -1136362,144,140,284 -1136363,199,199,398 -1136364,154,157,311 -1136365,178,177,355 -1136366,98,102,200 -1136367,108,117,225 -1136401,138,125,263 -1136402,288,286,574 -1136403,241,289,530 -1136404,133,125,258 -1136405,206,211,417 -1136406,259,291,550 -1136407,227,245,472 -1136408,110,109,219 -1136409,129,124,253 -1136410,137,149,286 -1136411,150,160,310 -1136412,214,206,420 -1136413,205,217,422 -1136414,234,236,470 -1136415,253,234,487 -1136416,271,267,538 -1136417,215,219,434 -1136418,145,143,288 -1136419,103,137,240 -1136420,175,208,383 -1136421,152,148,300 -1136422,210,222,432 -1136423,159,193,352 -1136424,136,141,277 -1136425,110,119,229 -1136426,152,141,293 -1136427,161,156,317 -1136428,279,306,585 -1136429,0,0,0 -1136430,245,266,511 -1136431,265,258,523 -1136432,134,170,304 -1136433,261,309,570 -1136434,143,140,283 -1136435,214,253,467 -1136436,317,322,639 -1136437,198,200,398 -1136438,334,314,648 -1136439,169,185,354 -1136440,274,287,561 -1136441,186,205,391 -1136442,190,201,391 -1136443,180,142,322 -1136444,217,220,437 -1136445,180,161,341 -1136446,269,299,568 -1136447,247,298,545 -1136448,115,102,217 -1136449,260,255,515 -1136450,248,265,513 -1136451,99,129,228 -1136452,224,222,446 -1136453,102,111,213 -1136454,125,105,230 -1136455,127,131,258 -1136456,188,227,415 -1136457,155,160,315 -1136458,148,165,313 -1136501,367,315,682 -1136502,332,260,592 -1136503,214,159,373 -1136504,264,263,527 -1136505,251,225,476 -1136506,219,201,420 -1136507,217,171,388 -1136508,246,216,462 -1136509,205,164,369 -1136510,191,180,371 -1136511,392,314,706 -1136512,232,234,466 -1136513,299,288,587 -1136514,224,194,418 -1136515,273,293,566 -1136516,154,142,296 -1136517,140,123,263 -1136518,396,302,698 -1136519,341,274,615 -1136520,227,226,453 -1136521,165,192,357 -1136522,258,260,518 -1136523,269,242,511 -1136524,239,231,470 -1136525,277,252,529 -1136526,191,189,380 -1136527,230,193,423 -1136528,295,275,570 -1136529,274,243,517 -1136530,284,283,567 -1136531,230,202,432 -1136532,375,352,727 -1136533,246,224,470 -1136534,222,197,419 -1136535,248,224,472 -1136536,325,293,618 -1136537,263,261,524 -1136538,249,205,454 -1136539,202,149,351 -1136540,238,250,488 -1136541,212,195,407 -1136542,330,267,597 -1136543,228,188,416 -1136544,272,339,611 -1136545,229,183,412 -1136546,156,166,322 -1136547,211,224,435 -1136548,310,273,583 -1136549,373,350,723 -1136550,237,211,448 -1136551,226,191,417 -1136552,156,137,293 -1136601,173,187,360 -1136602,310,291,601 -1136603,263,280,543 -1136604,260,244,504 -1136605,165,184,349 -1136606,230,244,474 -1136607,208,203,411 -1136608,161,149,310 -1136609,282,268,550 -1136610,242,214,456 -1136611,225,197,422 -1136612,235,212,447 -1136613,179,184,363 -1136614,173,159,332 -1136615,244,226,470 -1136616,185,200,385 -1136617,172,175,347 -1136618,261,244,505 -1136619,151,131,282 -1136620,216,174,390 -1136621,312,291,603 -1136622,157,145,302 -1136623,233,211,444 -1136624,246,268,514 -1136625,156,165,321 -1136626,238,269,507 -1136627,207,209,416 -1136628,168,157,325 -1136629,270,243,513 -1136630,173,165,338 -1136631,208,198,406 -1136632,216,246,462 -1136633,143,129,272 -1136634,202,215,417 -1136635,210,177,387 -1136636,301,252,553 -1136637,237,202,439 -1136638,249,263,512 -1136639,171,186,357 -1136640,178,185,363 -1136641,3,3,6 -1136642,251,255,506 -1136643,205,184,389 -1136644,10,3,13 -1136645,224,196,420 -1136646,162,172,334 -1136647,153,141,294 -1136648,137,137,274 -1136701,193,208,401 -1136702,271,278,549 -1136703,139,181,320 -1136704,216,238,454 -1136705,75,100,175 -1136706,153,161,314 -1136707,263,249,512 -1136708,180,183,363 -1136709,168,198,366 -1136710,126,159,285 -1136711,201,224,425 -1136712,241,269,510 -1136713,330,313,643 -1136714,176,192,368 -1136715,196,214,410 -1136716,219,240,459 -1136717,241,228,469 -1136718,276,273,549 -1136719,191,218,409 -1136720,300,325,625 -1136721,284,259,543 -1136722,252,270,522 -1136723,293,279,572 -1136724,337,326,663 -1136725,270,257,527 -1136726,249,257,506 -1136727,307,293,600 -1136728,263,251,514 -1136801,127,123,250 -1136802,177,185,362 -1136803,182,266,448 -1136804,236,245,481 -1136805,132,135,267 -1136806,278,298,576 -1136807,215,214,429 -1136808,261,292,553 -1136809,240,269,509 -1136810,227,257,484 -1136811,184,195,379 -1136812,283,281,564 -1136813,229,204,433 -1136814,214,204,418 -1136815,263,291,554 -1136816,161,181,342 -1136817,408,468,876 -1136818,190,205,395 -1136819,255,256,511 -1136820,271,287,558 -1136821,193,190,383 -1136822,177,215,392 -1136823,129,146,275 -1136824,216,256,472 -1136825,237,270,507 -1136826,303,314,617 -1136827,162,177,339 -1136828,207,226,433 -1136829,315,333,648 -1136830,217,233,450 -1136831,242,265,507 -1136832,344,378,722 -1136833,213,228,441 -1136834,226,213,439 -1136835,247,267,514 -1136836,155,167,322 -1136837,174,167,341 -1136838,193,190,383 -1136839,220,211,431 -1136840,226,248,474 -1136841,274,272,546 -1136842,214,199,413 -1136843,348,367,715 -1136901,133,136,269 -1136902,222,214,436 -1136903,228,246,474 -1136904,0,0,0 -1136905,172,149,321 -1136906,231,255,486 -1136907,271,294,565 -1136908,235,260,495 -1136909,254,256,510 -1136910,283,296,579 -1136911,249,248,497 -1136912,190,216,406 -1136913,195,199,394 -1136914,316,296,612 -1136915,177,163,340 -1136916,205,213,418 -1136917,206,214,420 -1136918,230,281,511 -1136919,189,206,395 -1136920,123,128,251 -1136921,260,287,547 -1136922,251,274,525 -1136923,254,247,501 -1136924,191,176,367 -1136925,222,229,451 -1136926,250,251,501 -1136927,349,377,726 -1136928,361,381,742 -1136929,319,357,676 -1136930,247,266,513 -1136931,184,193,377 -1136932,191,182,373 -1136933,374,399,773 -1136934,147,155,302 -1136935,256,260,516 -1136936,226,244,470 -1136937,274,335,609 -1136938,193,215,408 -1136939,193,242,435 -1136940,131,196,327 -1136941,161,167,328 -1136942,246,271,517 -1136943,153,145,298 -1136944,181,184,365 -1136945,271,313,584 -1136946,250,240,490 -1136947,0,0,0 -1136948,219,222,441 -1136949,111,113,224 -1136950,250,261,511 -1137001,98,104,202 -1137002,208,208,416 -1137003,153,155,308 -1137004,168,218,386 -1137005,160,196,356 -1137006,200,253,453 -1137007,226,227,453 -1137008,163,199,362 -1137009,180,202,382 -1137010,245,228,473 -1137011,285,318,603 -1137012,164,171,335 -1137013,110,108,218 -1137014,255,254,509 -1137015,171,214,385 -1137016,178,185,363 -1137017,219,214,433 -1137018,283,290,573 -1137019,360,393,753 -1137020,208,221,429 -1137021,152,221,373 -1137022,162,188,350 -1137023,163,214,377 -1137024,243,285,528 -1137025,242,250,492 -1137026,316,331,647 -1137027,155,159,314 -1137028,209,215,424 -1137029,187,202,389 -1137030,206,249,455 -1137101,134,131,265 -1137102,158,153,311 -1137103,127,118,245 -1137104,192,206,398 -1137105,184,191,375 -1137106,117,167,284 -1137107,280,277,557 -1137108,300,298,598 -1137109,252,263,515 -1137110,251,281,532 -1137111,198,234,432 -1137112,214,196,410 -1137113,197,214,411 -1137114,195,213,408 -1137115,217,238,455 -1137116,161,159,320 -1137117,105,121,226 -1137118,219,233,452 -1137119,189,205,394 -1137120,256,249,505 -1137121,203,206,409 -1137122,166,181,347 -1137123,111,116,227 -1137124,100,92,192 -1137125,184,198,382 -1137126,245,252,497 -1137127,200,206,406 -1137128,209,209,418 -1137129,170,181,351 -1137130,180,188,368 -1137131,115,146,261 -1137201,282,293,575 -1137202,258,256,514 -1137203,206,230,436 -1137204,21,9,30 -1137205,148,151,299 -1137206,267,276,543 -1137207,188,209,397 -1137208,214,217,431 -1137209,3,0,3 -1137210,208,278,486 -1137211,169,200,369 -1137212,183,210,393 -1137213,253,278,531 -1137214,219,221,440 -1137215,159,180,339 -1137216,279,321,600 -1137217,114,87,201 -1137218,316,314,630 -1137219,312,288,600 -1137220,156,189,345 -1137221,243,266,509 -1137222,149,157,306 -1137223,233,232,465 -1137224,147,145,292 -1137225,151,147,298 -1137226,138,137,275 -1137227,113,211,324 -1137228,146,158,304 -1137229,170,184,354 -1137230,271,298,569 -1137231,257,227,484 -1137232,290,262,552 -1137233,136,141,277 -1137234,176,196,372 -1137235,172,214,386 -1137236,160,171,331 -1137237,213,218,431 -1137238,284,280,564 -1137239,157,161,318 -1137240,171,163,334 -1137241,164,156,320 -1137242,137,144,281 -1137243,131,136,267 -1137244,151,160,311 -1137245,153,158,311 -1137301,157,164,321 -1137302,323,279,602 -1137303,273,268,541 -1137304,314,346,660 -1137305,134,147,281 -1137306,170,175,345 -1137307,0,0,0 -1137308,135,127,262 -1137309,194,244,438 -1137310,103,107,210 -1137311,0,0,0 -1137312,154,203,357 -1137313,192,238,430 -1137314,138,175,313 -1137315,0,0,0 -1137316,306,324,630 -1137317,201,208,409 -1137318,268,300,568 -1137319,253,245,498 -1137320,129,129,258 -1137321,157,185,342 -1137322,229,218,447 -1137323,256,253,509 -1137324,254,219,473 -1137325,265,288,553 -1137401,207,214,421 -1137402,296,301,597 -1137403,188,175,363 -1137404,133,141,274 -1137405,133,132,265 -1137406,349,410,759 -1137407,170,175,345 -1137408,245,239,484 -1137409,172,170,342 -1137410,172,191,363 -1137411,123,145,268 -1137412,142,125,267 -1137413,217,260,477 -1137414,207,239,446 -1137415,127,139,266 -1137416,255,299,554 -1137417,274,271,545 -1137418,215,269,484 -1137419,171,188,359 -1137420,190,201,391 -1137421,260,280,540 -1137422,214,238,452 -1137423,168,186,354 -1137424,136,143,279 -1137425,201,219,420 -1137426,155,157,312 -1137427,242,293,535 -1137428,155,184,339 -1137429,313,337,650 -1137430,234,249,483 -1137431,132,128,260 -1137432,125,135,260 -1137433,222,229,451 -1137434,183,205,388 -1137435,136,131,267 -1137436,204,205,409 -1137437,273,276,549 -1137438,193,178,371 -1137439,226,240,466 -1137440,102,115,217 -1137441,186,219,405 -1137442,273,271,544 -1137443,177,206,383 -1137444,125,131,256 -1137445,215,211,426 -1137446,218,252,470 -1137447,220,194,414 -1137448,174,164,338 -1137449,193,209,402 -1137450,119,128,247 -1137451,81,102,183 -1137452,238,237,475 -1137453,0,0,0 -1137454,136,169,305 -1137455,158,148,306 -1137456,159,147,306 -1137457,213,203,416 -1137458,237,223,460 -1137501,208,204,412 -1137502,275,265,540 -1137503,248,247,495 -1137504,145,134,279 -1137505,331,311,642 -1137506,145,132,277 -1137507,194,192,386 -1137508,3,3,6 -1137509,360,310,670 -1137510,290,288,578 -1137511,242,264,506 -1137512,234,254,488 -1137513,266,250,516 -1137514,267,295,562 -1137515,95,89,184 -1137516,359,317,676 -1137517,22,19,41 -1137518,279,283,562 -1137519,544,482,1026 -1137520,220,210,430 -1137521,0,0,0 -1137522,205,251,456 -1137523,178,172,350 -1137524,180,185,365 -1137525,166,161,327 -1137526,181,177,358 -1137527,127,192,319 -1137528,205,201,406 -1137529,136,173,309 -1137530,121,114,235 -1137531,243,246,489 -1137532,244,234,478 -1137533,201,227,428 -1137534,269,244,513 -1137535,203,173,376 -1137601,175,168,343 -1137602,257,274,531 -1137603,224,194,418 -1137604,195,157,352 -1137605,214,211,425 -1137606,259,260,519 -1137607,150,138,288 -1137608,376,337,713 -1137609,97,95,192 -1137610,219,203,422 -1137611,114,129,243 -1137612,123,138,261 -1137613,158,181,339 -1137614,286,342,628 -1137615,231,259,490 -1137616,297,281,578 -1137617,274,236,510 -1137618,197,171,368 -1137619,241,219,460 -1137620,199,203,402 -1137621,134,135,269 -1137622,136,146,282 -1137623,151,151,302 -1137624,252,244,496 -1137625,243,257,500 -1137626,263,278,541 -1137627,320,316,636 -1137628,227,253,480 -1137629,166,158,324 -1137630,297,267,564 -1137631,197,189,386 -1137632,246,281,527 -1137633,232,271,503 -1137634,220,189,409 -1137635,222,228,450 -1137636,277,299,576 -1137637,142,166,308 -1137638,251,314,565 -1137639,224,245,469 -1137640,275,248,523 -1137641,283,320,603 -1137642,251,280,531 -1137643,217,224,441 -1137644,249,240,489 -1137645,203,205,408 -1137646,120,100,220 -1137647,248,253,501 -1137648,228,213,441 -1137649,200,201,401 -1137650,175,186,361 -1137651,226,251,477 -1137652,182,182,364 -1137653,215,230,445 -1137654,237,254,491 -1137655,176,202,378 -1137656,258,264,522 -1137657,205,247,452 -1137701,146,177,323 -1137702,123,144,267 -1137703,108,113,221 -1137704,196,187,383 -1137705,174,179,353 -1137706,126,142,268 -1137707,231,221,452 -1137708,189,190,379 -1137709,138,118,256 -1137710,154,163,317 -1137711,110,108,218 -1137712,143,142,285 -1137713,153,145,298 -1137714,198,215,413 -1137715,195,192,387 -1137716,143,154,297 -1137717,141,150,291 -1137718,196,185,381 -1137719,193,211,404 -1137720,121,109,230 -1137721,229,233,462 -1137722,250,298,548 -1137723,175,179,354 -1137724,194,211,405 -1137725,173,195,368 -1137726,110,152,262 -1137727,304,270,574 -1137728,201,200,401 -1137729,291,294,585 -1137730,198,202,400 -1137731,104,113,217 -1137732,150,141,291 -1137733,192,179,371 -1137734,169,183,352 -1137801,139,142,281 -1137802,282,234,516 -1137803,234,216,450 -1137804,148,168,316 -1137805,241,223,464 -1137806,276,266,542 -1137807,176,199,375 -1137808,199,217,416 -1137809,0,0,0 -1137810,167,180,347 -1137811,189,250,439 -1137812,0,0,0 -1137813,227,253,480 -1137814,100,113,213 -1137815,0,0,0 -1137816,184,209,393 -1137817,236,216,452 -1137818,134,139,273 -1137819,237,264,501 -1137820,103,107,210 -1137821,174,173,347 -1137822,275,254,529 -1137823,116,138,254 -1137824,121,123,244 -1137825,234,237,471 -1137826,327,354,681 -1137827,203,199,402 -1137901,163,156,319 -1137902,258,279,537 -1137903,285,308,593 -1137904,326,381,707 -1137905,171,161,332 -1137906,270,262,532 -1137907,307,309,616 -1137908,181,164,345 -1137909,137,159,296 -1137910,154,159,313 -1137911,141,145,286 -1137912,339,378,717 -1137913,196,226,422 -1137914,138,149,287 -1137915,213,275,488 -1137916,106,94,200 -1137917,208,201,409 -1137918,275,274,549 -1137919,284,298,582 -1137920,214,219,433 -1137921,252,244,496 -1137922,157,149,306 -1137923,257,241,498 -1137924,143,150,293 -1137925,208,206,414 -1137926,0,3,3 -1137927,125,128,253 -1137928,121,119,240 -1137929,159,166,325 -1137930,212,232,444 -1137931,134,149,283 -1137932,165,175,340 -1137933,251,249,500 -1137934,214,203,417 -1137935,215,243,458 -1137936,141,152,293 -1137937,152,145,297 -1138001,218,228,446 -1138002,216,271,487 -1138003,135,132,267 -1138004,145,150,295 -1138005,157,178,335 -1138006,176,178,354 -1138007,164,180,344 -1138008,224,209,433 -1138009,220,255,475 -1138010,272,286,558 -1138011,256,305,561 -1138012,78,94,172 -1138013,145,161,306 -1138014,220,265,485 -1138015,112,112,224 -1138016,146,129,275 -1138017,251,263,514 -1138018,234,306,540 -1138019,218,219,437 -1138020,256,268,524 -1138021,144,170,314 -1138022,221,196,417 -1138023,275,317,592 -1138024,216,229,445 -1138025,154,137,291 -1138026,289,298,587 -1138027,244,292,536 -1138028,229,251,480 -1138029,150,164,314 -1138030,235,221,456 -1138031,201,206,407 -1138032,130,123,253 -1138101,189,147,336 -1138102,126,193,319 -1138103,188,155,343 -1138104,265,248,513 -1138105,363,310,673 -1138106,147,110,257 -1138107,122,130,252 -1138108,119,114,233 -1138109,214,229,443 -1138110,127,124,251 -1138111,272,258,530 -1138112,181,170,351 -1138113,184,172,356 -1138114,200,181,381 -1138115,0,0,0 -1138116,185,149,334 -1138117,238,249,487 -1138118,287,284,571 -1138119,444,412,856 -1138120,103,93,196 -1138121,231,197,428 -1138122,153,144,297 -1138123,424,402,826 -1138124,262,240,502 -1138125,141,147,288 -1138126,228,202,430 -1138127,157,133,290 -1138128,4,6,10 -1138129,183,173,356 -1138130,468,402,870 -1138131,249,236,485 -1138132,179,186,365 -1138133,316,295,611 -1138134,280,321,601 -1138135,148,146,294 -1138136,195,185,380 -1138137,239,270,509 -1138138,213,192,405 -1138139,9,8,17 -1138140,187,181,368 -1138141,141,140,281 -1138142,144,136,280 -1138143,112,117,229 -1138144,190,211,401 -1138145,234,215,449 -1138146,114,140,254 -1138147,209,203,412 -1138201,112,102,214 -1138202,168,197,365 -1138203,196,206,402 -1138204,114,112,226 -1138205,197,207,404 -1138206,212,241,453 -1138207,275,323,598 -1138208,229,269,498 -1138209,187,190,377 -1138210,173,205,378 -1138211,184,191,375 -1138212,183,184,367 -1138213,85,116,201 -1138214,236,249,485 -1138215,139,170,309 -1138216,91,119,210 -1138217,218,242,460 -1138218,110,156,266 -1138219,193,188,381 -1138220,202,216,418 -1138221,136,164,300 -1138222,273,288,561 -1138223,169,197,366 -1138224,233,281,514 -1138225,184,217,401 -1138226,148,148,296 -1138227,172,188,360 -1138228,166,230,396 -1138229,288,375,663 -1138230,233,226,459 -1138231,130,149,279 -1138232,160,144,304 -1138233,181,169,350 -1138234,198,206,404 -1138235,199,210,409 -1138236,226,242,468 -1138237,135,161,296 -1138238,158,176,334 -1138239,96,142,238 -1138301,276,310,586 -1138302,200,236,436 -1138303,0,0,0 -1138304,143,150,293 -1138305,0,0,0 -1138306,237,253,490 -1138307,261,284,545 -1138308,174,197,371 -1138309,202,181,383 -1138310,188,199,387 -1138311,185,178,363 -1138312,232,222,454 -1138313,174,168,342 -1138314,256,258,514 -1138315,235,247,482 -1138316,151,147,298 -1138317,128,146,274 -1138318,104,101,205 -1138319,247,251,498 -1138320,351,375,726 -1138321,188,190,378 -1138322,227,226,453 -1138323,212,230,442 -1138324,211,208,419 -1138325,249,262,511 -1138326,239,266,505 -1138327,160,168,328 -1138328,205,238,443 -1138329,261,299,560 -1138330,247,264,511 -1138331,252,259,511 -1138332,0,0,0 -1138333,178,182,360 -1138334,241,274,515 -1138335,266,268,534 -1138336,0,0,0 -1138337,249,257,506 -1138338,232,249,481 -1138339,163,175,338 -1138340,274,314,588 -1138341,192,219,411 -1138342,105,108,213 -1138343,108,118,226 -1138344,385,369,754 -1138345,171,201,372 -1138346,0,0,0 -1138347,249,242,491 -1138348,246,261,507 -1138349,265,299,564 -1138401,156,153,309 -1138402,204,224,428 -1138403,140,182,322 -1138404,92,96,188 -1138405,0,0,0 -1138406,156,167,323 -1138407,262,306,568 -1138408,247,261,508 -1138409,140,158,298 -1138410,208,202,410 -1138411,183,171,354 -1138412,21,12,33 -1138413,0,0,0 -1138414,0,0,0 -1138415,131,150,281 -1138416,1406,1499,2905 -1138417,182,159,341 -1138418,224,224,448 -1138419,228,280,508 -1138420,195,183,378 -1138421,177,166,343 -1138422,136,155,291 -1138423,240,213,453 -1138424,435,456,891 -1138425,648,552,1200 -1138426,0,0,0 -1138427,590,466,1056 -1138428,172,174,346 -1138429,191,202,393 -1138430,187,158,345 -1138431,211,208,419 -1138432,43,32,75 -1138433,229,222,451 -1138434,295,299,594 -1138435,234,256,490 -1138436,193,242,435 -1138437,157,192,349 -1138438,190,193,383 -1138439,420,422,842 -1138440,35,20,55 -1138501,207,219,426 -1138502,157,164,321 -1138503,229,228,457 -1138504,230,242,472 -1138505,212,217,429 -1138506,198,181,379 -1138507,248,296,544 -1138508,202,205,407 -1138509,174,193,367 -1138510,148,198,346 -1138511,158,186,344 -1138512,202,223,425 -1138513,201,209,410 -1138514,188,199,387 -1138515,128,124,252 -1138516,171,196,367 -1138517,168,190,358 -1138518,178,191,369 -1138519,233,275,508 -1138520,206,230,436 -1138521,234,219,453 -1138522,178,180,358 -1138523,210,275,485 -1138524,175,195,370 -1138525,167,175,342 -1138526,223,197,420 -1138527,226,259,485 -1138528,250,258,508 -1138529,169,201,370 -1138530,132,140,272 -1138531,216,238,454 -1138532,186,210,396 -1138533,138,193,331 -1138534,202,199,401 -1138535,194,211,405 -1138536,166,207,373 -1138537,225,254,479 -1138538,207,244,451 -1138539,136,131,267 -1138540,247,249,496 -1138541,163,176,339 -1138542,229,240,469 -1138543,252,284,536 -1138601,154,180,334 -1138602,171,157,328 -1138603,271,289,560 -1138604,229,254,483 -1138605,162,161,323 -1138606,168,212,380 -1138607,235,260,495 -1138608,129,141,270 -1138609,242,280,522 -1138610,135,137,272 -1138611,221,245,466 -1138612,0,0,0 -1138613,242,253,495 -1138614,131,152,283 -1138615,216,227,443 -1138616,259,287,546 -1138617,197,209,406 -1138618,189,185,374 -1138619,3,3,6 -1138620,199,209,408 -1138621,117,128,245 -1138622,170,194,364 -1138623,231,229,460 -1138624,210,210,420 -1138625,125,130,255 -1138626,178,199,377 -1138627,125,128,253 -1138628,196,277,473 -1138629,226,264,490 -1138630,127,123,250 -1138631,0,0,0 -1138632,203,219,422 -1138633,195,232,427 -1138634,255,304,559 -1138635,198,219,417 -1138636,261,275,536 -1138637,218,243,461 -1138638,209,284,493 -1138639,189,184,373 -1138640,399,465,864 -1138641,120,110,230 -1138642,149,152,301 -1138643,147,161,308 -1138644,215,218,433 -1138645,190,216,406 -1138646,229,265,494 -1138647,115,109,224 -1138648,169,186,355 -1138649,210,217,427 -1138650,178,222,400 -1138701,211,220,431 -1138702,101,112,213 -1138703,100,99,199 -1138704,207,229,436 -1138705,179,177,356 -1138706,231,264,495 -1138707,130,131,261 -1138708,255,315,570 -1138709,255,289,544 -1138710,252,230,482 -1138711,125,145,270 -1138712,203,207,410 -1138713,138,143,281 -1138714,281,271,552 -1138715,153,155,308 -1138716,219,247,466 -1138717,187,183,370 -1138718,187,208,395 -1138719,140,153,293 -1138720,208,237,445 -1138721,208,282,490 -1138722,154,139,293 -1138723,186,193,379 -1138724,0,0,0 -1138725,138,161,299 -1138726,202,248,450 -1138727,139,165,304 -1138728,165,199,364 -1138729,193,201,394 -1138730,0,0,0 -1138731,267,274,541 -1138732,193,196,389 -1138733,121,139,260 -1138734,177,189,366 -1138735,108,99,207 -1138736,293,318,611 -1138737,205,245,450 -1138738,0,0,0 -1138739,138,171,309 -1138740,136,150,286 -1138741,110,118,228 -1138742,154,197,351 -1138801,193,234,427 -1138802,190,225,415 -1138803,137,165,302 -1138804,153,190,343 -1138805,198,215,413 -1138806,175,226,401 -1138807,189,211,400 -1138808,212,227,439 -1138809,195,211,406 -1138810,283,297,580 -1138811,163,190,353 -1138812,227,270,497 -1138813,155,179,334 -1138814,126,133,259 -1138815,197,235,432 -1138816,140,169,309 -1138817,304,308,612 -1138818,178,187,365 -1138819,262,255,517 -1138820,177,223,400 -1138821,188,220,408 -1138822,361,389,750 -1138823,216,301,517 -1138824,266,309,575 -1138825,192,185,377 -1138826,183,203,386 -1138827,246,306,552 -1138828,215,239,454 -1138829,308,322,630 -1138830,279,303,582 -1138831,211,202,413 -1138832,189,202,391 -1138833,210,248,458 -1138834,206,246,452 -1138835,200,243,443 -1138836,149,214,363 -1138837,279,282,561 -1138838,305,353,658 -1138839,143,148,291 -1138840,173,179,352 -1138841,170,165,335 -1138842,338,349,687 -1138843,233,260,493 -1138844,112,153,265 -1138845,224,234,458 -1138846,206,257,463 -1138847,155,170,325 -1138848,205,254,459 -1138849,225,249,474 -1138850,110,120,230 -1138851,173,198,371 -1138852,262,292,554 -1138853,206,237,443 -1138854,310,291,601 -1138855,224,220,444 -1138901,15,0,15 -1138902,227,230,457 -1138903,272,310,582 -1138904,262,289,551 -1138905,0,0,0 -1138906,239,271,510 -1138907,260,282,542 -1138908,225,220,445 -1138909,0,0,0 -1138910,36,38,74 -1138911,270,297,567 -1138912,264,311,575 -1138913,276,335,611 -1138914,255,304,559 -1138915,258,284,542 -1138916,287,328,615 -1138917,274,312,586 -1138918,218,274,492 -1138919,310,309,619 -1138920,157,191,348 -1138921,234,264,498 -1138922,220,226,446 -1138923,198,245,443 -1138924,230,261,491 -1138925,182,179,361 -1138926,178,200,378 -1138927,185,210,395 -1138928,194,256,450 -1138929,182,193,375 -1138930,228,257,485 -1139001,257,242,499 -1139002,218,247,465 -1139003,166,188,354 -1139004,205,204,409 -1139005,291,300,591 -1139006,113,111,224 -1139007,290,292,582 -1139008,268,262,530 -1139009,223,240,463 -1139010,208,185,393 -1139011,281,199,480 -1139012,230,253,483 -1139013,274,267,541 -1139014,199,198,397 -1139015,177,253,430 -1139016,252,265,517 -1139017,197,210,407 -1139018,196,217,413 -1139019,176,178,354 -1139020,227,242,469 -1139021,159,182,341 -1139022,144,166,310 -1139023,141,126,267 -1139024,145,170,315 -1139025,293,320,613 -1139026,207,217,424 -1139027,208,222,430 -1139028,208,218,426 -1139029,283,294,577 -1139030,131,173,304 -1139031,315,318,633 -1139032,220,214,434 -1139033,213,375,588 -1139034,186,291,477 -1139035,231,228,459 -1139036,306,324,630 -1139037,268,251,519 -1139038,184,196,380 -1139039,202,198,400 -1139040,157,180,337 -1139041,160,164,324 -1139042,339,341,680 -1139043,212,187,399 -1139044,205,190,395 -1139045,252,220,472 -1139046,158,152,310 -1139047,210,197,407 -1139048,171,158,329 -1139049,169,169,338 -1139050,129,132,261 -1139051,191,220,411 -1139052,170,168,338 -1139053,106,119,225 -1139101,149,151,300 -1139102,192,227,419 -1139103,179,144,323 -1139104,150,141,291 -1139105,229,228,457 -1139106,260,276,536 -1139107,252,304,556 -1139108,197,207,404 -1139109,107,113,220 -1139110,219,239,458 -1139111,232,176,408 -1139112,169,153,322 -1139113,282,292,574 -1139114,252,309,561 -1139115,245,230,475 -1139116,248,238,486 -1139117,145,165,310 -1139118,180,215,395 -1139119,162,157,319 -1139120,219,222,441 -1139121,205,326,531 -1139122,148,163,311 -1139123,298,331,629 -1139124,190,224,414 -1139125,162,193,355 -1139126,239,289,528 -1139127,262,289,551 -1139128,215,245,460 -1139129,313,293,606 -1139130,147,113,260 -1139131,485,527,1012 -1139132,197,233,430 -1139133,115,116,231 -1139134,229,252,481 -1139135,216,212,428 -1139136,134,144,278 -1139137,155,158,313 -1139138,169,185,354 -1139139,270,260,530 -1139140,178,181,359 -1139141,225,254,479 -1139142,232,200,432 -1139143,197,227,424 -1139144,248,255,503 -1139145,206,220,426 -1139146,236,241,477 -1139147,209,238,447 -1139148,104,86,190 -1139149,157,172,329 -1139201,205,198,403 -1139202,197,204,401 -1139203,117,113,230 -1139204,194,192,386 -1139205,235,239,474 -1139206,170,164,334 -1139207,259,285,544 -1139208,143,130,273 -1139209,8,4,12 -1139210,139,154,293 -1139211,211,220,431 -1139212,221,210,431 -1139213,200,231,431 -1139214,126,148,274 -1139215,238,244,482 -1139216,253,252,505 -1139217,151,157,308 -1139218,140,150,290 -1139219,224,222,446 -1139220,207,220,427 -1139221,209,235,444 -1139222,223,222,445 -1139223,148,147,295 -1139224,131,145,276 -1139225,123,170,293 -1139226,130,127,257 -1139301,236,233,469 -1139302,180,219,399 -1139303,238,258,496 -1139304,201,230,431 -1139305,169,180,349 -1139306,136,166,302 -1139307,140,136,276 -1139308,123,161,284 -1139309,194,224,418 -1139310,108,134,242 -1139311,187,188,375 -1139312,197,224,421 -1139313,248,271,519 -1139314,245,286,531 -1139315,175,181,356 -1139316,205,223,428 -1139317,247,267,514 -1139318,159,159,318 -1139319,268,275,543 -1139320,249,253,502 -1139321,326,335,661 -1139322,179,181,360 -1139323,154,166,320 -1139324,135,155,290 -1139325,155,140,295 -1139326,245,277,522 -1139327,188,170,358 -1139328,171,196,367 -1139329,197,185,382 -1139330,237,250,487 -1139331,190,260,450 -1139332,251,288,539 -1139333,152,185,337 -1139334,227,249,476 -1139335,189,223,412 -1139336,228,246,474 -1139337,153,165,318 -1139338,259,300,559 -1139339,124,123,247 -1139340,169,204,373 -1139401,338,384,722 -1139402,113,120,233 -1139403,205,206,411 -1139404,231,242,473 -1139405,175,189,364 -1139406,272,321,593 -1139407,250,277,527 -1139408,153,184,337 -1139409,159,178,337 -1139410,193,216,409 -1139411,216,239,455 -1139412,156,157,313 -1139413,108,139,247 -1139414,182,197,379 -1139415,165,166,331 -1139416,179,219,398 -1139417,220,270,490 -1139418,237,273,510 -1139419,173,196,369 -1139420,241,225,466 -1139421,146,162,308 -1139422,148,161,309 -1139423,214,238,452 -1139424,235,286,521 -1139425,200,212,412 -1139426,119,149,268 -1139427,150,168,318 -1139428,264,283,547 -1139429,185,211,396 -1139430,289,296,585 -1139431,209,218,427 -1139432,283,275,558 -1139433,132,148,280 -1139434,257,277,534 -1139435,168,185,353 -1139436,194,209,403 -1139437,162,160,322 -1139438,113,117,230 -1139439,160,145,305 -1139501,193,195,388 -1139502,207,206,413 -1139503,247,229,476 -1139504,150,129,279 -1139505,125,125,250 -1139506,260,308,568 -1139507,203,208,411 -1139508,214,225,439 -1139509,232,272,504 -1139510,135,141,276 -1139511,148,165,313 -1139512,216,225,441 -1139513,191,192,383 -1139514,215,219,434 -1139515,194,194,388 -1139516,212,227,439 -1139517,173,180,353 -1139518,215,229,444 -1139519,232,234,466 -1139520,172,248,420 -1139521,204,237,441 -1139522,203,209,412 -1139523,224,230,454 -1139524,189,208,397 -1139525,193,232,425 -1139526,155,169,324 -1139527,174,185,359 -1139528,233,214,447 -1139529,198,245,443 -1139530,238,239,477 -1139531,228,248,476 -1139532,244,245,489 -1139601,364,349,713 -1139602,275,331,606 -1139603,170,177,347 -1139604,439,381,820 -1139605,90,87,177 -1139606,197,220,417 -1139607,211,172,383 -1139608,320,276,596 -1139609,171,128,299 -1139610,282,261,543 -1139611,169,158,327 -1139612,326,209,535 -1139613,191,209,400 -1139614,215,168,383 -1139615,309,252,561 -1139616,266,274,540 -1139617,273,256,529 -1139618,266,272,538 -1139619,160,144,304 -1139620,197,208,405 -1139621,3,3,6 -1139622,5,5,10 -1139623,4,0,4 -1139624,298,310,608 -1139625,409,382,791 -1139626,437,377,814 -1139627,0,0,0 -1139628,128,127,255 -1139629,326,288,614 -1139701,208,232,440 -1139702,192,178,370 -1139703,0,0,0 -1139704,0,0,0 -1139705,334,261,595 -1139706,270,298,568 -1139707,258,276,534 -1139708,283,286,569 -1139709,179,185,364 -1139710,179,170,349 -1139711,218,196,414 -1139712,184,183,367 -1139713,298,251,549 -1139714,239,229,468 -1139715,293,300,593 -1139716,267,204,471 -1139717,148,148,296 -1139718,166,207,373 -1139719,218,185,403 -1139720,241,251,492 -1139721,159,121,280 -1139722,194,204,398 -1139723,280,263,543 -1139724,199,193,392 -1139725,260,257,517 -1139726,257,337,594 -1139727,327,366,693 -1139728,94,84,178 -1139729,304,306,610 -1139730,424,403,827 -1139731,185,128,313 -1139732,60,54,114 -1139733,467,269,736 -1139734,300,292,592 -1139735,253,272,525 -1139736,215,220,435 -1139737,190,201,391 -1139738,166,197,363 -1139739,198,216,414 -1139740,224,247,471 -1139741,188,187,375 -1139742,253,231,484 -1139743,265,260,525 -1139744,204,198,402 -1139745,264,231,495 -1139746,179,186,365 -1139747,135,147,282 -1139748,181,204,385 -1139749,138,143,281 -1139750,182,197,379 -1139751,257,288,545 -1139752,241,279,520 -1139753,19,16,35 -1139754,210,221,431 -1139755,178,184,362 -1139756,190,200,390 -1139757,222,240,462 -1139758,234,257,491 -1139759,257,216,473 -1139760,140,161,301 -1139761,189,222,411 -1139801,0,0,0 -1139802,148,197,345 -1139803,211,228,439 -1139804,186,273,459 -1139805,272,275,547 -1139806,244,287,531 -1139807,226,235,461 -1139808,223,323,546 -1139809,236,245,481 -1139810,116,126,242 -1139811,238,258,496 -1139812,228,259,487 -1139813,207,187,394 -1139814,233,234,467 -1139815,246,270,516 -1139816,235,278,513 -1139817,147,135,282 -1139818,112,137,249 -1139819,149,147,296 -1139820,144,188,332 -1139821,125,136,261 -1139822,263,276,539 -1139823,156,187,343 -1139824,198,194,392 -1139825,176,202,378 -1139826,138,171,309 -1139827,224,227,451 -1139828,159,150,309 -1139829,122,157,279 -1139830,410,460,870 -1139831,239,257,496 -1139832,225,273,498 -1139833,240,295,535 -1139834,116,127,243 -1139835,211,204,415 -1139836,267,281,548 -1139837,130,129,259 -1139838,173,158,331 -1139839,135,103,238 -1139840,198,216,414 -1139841,122,147,269 -1139842,113,122,235 -1139843,225,232,457 -1139844,366,411,777 -1139845,215,241,456 -1139846,251,269,520 -1139847,180,220,400 -1139848,146,149,295 -1139849,487,619,1106 -1139850,135,123,258 -1139851,236,261,497 -1139852,176,207,383 -1139853,185,189,374 -1139854,95,95,190 -1139855,259,264,523 -1139856,95,99,194 -1139857,128,162,290 -1139858,279,275,554 -1139859,176,191,367 -1139901,144,131,275 -1139902,242,218,460 -1139903,263,289,552 -1139904,174,212,386 -1139905,269,283,552 -1139906,195,209,404 -1139907,320,350,670 -1139908,199,215,414 -1139909,230,241,471 -1139910,220,254,474 -1139911,247,249,496 -1139912,197,228,425 -1139913,157,164,321 -1139914,135,159,294 -1139915,162,177,339 -1139916,177,183,360 -1139917,236,242,478 -1139918,236,322,558 -1139919,267,284,551 -1139920,219,231,450 -1139921,198,209,407 -1139922,244,260,504 -1139923,264,263,527 -1139924,138,155,293 -1139925,226,225,451 -1139926,183,183,366 -1139927,235,251,486 -1139928,177,199,376 -1139929,230,248,478 -1139930,199,208,407 -1139931,246,258,504 -1139932,284,329,613 -1139933,159,162,321 -1139934,288,288,576 -1139935,102,104,206 -1139936,225,278,503 -1139937,207,223,430 -1139938,212,232,444 -1139939,125,127,252 -1139940,149,134,283 -1139941,229,230,459 -1139942,164,161,325 -1140001,130,116,246 -1140002,116,141,257 -1140003,0,0,0 -1140004,123,152,275 -1140005,232,290,522 -1140006,194,192,386 -1140007,177,205,382 -1140008,172,176,348 -1140009,213,231,444 -1140010,135,130,265 -1140011,234,244,478 -1140012,254,235,489 -1140013,132,14,146 -1140014,145,156,301 -1140015,259,261,520 -1140016,263,253,516 -1140017,171,172,343 -1140018,181,201,382 -1140019,164,158,322 -1140020,274,285,559 -1140021,146,203,349 -1140022,150,231,381 -1140023,256,285,541 -1140024,284,302,586 -1140025,247,281,528 -1140026,191,196,387 -1140027,267,269,536 -1140028,162,154,316 -1140029,268,260,528 -1140030,201,205,406 -1140031,152,159,311 -1140032,162,189,351 -1140033,178,206,384 -1140034,229,241,470 -1140035,252,257,509 -1140036,158,182,340 -1140037,232,265,497 -1140038,213,195,408 -1140039,436,492,928 -1140040,214,225,439 -1140041,254,317,571 -1140042,111,113,224 -1140043,252,239,491 -1140044,212,218,430 -1140045,163,213,376 -1140046,281,332,613 -1140047,199,237,436 -1140048,345,337,682 -1140049,253,273,526 -1140050,266,270,536 -1140051,222,260,482 -1140052,160,172,332 -1140053,260,296,556 -1140054,249,274,523 -1140055,275,315,590 -1140056,201,193,394 -1140101,294,330,624 -1140102,264,345,609 -1140103,305,308,613 -1140104,138,144,282 -1140105,3,3,6 -1140106,0,0,0 -1140107,0,0,0 -1140108,20,17,37 -1140109,203,223,426 -1140110,195,191,386 -1140111,301,326,627 -1140112,119,127,246 -1140113,383,387,770 -1140114,191,199,390 -1140115,216,231,447 -1140116,169,171,340 -1140117,235,224,459 -1140118,273,267,540 -1140119,323,315,638 -1140120,129,145,274 -1140121,635,589,1224 -1140122,156,169,325 -1140201,228,230,458 -1140202,222,239,461 -1140203,296,323,619 -1140204,216,214,430 -1140205,244,265,509 -1140206,366,343,709 -1140207,329,337,666 -1140208,230,295,525 -1140209,147,159,306 -1140210,214,212,426 -1140211,326,351,677 -1140212,158,164,322 -1140213,202,206,408 -1140214,210,244,454 -1140215,188,203,391 -1140216,239,241,480 -1140217,144,138,282 -1140218,221,244,465 -1140219,142,134,276 -1140220,166,159,325 -1140221,128,128,256 -1140222,219,242,461 -1140223,233,242,475 -1140224,176,176,352 -1140225,225,231,456 -1140226,152,135,287 -1140227,163,165,328 -1140228,260,262,522 -1140229,217,239,456 -1140230,168,180,348 -1140231,195,191,386 -1140232,0,0,0 -1140233,287,269,556 -1140234,175,168,343 -1140235,135,163,298 -1140236,162,195,357 -1140237,168,187,355 -1140238,227,249,476 -1140239,217,223,440 -1140240,249,238,487 -1140241,294,321,615 -1140242,262,277,539 -1140243,226,290,516 -1140244,169,219,388 -1140245,246,239,485 -1140246,264,282,546 -1140247,228,233,461 -1140248,156,192,348 -1140249,218,231,449 -1140250,251,302,553 -1140251,193,211,404 -1140252,253,277,530 -1140253,213,188,401 -1140254,110,98,208 -1140255,110,162,272 -1140256,190,216,406 -1140257,193,195,388 -1140301,187,197,384 -1140302,193,214,407 -1140303,207,213,420 -1140304,318,310,628 -1140305,96,117,213 -1140306,106,117,223 -1140307,0,0,0 -1140308,151,144,295 -1140309,128,125,253 -1140310,179,185,364 -1140311,320,324,644 -1140312,246,219,465 -1140313,190,188,378 -1140314,245,253,498 -1140315,159,157,316 -1140316,184,193,377 -1140317,212,223,435 -1140318,254,259,513 -1140319,220,226,446 -1140320,150,161,311 -1140321,262,240,502 -1140322,263,255,518 -1140323,209,215,424 -1140324,316,327,643 -1140325,197,230,427 -1140326,171,167,338 -1140327,140,145,285 -1140328,214,209,423 -1140329,217,227,444 -1140330,200,211,411 -1140331,160,184,344 -1140332,268,257,525 -1140333,157,153,310 -1140334,139,127,266 -1140335,0,0,0 -1140336,226,214,440 -1140337,143,147,290 -1140338,248,243,491 -1140339,179,175,354 -1140340,290,282,572 -1140341,218,222,440 -1140342,254,276,530 -1140343,138,155,293 -1140344,0,0,0 -1140345,0,0,0 -1140346,193,204,397 -1140347,4,0,4 -1140348,3,5,8 -1140349,0,0,0 -1140350,254,241,495 -1140401,271,273,544 -1140402,0,0,0 -1140403,137,129,266 -1140404,233,278,511 -1140405,194,183,377 -1140406,73,67,140 -1140407,128,127,255 -1140408,108,113,221 -1140409,278,272,550 -1140410,205,199,404 -1140411,166,157,323 -1140412,248,228,476 -1140413,151,164,315 -1140414,228,203,431 -1140415,212,211,423 -1140416,63,49,112 -1140417,173,173,346 -1140418,198,213,411 -1140419,258,266,524 -1140420,168,169,337 -1140421,251,260,511 -1140422,165,158,323 -1140423,149,153,302 -1140424,164,174,338 -1140425,201,204,405 -1140426,160,141,301 -1140427,315,299,614 -1140428,0,0,0 -1140429,207,215,422 -1140430,234,221,455 -1140431,255,237,492 -1140432,130,138,268 -1140501,167,164,331 -1140502,178,184,362 -1140503,130,130,260 -1140504,227,233,460 -1140505,225,250,475 -1140506,197,229,426 -1140507,508,491,999 -1140508,242,253,495 -1140509,113,111,224 -1140510,105,128,233 -1140511,212,316,528 -1140512,331,340,671 -1140513,290,283,573 -1140514,153,162,315 -1140515,208,269,477 -1140516,179,213,392 -1140517,143,175,318 -1140518,302,305,607 -1140519,309,345,654 -1140520,247,255,502 -1140521,168,263,431 -1140522,262,287,549 -1140523,187,213,400 -1140524,222,227,449 -1140525,0,0,0 -1140526,140,138,278 -1140527,219,252,471 -1140528,254,274,528 -1140529,252,254,506 -1140530,144,127,271 -1140531,0,0,0 -1140532,109,106,215 -1140533,129,117,246 -1140534,242,243,485 -1140535,127,114,241 -1140536,194,207,401 -1140537,202,200,402 -1140538,239,258,497 -1140539,226,218,444 -1140540,132,130,262 -1140541,145,165,310 -1140542,201,204,405 -1140543,298,322,620 -1140544,144,146,290 -1140545,258,258,516 -1140546,187,199,386 -1140547,161,145,306 -1140548,184,200,384 -1140549,194,189,383 -1140550,141,156,297 -1140551,104,112,216 -1140552,174,187,361 -1140553,141,135,276 -1140554,230,222,452 -1140555,177,176,353 -1140556,136,126,262 -1140557,134,147,281 -1140558,168,160,328 -1140559,196,207,403 -1140560,244,268,512 -1140561,117,154,271 -1140562,251,271,522 -1140563,194,178,372 -1140564,189,205,394 -1140565,516,505,1021 -1140566,407,412,819 -1140567,278,297,575 -1140568,277,289,566 -1140569,251,310,561 -1140570,97,123,220 -1140571,168,166,334 -1140601,117,130,247 -1140602,158,169,327 -1140603,199,221,420 -1140604,207,218,425 -1140605,160,168,328 -1140606,159,163,322 -1140607,107,115,222 -1140608,281,283,564 -1140609,174,191,365 -1140610,119,110,229 -1140611,241,274,515 -1140612,132,130,262 -1140613,218,239,457 -1140614,138,150,288 -1140615,180,172,352 -1140616,196,206,402 -1140617,3,3,6 -1140618,157,179,336 -1140619,262,272,534 -1140620,186,170,356 -1140621,166,174,340 -1140622,202,196,398 -1140623,272,279,551 -1140624,234,243,477 -1140625,180,188,368 -1140626,168,157,325 -1140627,154,162,316 -1140628,156,140,296 -1140629,195,203,398 -1140630,144,158,302 -1140631,190,173,363 -1140632,3,0,3 -1140633,244,234,478 -1140634,238,260,498 -1140635,211,205,416 -1140636,193,181,374 -1140637,134,123,257 -1140638,188,230,418 -1140639,153,156,309 -1140640,248,287,535 -1140641,299,282,581 -1140642,265,272,537 -1140643,164,175,339 -1140644,244,232,476 -1140645,174,208,382 -1140646,141,316,457 -1140647,131,232,363 -1140648,241,267,508 -1140701,215,215,430 -1140702,174,215,389 -1140703,140,141,281 -1140704,246,268,514 -1140705,207,333,540 -1140706,246,293,539 -1140707,160,183,343 -1140708,255,275,530 -1140709,214,195,409 -1140710,262,281,543 -1140711,175,190,365 -1140712,285,288,573 -1140713,155,177,332 -1140714,83,111,194 -1140715,513,645,1158 -1140716,0,0,0 -1140717,374,441,815 -1140718,133,141,274 -1140719,164,167,331 -1140720,0,0,0 -1140721,129,157,286 -1140722,148,157,305 -1140723,210,195,405 -1140724,159,180,339 -1140725,185,208,393 -1140726,164,190,354 -1140727,258,268,526 -1140728,196,207,403 -1140729,191,180,371 -1140730,124,122,246 -1140731,136,137,273 -1140732,233,244,477 -1140733,135,130,265 -1140734,150,122,272 -1140735,187,176,363 -1140736,201,195,396 -1140737,193,309,502 -1140738,141,192,333 -1140739,193,186,379 -1140740,385,417,802 -1140741,257,287,544 -1140742,243,299,542 -1140743,252,306,558 -1140744,95,158,253 -1140745,136,174,310 -1140746,132,150,282 -1140801,166,163,329 -1140802,131,127,258 -1140803,184,217,401 -1140804,237,241,478 -1140805,233,215,448 -1140806,193,199,392 -1140807,244,236,480 -1140808,103,181,284 -1140809,129,144,273 -1140810,212,236,448 -1140811,113,126,239 -1140812,228,219,447 -1140813,195,215,410 -1140814,176,178,354 -1140815,173,190,363 -1140816,131,141,272 -1140817,203,194,397 -1140818,142,134,276 -1140819,156,192,348 -1140820,164,168,332 -1140821,254,273,527 -1140822,216,230,446 -1140823,168,177,345 -1140824,96,107,203 -1140825,196,204,400 -1140826,243,289,532 -1140827,141,123,264 -1140828,337,384,721 -1140829,192,187,379 -1140830,111,111,222 -1140831,224,267,491 -1140832,180,237,417 -1140833,120,137,257 -1140834,224,244,468 -1140835,192,206,398 -1140836,180,189,369 -1140837,360,427,787 -1140838,295,325,620 -1140839,131,131,262 -1140840,196,204,400 -1140841,197,200,397 -1140842,174,162,336 -1140843,176,213,389 -1140844,247,259,506 -1140845,287,274,561 -1140846,165,179,344 -1140847,164,190,354 -1140848,198,201,399 -1140849,163,151,314 -1140850,198,206,404 -1140851,178,197,375 -1140852,176,167,343 -1140853,250,278,528 -1140854,96,95,191 -1140901,0,0,0 -1140902,198,231,429 -1140903,184,205,389 -1140904,193,203,396 -1140905,194,205,399 -1140906,150,187,337 -1140907,273,257,530 -1140908,225,241,466 -1140909,176,188,364 -1140910,149,129,278 -1140911,225,211,436 -1140912,117,141,258 -1140913,187,213,400 -1140914,283,284,567 -1140915,194,217,411 -1140916,149,160,309 -1140917,240,221,461 -1140918,171,175,346 -1140919,185,210,395 -1140920,292,331,623 -1140921,182,214,396 -1140922,166,166,332 -1140923,179,213,392 -1140924,268,408,676 -1140925,394,484,878 -1140926,157,181,338 -1140927,262,278,540 -1140928,185,247,432 -1140929,237,268,505 -1140930,107,116,223 -1140931,247,262,509 -1140932,202,248,450 -1140933,266,300,566 -1140934,146,169,315 -1140935,189,241,430 -1140936,229,259,488 -1140937,212,254,466 -1141001,183,186,369 -1141002,155,167,322 -1141003,242,249,491 -1141004,145,150,295 -1141005,129,132,261 -1141006,197,198,395 -1141007,285,302,587 -1141008,184,225,409 -1141009,217,229,446 -1141010,242,261,503 -1141011,325,328,653 -1141012,245,252,497 -1141013,273,292,565 -1141014,124,114,238 -1141015,201,194,395 -1141016,218,218,436 -1141017,291,321,612 -1141018,214,212,426 -1141019,0,0,0 -1141020,229,235,464 -1141021,193,205,398 -1141022,237,259,496 -1141023,164,167,331 -1141024,208,216,424 -1141025,226,238,464 -1141026,0,0,0 -1141027,252,283,535 -1141028,212,227,439 -1141029,154,164,318 -1141030,268,240,508 -1141031,220,212,432 -1141032,193,197,390 -1141033,140,160,300 -1141034,337,425,762 -1141035,226,229,455 -1141036,503,530,1033 -1141037,195,188,383 -1141038,196,196,392 -1141039,182,191,373 -1141040,191,233,424 -1141041,192,222,414 -1141042,144,230,374 -1141043,297,335,632 -1141101,200,224,424 -1141102,247,257,504 -1141103,229,227,456 -1141104,235,246,481 -1141105,253,250,503 -1141106,138,147,285 -1141107,160,155,315 -1141108,180,213,393 -1141109,123,121,244 -1141110,158,164,322 -1141111,250,272,522 -1141112,145,155,300 -1141113,142,197,339 -1141114,166,224,390 -1141115,196,292,488 -1141116,0,0,0 -1141117,169,329,498 -1141118,206,185,391 -1141119,253,292,545 -1141120,155,166,321 -1141121,130,152,282 -1141122,203,275,478 -1141123,250,315,565 -1141124,241,224,465 -1141125,181,186,367 -1141126,245,244,489 -1141127,240,224,464 -1141128,141,150,291 -1141129,266,251,517 -1141130,230,260,490 -1141131,323,309,632 -1141132,220,253,473 -1141133,234,259,493 -1141134,249,263,512 -1141135,169,180,349 -1141136,226,232,458 -1141137,87,175,262 -1141138,126,110,236 -1141139,158,165,323 -1141140,253,273,526 -1141141,162,170,332 -1141142,197,210,407 -1141143,206,230,436 -1141144,222,238,460 -1141201,211,220,431 -1141202,283,296,579 -1141203,237,229,466 -1141204,139,272,411 -1141205,284,294,578 -1141206,183,176,359 -1141207,291,291,582 -1141208,114,146,260 -1141209,235,226,461 -1141210,164,145,309 -1141211,186,99,285 -1141212,212,185,397 -1141213,313,559,872 -1141214,191,193,384 -1141215,140,146,286 -1141216,409,448,857 -1141217,163,193,356 -1141218,267,269,536 -1141219,218,226,444 -1141220,160,153,313 -1141221,227,214,441 -1141222,236,288,524 -1141223,294,379,673 -1141224,245,232,477 -1141225,156,170,326 -1141226,243,220,463 -1141227,229,238,467 -1141228,159,166,325 -1141229,180,194,374 -1141230,347,338,685 -1141231,188,190,378 -1141232,194,211,405 -1141233,173,165,338 -1141234,273,289,562 -1141235,138,140,278 -1141236,221,216,437 -1141237,252,265,517 -1141238,183,213,396 -1141239,0,0,0 -1141301,161,198,359 -1141302,261,269,530 -1141303,188,221,409 -1141304,248,284,532 -1141305,189,206,395 -1141306,225,209,434 -1141307,187,178,365 -1141308,133,149,282 -1141309,190,209,399 -1141310,268,296,564 -1141311,265,306,571 -1141312,156,190,346 -1141313,225,287,512 -1141314,155,159,314 -1141315,213,229,442 -1141316,188,205,393 -1141317,186,211,397 -1141318,183,195,378 -1141319,224,226,450 -1141320,168,190,358 -1141321,222,245,467 -1141322,194,195,389 -1141323,158,170,328 -1141324,181,195,376 -1141325,224,262,486 -1141326,221,269,490 -1141327,216,252,468 -1141328,151,208,359 -1141329,273,352,625 -1141330,170,203,373 -1141331,142,168,310 -1141332,276,289,565 -1141333,198,207,405 -1141334,155,197,352 -1141335,230,316,546 -1141336,207,224,431 -1141337,259,298,557 -1141338,274,295,569 -1141339,146,168,314 -1141340,153,177,330 -1141341,232,271,503 -1141342,174,221,395 -1141401,172,176,348 -1141402,133,158,291 -1141403,145,163,308 -1141404,145,153,298 -1141405,158,171,329 -1141406,156,192,348 -1141407,159,204,363 -1141408,237,257,494 -1141409,267,301,568 -1141410,225,238,463 -1141411,259,295,554 -1141412,210,219,429 -1141413,144,150,294 -1141414,200,210,410 -1141415,243,299,542 -1141416,260,296,556 -1141417,263,303,566 -1141418,252,274,526 -1141419,164,177,341 -1141420,230,277,507 -1141421,134,154,288 -1141422,137,171,308 -1141423,118,85,203 -1141424,229,289,518 -1141425,156,148,304 -1141426,167,204,371 -1141427,150,161,311 -1141428,150,166,316 -1141429,148,172,320 -1141430,243,261,504 -1141431,217,213,430 -1141432,236,296,532 -1141433,157,160,317 -1141434,236,189,425 -1141435,145,127,272 -1141436,182,177,359 -1141437,115,119,234 -1141438,192,206,398 -1141439,144,138,282 -1141440,125,150,275 -1141441,84,118,202 -1141442,160,176,336 -1141443,145,143,288 -1141444,136,146,282 -1141501,137,132,269 -1141502,134,156,290 -1141503,250,261,511 -1141504,133,154,287 -1141505,165,188,353 -1141506,217,223,440 -1141507,170,170,340 -1141508,233,277,510 -1141509,238,246,484 -1141510,3,3,6 -1141511,196,195,391 -1141512,225,221,446 -1141513,198,243,441 -1141514,218,238,456 -1141515,169,199,368 -1141516,153,194,347 -1141517,183,228,411 -1141518,249,294,543 -1141519,144,161,305 -1141520,160,251,411 -1141521,251,311,562 -1141522,231,273,504 -1141523,187,263,450 -1141524,102,106,208 -1141525,194,209,403 -1141526,193,224,417 -1141527,222,226,448 -1141528,149,166,315 -1141529,158,197,355 -1141530,226,268,494 -1141531,229,273,502 -1141532,271,279,550 -1141533,232,254,486 -1141534,114,133,247 -1141535,314,347,661 -1141536,259,274,533 -1141537,97,34,131 -1141538,175,177,352 -1141539,213,242,455 -1141540,213,246,459 -1141541,307,352,659 -1141542,272,270,542 -1141543,259,276,535 -1141544,133,161,294 -1141545,185,247,432 -1141546,202,232,434 -1141547,134,164,298 -1141548,161,182,343 -1141549,196,197,393 -1141550,114,151,265 -1141551,145,182,327 -1141552,225,246,471 -1141553,203,277,480 -1141554,147,174,321 -1141555,141,165,306 -1141556,155,261,416 -1141557,132,148,280 -1141558,219,273,492 -1141559,197,204,401 -1141560,285,322,607 -1141561,184,204,388 -1141562,160,179,339 -1141563,169,170,339 -1141564,0,0,0 -1141565,118,130,248 -1141566,195,234,429 -1141567,100,136,236 -1141568,128,141,269 -1141569,122,139,261 -1141570,119,140,259 -1141571,117,149,266 -1141601,252,263,515 -1141602,205,240,445 -1141603,133,159,292 -1141604,249,252,501 -1141605,235,252,487 -1141606,249,306,555 -1141607,216,214,430 -1141608,124,150,274 -1141609,209,259,468 -1141610,238,220,458 -1141611,131,143,274 -1141612,124,141,265 -1141613,209,236,445 -1141614,313,302,615 -1141615,257,321,578 -1141616,112,134,246 -1141617,245,319,564 -1141618,229,259,488 -1141619,188,241,429 -1141620,127,265,392 -1141621,287,301,588 -1141622,263,280,543 -1141623,243,278,521 -1141624,156,178,334 -1141625,282,262,544 -1141626,160,181,341 -1141627,204,196,400 -1141628,160,202,362 -1141629,265,287,552 -1141630,247,353,600 -1141631,276,246,522 -1141632,149,145,294 -1141633,240,281,521 -1141634,94,124,218 -1141635,335,355,690 -1141636,182,190,372 -1141637,271,312,583 -1141701,227,213,440 -1141702,75,134,209 -1141703,253,249,502 -1141704,210,181,391 -1141705,0,0,0 -1141706,205,205,410 -1141707,114,132,246 -1141708,246,259,505 -1141709,150,169,319 -1141710,0,3,3 -1141711,0,0,0 -1141712,163,132,295 -1141713,103,93,196 -1141714,197,230,427 -1141715,429,348,777 -1141716,169,211,380 -1141717,134,142,276 -1141718,206,223,429 -1141719,152,182,334 -1141720,406,402,808 -1141721,125,132,257 -1141722,0,0,0 -1141723,260,273,533 -1141724,266,257,523 -1141725,307,305,612 -1141726,175,175,350 -1141727,0,0,0 -1141728,126,161,287 -1141801,165,190,355 -1141802,0,0,0 -1141803,257,251,508 -1141804,253,247,500 -1141805,205,249,454 -1141806,261,279,540 -1141807,330,318,648 -1141808,282,298,580 -1141809,205,220,425 -1141810,143,139,282 -1141811,181,169,350 -1141812,254,273,527 -1141813,234,228,462 -1141814,156,161,317 -1141815,272,291,563 -1141816,176,191,367 -1141817,264,253,517 -1141818,231,225,456 -1141819,248,236,484 -1141820,190,194,384 -1141821,186,232,418 -1141822,212,234,446 -1141823,285,288,573 -1141824,333,364,697 -1141825,331,342,673 -1141826,380,443,823 -1141827,260,266,526 -1141828,244,252,496 -1141829,202,254,456 -1141830,222,245,467 -1141831,166,197,363 -1141832,241,269,510 -1141833,93,98,191 -1141834,285,343,628 -1141835,179,209,388 -1141836,204,239,443 -1141837,127,128,255 -1141838,277,289,566 -1141839,255,271,526 -1141840,204,222,426 -1141841,282,302,584 -1141842,0,0,0 -1141901,196,207,403 -1141902,200,234,434 -1141903,262,276,538 -1141904,143,131,274 -1141905,233,347,580 -1141906,267,238,505 -1141907,189,159,348 -1141908,218,194,412 -1141909,199,181,380 -1141910,208,232,440 -1141911,105,110,215 -1141912,219,269,488 -1141913,134,121,255 -1141914,122,144,266 -1141915,128,166,294 -1141916,174,191,365 -1141917,275,297,572 -1141918,272,302,574 -1141919,203,186,389 -1141920,229,237,466 -1141921,263,285,548 -1141922,246,268,514 -1141923,296,234,530 -1141924,290,255,545 -1141925,169,171,340 -1141926,221,253,474 -1141927,257,225,482 -1141928,216,236,452 -1141929,205,235,440 -1141930,94,107,201 -1141931,182,190,372 -1141932,294,283,577 -1141933,318,274,592 -1141934,222,269,491 -1141935,201,211,412 -1141936,306,255,561 -1141937,241,250,491 -1141938,272,274,546 -1141939,32,15,47 -1141940,249,222,471 -1141941,158,172,330 -1141942,8,6,14 -1141943,246,279,525 -1141944,201,230,431 -1141945,280,299,579 -1141946,164,174,338 -1141947,256,302,558 -1141948,264,251,515 -1142001,231,223,454 -1142002,196,213,409 -1142003,124,135,259 -1142004,203,210,413 -1142005,227,210,437 -1142006,177,165,342 -1142007,234,274,508 -1142008,139,179,318 -1142009,167,181,348 -1142010,161,176,337 -1142011,230,259,489 -1142012,132,138,270 -1142013,242,235,477 -1142014,191,188,379 -1142015,171,178,349 -1142016,281,264,545 -1142017,312,304,616 -1142018,0,0,0 -1142019,0,0,0 -1142020,258,270,528 -1142021,161,181,342 -1142022,136,141,277 -1142023,218,207,425 -1142024,290,301,591 -1142025,263,232,495 -1142026,252,243,495 -1142027,161,183,344 -1142028,221,288,509 -1142029,278,309,587 -1142030,307,351,658 -1142101,372,343,715 -1142102,302,286,588 -1142103,169,195,364 -1142104,233,266,499 -1142105,282,283,565 -1142106,337,330,667 -1142107,118,121,239 -1142108,146,146,292 -1142109,345,321,666 -1142110,125,138,263 -1142111,284,301,585 -1142112,150,128,278 -1142113,147,146,293 -1142114,195,222,417 -1142115,148,152,300 -1142116,232,234,466 -1142117,223,220,443 -1142118,233,203,436 -1142119,160,141,301 -1142120,211,342,553 -1142121,206,199,405 -1142122,227,235,462 -1142123,150,265,415 -1142201,248,234,482 -1142202,177,190,367 -1142203,106,125,231 -1142204,226,249,475 -1142205,208,204,412 -1142206,165,171,336 -1142207,184,170,354 -1142208,139,155,294 -1142209,133,152,285 -1142210,187,176,363 -1142211,261,301,562 -1142212,184,209,393 -1142213,162,152,314 -1142214,156,171,327 -1142215,160,184,344 -1142216,174,201,375 -1142217,192,217,409 -1142218,146,133,279 -1142219,182,189,371 -1142220,224,236,460 -1142221,202,206,408 -1142222,234,229,463 -1142223,177,178,355 -1142224,139,150,289 -1142225,198,201,399 -1142226,245,253,498 -1142227,262,238,500 -1142228,195,205,400 -1142229,162,137,299 -1142230,214,182,396 -1142231,210,192,402 -1142232,112,102,214 -1142233,256,267,523 -1142234,142,164,306 -1142301,213,233,446 -1142302,304,351,655 -1142303,307,298,605 -1142304,155,160,315 -1142305,259,245,504 -1142306,178,202,380 -1142307,210,199,409 -1142308,156,150,306 -1142309,252,294,546 -1142310,190,229,419 -1142311,125,134,259 -1142312,195,189,384 -1142313,197,208,405 -1142314,263,251,514 -1142315,170,188,358 -1142316,264,306,570 -1142317,263,299,562 -1142318,413,509,922 -1142319,410,470,880 -1142320,157,170,327 -1142321,284,257,541 -1142322,195,209,404 -1142323,175,175,350 -1142324,175,147,322 -1142325,128,142,270 -1142326,224,219,443 -1142327,122,123,245 -1142328,313,413,726 -1142329,205,230,435 -1142330,224,208,432 -1142331,89,75,164 -1142332,294,314,608 -1142333,117,103,220 -1142334,294,314,608 -1142335,300,309,609 -1142336,163,152,315 -1142337,255,220,475 -1142338,211,263,474 -1142339,243,273,516 -1142340,193,218,411 -1142341,179,214,393 -1142342,165,212,377 -1142343,0,4,4 -1142344,290,334,624 -1142345,329,370,699 -1142346,318,307,625 -1142347,200,193,393 -1142348,195,209,404 -1142401,266,284,550 -1142402,178,188,366 -1142403,196,207,403 -1142404,141,137,278 -1142405,131,148,279 -1142406,191,220,411 -1142407,180,197,377 -1142408,205,214,419 -1142409,262,270,532 -1142410,285,305,590 -1142411,196,177,373 -1142412,269,259,528 -1142413,195,197,392 -1142414,200,189,389 -1142415,131,140,271 -1142416,148,152,300 -1142417,151,139,290 -1142418,246,271,517 -1142419,292,307,599 -1142420,157,168,325 -1142421,107,105,212 -1142422,242,254,496 -1142423,232,227,459 -1142424,222,213,435 -1142425,134,180,314 -1142426,166,196,362 -1142427,184,229,413 -1142428,220,216,436 -1142429,166,177,343 -1142430,126,127,253 -1142431,189,205,394 -1142432,142,161,303 -1142433,168,289,457 -1142501,125,133,258 -1142502,127,144,271 -1142503,113,144,257 -1142504,111,113,224 -1142505,132,138,270 -1142506,172,164,336 -1142507,225,221,446 -1142508,119,129,248 -1142509,170,161,331 -1142510,144,152,296 -1142511,119,107,226 -1142512,131,135,266 -1142513,165,155,320 -1142514,222,215,437 -1142515,77,116,193 -1142516,222,229,451 -1142517,170,172,342 -1142518,292,288,580 -1142519,224,233,457 -1142520,0,3,3 -1142521,190,189,379 -1142522,10,8,18 -1142523,221,383,604 -1142601,274,289,563 -1142602,263,271,534 -1142603,241,249,490 -1142604,201,221,422 -1142605,267,270,537 -1142606,220,221,441 -1142607,177,172,349 -1142608,263,254,517 -1142609,92,119,211 -1142610,177,180,357 -1142611,146,127,273 -1142612,216,226,442 -1142613,107,90,197 -1142614,100,123,223 -1142615,182,176,358 -1142616,266,254,520 -1142617,128,144,272 -1142618,101,103,204 -1142619,183,167,350 -1142620,178,160,338 -1142621,172,194,366 -1142622,188,183,371 -1142623,235,228,463 -1142624,165,159,324 -1142625,179,146,325 -1142626,115,150,265 -1142627,124,127,251 -1142628,251,267,518 -1142629,174,180,354 -1142630,282,316,598 -1142631,279,269,548 -1142632,301,325,626 -1142633,268,307,575 -1142634,136,158,294 -1142635,117,127,244 -1142636,189,185,374 -1142637,365,360,725 -1142638,158,174,332 -1142639,194,191,385 -1142640,129,119,248 -1142641,262,256,518 -1142642,164,135,299 -1142643,130,157,287 -1142644,231,255,486 -1142645,293,327,620 -1142646,271,282,553 -1142647,147,138,285 -1142648,215,212,427 -1142649,268,273,541 -1142650,183,192,375 -1142651,174,161,335 -1142652,239,262,501 -1142653,221,197,418 -1142654,177,176,353 -1142655,249,268,517 -1142656,231,241,472 -1142701,166,182,348 -1142702,222,210,432 -1142703,105,115,220 -1142704,113,122,235 -1142705,121,126,247 -1142706,114,112,226 -1142707,126,146,272 -1142708,167,192,359 -1142709,256,280,536 -1142710,139,139,278 -1142711,186,178,364 -1142712,139,224,363 -1142713,174,181,355 -1142714,180,184,364 -1142715,141,122,263 -1142716,135,144,279 -1142717,138,150,288 -1142718,242,241,483 -1142719,180,181,361 -1142720,177,180,357 -1142721,217,211,428 -1142722,0,0,0 -1142723,110,129,239 -1142724,0,0,0 -1142725,0,0,0 -1142726,181,208,389 -1142727,145,163,308 -1142728,180,189,369 -1142729,207,198,405 -1142730,0,0,0 -1142731,0,0,0 -1142732,158,138,296 -1142733,109,122,231 -1142734,148,176,324 -1142735,184,259,443 -1142736,207,234,441 -1142737,181,171,352 -1142738,160,183,343 -1142739,202,212,414 -1142740,148,138,286 -1142741,211,211,422 -1142801,168,171,339 -1142802,292,275,567 -1142803,274,309,583 -1142804,288,296,584 -1142805,195,215,410 -1142806,237,288,525 -1142807,221,214,435 -1142808,148,140,288 -1142809,180,181,361 -1142810,140,131,271 -1142811,138,137,275 -1142812,225,217,442 -1142813,175,154,329 -1142814,238,227,465 -1142815,138,152,290 -1142816,146,168,314 -1142817,267,274,541 -1142818,256,242,498 -1142819,224,249,473 -1142820,141,270,411 -1142821,279,288,567 -1142822,103,86,189 -1142823,155,139,294 -1142824,169,160,329 -1142825,0,0,0 -1142826,143,162,305 -1142827,132,144,276 -1142828,208,223,431 -1142829,154,159,313 -1142830,202,185,387 -1142831,210,200,410 -1142832,253,262,515 -1142833,228,190,418 -1142834,234,217,451 -1142835,230,250,480 -1142836,220,217,437 -1142837,125,130,255 -1142838,0,4,4 -1142839,139,135,274 -1142840,165,175,340 -1142841,128,231,359 -1142842,262,240,502 -1142843,178,183,361 -1142844,204,191,395 -1142845,216,220,436 -1142846,166,246,412 -1142847,292,303,595 -1142848,252,252,504 -1142849,154,185,339 -1142850,148,160,308 -1142851,243,233,476 -1142852,161,166,327 -1142853,133,128,261 -1142854,132,131,263 -1142855,231,226,457 -1142856,166,166,332 -1142857,260,250,510 -1142858,142,139,281 -1142859,148,140,288 -1142860,186,180,366 -1142861,0,0,0 -1142862,175,168,343 -1142863,145,158,303 -1142864,300,285,585 -1142901,218,200,418 -1142902,207,215,422 -1142903,170,189,359 -1142904,203,170,373 -1142905,253,268,521 -1142906,253,250,503 -1142907,124,136,260 -1142908,259,276,535 -1142909,285,283,568 -1142910,116,109,225 -1142911,122,146,268 -1142912,138,143,281 -1142913,199,195,394 -1142914,331,307,638 -1142915,108,124,232 -1142916,155,149,304 -1142917,266,276,542 -1142918,0,0,0 -1142919,15,8,23 -1142920,131,137,268 -1142921,187,201,388 -1142922,193,177,370 -1142923,205,207,412 -1142924,111,124,235 -1142925,160,149,309 -1142926,156,164,320 -1142927,206,203,409 -1142928,142,149,291 -1142929,381,368,749 -1142930,28,12,40 -1142931,221,218,439 -1142932,270,287,557 -1142933,341,377,718 -1142934,114,106,220 -1142935,0,0,0 -1142936,117,123,240 -1142937,221,213,434 -1142938,171,178,349 -1142939,149,130,279 -1142940,268,262,530 -1142941,223,239,462 -1142942,161,151,312 -1142943,231,218,449 -1142944,219,184,403 -1142945,166,140,306 -1142946,223,225,448 -1142947,227,209,436 -1142948,368,363,731 -1142949,116,115,231 -1142950,121,136,257 -1142951,394,397,791 -1143001,203,176,379 -1143002,250,248,498 -1143003,217,198,415 -1143004,256,274,530 -1143005,216,216,432 -1143006,289,311,600 -1143007,95,97,192 -1143008,177,317,494 -1143009,260,273,533 -1143010,221,230,451 -1143011,208,235,443 -1143012,0,0,0 -1143013,149,162,311 -1143014,157,165,322 -1143015,302,329,631 -1143016,325,330,655 -1143017,201,226,427 -1143018,178,177,355 -1143019,180,171,351 -1143020,131,149,280 -1143021,156,167,323 -1143022,286,341,627 -1143023,165,150,315 -1143024,266,276,542 -1143025,253,320,573 -1143026,179,162,341 -1143027,162,192,354 -1143028,206,203,409 -1143029,289,304,593 -1143030,217,264,481 -1143031,133,152,285 -1143032,175,182,357 -1143033,222,231,453 -1143034,200,207,407 -1143035,139,147,286 -1143036,289,266,555 -1143037,153,169,322 -1143038,184,182,366 -1143101,231,257,488 -1143102,225,234,459 -1143103,156,143,299 -1143104,179,185,364 -1143105,180,196,376 -1143106,246,258,504 -1143107,165,169,334 -1143108,208,230,438 -1143109,105,84,189 -1143110,155,162,317 -1143111,182,197,379 -1143112,448,686,1134 -1143113,136,135,271 -1143114,133,129,262 -1143115,0,0,0 -1143116,165,154,319 -1143117,280,238,518 -1143118,264,284,548 -1143119,164,204,368 -1143120,276,301,577 -1143121,108,111,219 -1143122,355,417,772 -1143123,230,246,476 -1143124,237,253,490 -1143125,225,212,437 -1143126,210,202,412 -1143127,251,246,497 -1143128,190,200,390 -1143129,227,260,487 -1143130,181,190,371 -1143131,246,226,472 -1143132,127,126,253 -1143133,180,174,354 -1143134,137,143,280 -1143135,161,145,306 -1143136,238,273,511 -1143137,262,289,551 -1143138,318,302,620 -1143139,167,162,329 -1143140,184,178,362 -1143141,217,231,448 -1143142,181,197,378 -1143143,186,165,351 -1143144,201,224,425 -1143145,85,120,205 -1143146,200,215,415 -1143147,238,236,474 -1143148,280,297,577 -1143149,121,128,249 -1143150,223,193,416 -1143151,273,244,517 -1143152,244,239,483 -1143153,169,139,308 -1143154,111,102,213 -1143155,91,87,178 -1143156,171,161,332 -1143201,143,130,273 -1143202,195,194,389 -1143203,77,56,133 -1143204,234,227,461 -1143205,0,0,0 -1143206,56,57,113 -1143207,3,4,7 -1143208,115,122,237 -1143209,89,106,195 -1143210,164,169,333 -1143211,157,133,290 -1143212,293,283,576 -1143213,117,118,235 -1143214,137,154,291 -1143301,140,150,290 -1143302,195,417,612 -1143303,323,294,617 -1143304,98,116,214 -1143305,252,282,534 -1143306,373,414,787 -1143307,265,256,521 -1143308,255,223,478 -1143309,194,322,516 -1143310,249,271,520 -1143311,167,175,342 -1143312,160,157,317 -1143313,182,175,357 -1143314,238,261,499 -1143315,94,108,202 -1143316,236,269,505 -1143317,247,266,513 -1143318,201,204,405 -1143319,216,230,446 -1143320,175,183,358 -1143321,199,220,419 -1143322,261,258,519 -1143323,229,240,469 -1143324,211,227,438 -1143325,166,174,340 -1143326,210,226,436 -1143327,250,232,482 -1143401,171,174,345 -1143402,131,161,292 -1143403,222,226,448 -1143404,157,190,347 -1143405,260,288,548 -1143406,222,220,442 -1143407,174,144,318 -1143408,240,201,441 -1143409,239,260,499 -1143410,323,347,670 -1143411,218,229,447 -1143412,182,220,402 -1143413,237,265,502 -1143414,263,286,549 -1143415,196,244,440 -1143416,155,160,315 -1143417,139,161,300 -1143418,195,192,387 -1143419,127,132,259 -1143420,159,160,319 -1143421,278,284,562 -1143422,29,26,55 -1143423,0,0,0 -1143424,149,148,297 -1143425,128,118,246 -1143426,131,121,252 -1143427,240,292,532 -1143428,118,124,242 -1143429,238,239,477 -1143430,158,160,318 -1143431,140,140,280 -1143432,105,103,208 -1143433,153,174,327 -1143434,233,227,460 -1143435,231,242,473 -1143436,273,294,567 -1143437,106,121,227 -1143438,228,231,459 -1143439,346,364,710 -1143440,135,132,267 -1143441,0,0,0 -1143442,112,111,223 -1143443,106,108,214 -1143444,197,208,405 -1143501,190,211,401 -1143502,163,163,326 -1143503,196,201,397 -1143504,178,174,352 -1143505,191,187,378 -1143506,249,251,500 -1143507,257,280,537 -1143508,243,245,488 -1143509,249,266,515 -1143510,148,162,310 -1143511,10,11,21 -1143512,131,153,284 -1143513,172,146,318 -1143514,212,241,453 -1143515,147,163,310 -1143516,210,203,413 -1143517,183,175,358 -1143518,260,275,535 -1143519,198,190,388 -1143520,245,255,500 -1143521,180,154,334 -1143522,244,249,493 -1143523,224,234,458 -1143524,151,156,307 -1143525,265,259,524 -1143526,315,330,645 -1143527,218,211,429 -1143528,193,204,397 -1143529,238,256,494 -1143530,213,249,462 -1143531,258,259,517 -1143532,132,118,250 -1143533,122,124,246 -1143534,253,266,519 -1143535,239,270,509 -1143536,183,193,376 -1143537,223,217,440 -1143538,220,259,479 -1143539,173,188,361 -1143540,146,162,308 -1143541,245,260,505 -1143542,222,233,455 -1143543,53,51,104 -1143544,159,186,345 -1143545,237,262,499 -1143546,267,274,541 -1143547,244,233,477 -1143548,142,149,291 -1143549,141,143,284 -1143550,248,253,501 -1143551,300,287,587 -1143552,253,277,530 -1143553,148,165,313 -1143554,591,598,1189 -1143555,91,88,179 -1143556,330,318,648 -1143557,116,115,231 -1143601,222,278,500 -1143602,0,0,0 -1143603,229,271,500 -1143604,181,201,382 -1143605,189,221,410 -1143606,250,310,560 -1143607,326,337,663 -1143608,219,262,481 -1143609,240,262,502 -1143610,138,140,278 -1143611,279,310,589 -1143612,212,209,421 -1143613,216,244,460 -1143614,190,213,403 -1143615,296,305,601 -1143616,285,280,565 -1143617,262,248,510 -1143618,134,159,293 -1143619,262,258,520 -1143620,222,284,506 -1143621,118,142,260 -1143622,199,254,453 -1143623,104,108,212 -1143624,190,179,369 -1143625,166,198,364 -1143626,135,128,263 -1143627,239,254,493 -1143628,149,162,311 -1143629,0,0,0 -1143630,214,215,429 -1143631,191,223,414 -1143632,136,170,306 -1143633,214,213,427 -1143634,226,265,491 -1143635,268,288,556 -1143636,140,167,307 -1143637,212,234,446 -1143638,166,196,362 -1143639,210,247,457 -1143640,325,307,632 -1143641,257,266,523 -1143642,114,107,221 -1143643,224,226,450 -1143644,159,166,325 -1143645,183,178,361 -1143646,267,291,558 -1143701,157,167,324 -1143702,101,113,214 -1143703,212,205,417 -1143704,520,677,1197 -1143705,4,4,8 -1143706,213,214,427 -1143707,160,193,353 -1143708,141,140,281 -1143709,4,0,4 -1143710,247,248,495 -1143711,139,136,275 -1143712,144,153,297 -1143713,286,318,604 -1143714,259,299,558 -1143715,215,235,450 -1143716,228,218,446 -1143717,195,199,394 -1143718,225,203,428 -1143719,129,136,265 -1143720,237,265,502 -1143721,267,256,523 -1143722,3,0,3 -1143723,36,6,42 -1143724,320,317,637 -1143725,148,155,303 -1143726,258,303,561 -1143727,158,143,301 -1143728,328,339,667 -1143729,228,223,451 -1143730,247,232,479 -1143731,203,191,394 -1143732,240,223,463 -1143733,199,213,412 -1143734,248,276,524 -1143735,78,143,221 -1143736,258,272,530 -1143737,191,151,342 -1143738,182,193,375 -1143739,291,299,590 -1143801,107,113,220 -1143802,155,141,296 -1143803,169,176,345 -1143804,209,211,420 -1143805,220,214,434 -1143806,212,228,440 -1143807,203,209,412 -1143808,121,117,238 -1143809,251,264,515 -1143810,207,242,449 -1143811,199,217,416 -1143812,214,239,453 -1143813,220,234,454 -1143814,258,254,512 -1143815,161,155,316 -1143816,287,293,580 -1143817,234,226,460 -1143818,184,205,389 -1143819,149,152,301 -1143820,181,206,387 -1143821,189,207,396 -1143822,117,122,239 -1143823,110,104,214 -1143824,187,196,383 -1143825,230,182,412 -1143826,181,166,347 -1143827,284,273,557 -1143828,175,221,396 -1143829,57,47,104 -1143830,270,202,472 -1143831,180,162,342 -1143832,7,5,12 -1143833,156,163,319 -1143834,285,314,599 -1143835,160,213,373 -1143836,222,200,422 -1143837,227,257,484 -1143838,0,0,0 -1143839,141,170,311 -1143840,173,221,394 -1143841,208,231,439 -1143842,288,297,585 -1143843,102,111,213 -1143844,150,136,286 -1143845,159,211,370 -1143846,116,156,272 -1143847,187,239,426 -1143848,236,259,495 -1143849,118,149,267 -1143850,152,146,298 -1143851,310,273,583 -1143852,105,121,226 -1143853,171,132,303 -1143854,15,0,15 -1143855,231,233,464 -1143856,244,261,505 -1143857,101,123,224 -1143858,100,107,207 -1143901,0,0,0 -1144001,116,103,219 -1144002,181,212,393 -1144003,26,3,29 -1144004,378,366,744 -1144005,178,175,353 -1144006,0,0,0 -1144007,94,97,191 -1144008,194,208,402 -1144009,195,214,409 -1144010,188,163,351 -1144011,254,218,472 -1144012,191,217,408 -1144013,289,298,587 -1144014,246,249,495 -1144015,108,69,177 -1144016,244,281,525 -1144017,203,216,419 -1144018,201,218,419 -1144019,140,129,269 -1144020,254,297,551 -1144021,190,213,403 -1144022,196,188,384 -1144023,231,217,448 -1144024,16,10,26 -1144025,200,205,405 -1144026,258,285,543 -1144027,156,152,308 -1144028,176,190,366 -1144029,211,200,411 -1144030,171,172,343 -1144031,208,195,403 -1144032,365,305,670 -1144033,158,188,346 -1144034,154,157,311 -1144035,170,160,330 -1144036,304,320,624 -1144037,290,315,605 -1144038,153,156,309 -1144039,190,183,373 -1144040,200,200,400 -1144041,110,91,201 -1144042,142,147,289 -1144043,136,128,264 -1144044,205,212,417 -1144101,263,276,539 -1144102,206,200,406 -1144103,190,181,371 -1144104,213,201,414 -1144105,139,141,280 -1144106,196,183,379 -1144107,248,276,524 -1144108,277,292,569 -1144109,170,165,335 -1144110,195,192,387 -1144111,281,369,650 -1144112,258,255,513 -1144113,156,162,318 -1144114,320,325,645 -1144115,186,191,377 -1144116,160,160,320 -1144117,247,243,490 -1144118,198,233,431 -1144119,200,213,413 -1144120,213,228,441 -1144121,465,484,949 -1144122,215,213,428 -1144123,209,185,394 -1144124,139,136,275 -1144125,216,217,433 -1144126,171,185,356 -1144127,210,220,430 -1144128,257,244,501 -1144129,268,264,532 -1144130,144,155,299 -1144131,161,156,317 -1144132,210,212,422 -1144133,282,291,573 -1144134,175,159,334 -1144135,273,254,527 -1144136,185,228,413 -1144201,179,187,366 -1144202,560,576,1136 -1144203,0,0,0 -1144204,220,217,437 -1144205,247,317,564 -1144206,165,173,338 -1144207,137,166,303 -1144208,125,322,447 -1144209,127,114,241 -1144210,182,169,351 -1144211,175,172,347 -1144212,186,178,364 -1144213,211,204,415 -1144214,148,153,301 -1144215,147,157,304 -1144216,225,252,477 -1144217,150,154,304 -1144218,130,126,256 -1144219,205,210,415 -1144220,224,219,443 -1144221,134,141,275 -1144222,202,271,473 -1144223,272,267,539 -1144224,227,267,494 -1144225,192,232,424 -1144226,190,195,385 -1144227,159,186,345 -1144228,234,210,444 -1144229,193,221,414 -1144230,152,179,331 -1144231,207,268,475 -1144232,194,256,450 -1144233,0,0,0 -1144234,165,175,340 -1144235,270,260,530 -1144236,199,247,446 -1144237,173,173,346 -1144238,137,140,277 -1144239,227,216,443 -1144240,136,142,278 -1144241,207,190,397 -1144242,111,112,223 -1144243,190,185,375 -1144244,221,221,442 -1144245,238,218,456 -1144246,205,217,422 -1144247,205,207,412 -1144248,256,253,509 -1144249,202,201,403 -1144250,253,276,529 -1144251,105,97,202 -1144252,279,286,565 -1144253,221,249,470 -1144301,187,177,364 -1144302,135,138,273 -1144303,155,145,300 -1144304,161,132,293 -1144305,168,161,329 -1144306,242,278,520 -1144307,175,183,358 -1144308,146,149,295 -1144309,284,240,524 -1144310,244,253,497 -1144311,197,225,422 -1144312,0,0,0 -1144313,27,15,42 -1144314,166,178,344 -1144315,187,184,371 -1144316,153,168,321 -1144317,177,201,378 -1144318,250,253,503 -1144319,102,95,197 -1144320,37,30,67 -1144321,159,204,363 -1144322,176,171,347 -1144323,158,179,337 -1144324,208,201,409 -1144325,129,131,260 -1144326,12,5,17 -1144327,217,199,416 -1144328,14,20,34 -1144329,145,167,312 -1144330,252,249,501 -1144331,234,243,477 -1144332,137,148,285 -1144333,191,210,401 -1144334,222,219,441 -1144335,215,239,454 -1144336,243,283,526 -1144337,318,314,632 -1144338,232,282,514 -1144339,222,245,467 -1144340,363,361,724 -1144341,240,230,470 -1144342,0,0,0 -1144343,138,162,300 -1144344,249,243,492 -1144345,115,130,245 -1144346,177,205,382 -1144347,229,230,459 -1144348,173,183,356 -1144349,171,168,339 -1144350,106,125,231 -1144401,113,140,253 -1144402,94,105,199 -1144403,98,102,200 -1144404,189,239,428 -1144405,121,125,246 -1144406,233,259,492 -1144407,273,259,532 -1144408,196,201,397 -1144409,140,208,348 -1144410,209,206,415 -1144411,163,171,334 -1144412,241,245,486 -1144413,237,222,459 -1144414,166,147,313 -1144415,226,215,441 -1144416,199,199,398 -1144417,325,321,646 -1144418,129,146,275 -1144419,113,122,235 -1144420,257,212,469 -1144421,126,136,262 -1144422,136,171,307 -1144423,247,282,529 -1144424,132,145,277 -1144425,253,301,554 -1144426,226,218,444 -1144427,124,117,241 -1144428,171,176,347 -1144429,137,136,273 -1144430,163,203,366 -1144431,117,130,247 -1144432,276,296,572 -1144433,232,216,448 -1144434,193,213,406 -1144435,167,148,315 -1144436,176,175,351 -1144437,221,220,441 -1144438,106,115,221 -1144439,187,189,376 -1144440,140,145,285 -1144441,208,205,413 -1144442,157,196,353 -1144443,76,89,165 -1144444,123,165,288 -1144445,156,161,317 -1144446,166,157,323 -1144447,287,281,568 -1144448,124,133,257 -1144449,171,177,348 -1144450,154,136,290 -1144451,103,109,212 -1144452,212,224,436 -1144453,148,150,298 -1144454,235,211,446 -1144455,129,114,243 -1144456,195,186,381 -1144501,148,124,272 -1144502,109,139,248 -1144503,345,338,683 -1144504,142,152,294 -1144505,190,169,359 -1144506,286,323,609 -1144507,125,111,236 -1144508,69,76,145 -1144509,104,113,217 -1144510,199,197,396 -1144511,189,193,382 -1144512,307,297,604 -1144513,148,148,296 -1144514,157,150,307 -1144515,174,172,346 -1144601,255,244,499 -1144602,168,178,346 -1144603,190,178,368 -1144604,260,229,489 -1144605,183,190,373 -1144606,295,309,604 -1144607,128,127,255 -1144608,164,137,301 -1144609,231,276,507 -1144610,124,131,255 -1144611,132,121,253 -1144612,243,210,453 -1144613,136,127,263 -1144614,279,239,518 -1144615,219,200,419 -1144616,122,123,245 -1144617,166,171,337 -1144618,120,96,216 -1144619,190,185,375 -1144701,133,132,265 -1144702,107,108,215 -1144703,162,142,304 -1144704,148,153,301 -1144705,262,257,519 -1144706,131,138,269 -1144707,263,270,533 -1144708,136,145,281 -1144709,170,164,334 -1144710,86,102,188 -1144711,126,135,261 -1144712,160,177,337 -1144713,220,251,471 -1144714,210,213,423 -1144715,263,234,497 -1144716,54,55,109 -1144717,132,131,263 -1144718,161,152,313 -1144719,140,136,276 -1144720,202,205,407 -1144721,184,189,373 -1144722,244,234,478 -1144723,260,266,526 -1144724,155,154,309 -1144725,132,140,272 -1144726,264,264,528 -1144727,162,168,330 -1144728,200,194,394 -1144729,216,272,488 -1144730,303,338,641 -1144731,186,193,379 -1144732,0,0,0 -1144733,173,187,360 -1144734,189,199,388 -1144735,216,208,424 -1144736,173,163,336 -1144737,308,348,656 -1144738,208,222,430 -1144739,176,203,379 -1144740,185,178,363 -1144741,165,182,347 -1144742,145,132,277 -1144743,54,62,116 -1144801,152,156,308 -1144802,149,172,321 -1144803,143,131,274 -1144804,102,112,214 -1144805,288,258,546 -1144806,116,113,229 -1144807,142,116,258 -1144808,127,116,243 -1144809,201,201,402 -1144810,261,224,485 -1144811,311,321,632 -1144812,91,85,176 -1144813,167,196,363 -1144814,280,270,550 -1144815,122,126,248 -1144816,161,158,319 -1144817,163,166,329 -1144818,181,190,371 -1144819,219,183,402 -1144820,189,163,352 -1144821,192,198,390 -1144822,187,208,395 -1144823,215,216,431 -1144824,157,163,320 -1144901,141,176,317 -1144902,200,224,424 -1144903,202,189,391 -1144904,200,228,428 -1144905,189,202,391 -1144906,131,155,286 -1144907,222,267,489 -1144908,34,35,69 -1144909,168,178,346 -1144910,255,224,479 -1144911,112,101,213 -1144912,197,229,426 -1144913,217,217,434 -1144914,130,129,259 -1144915,253,256,509 -1145001,104,115,219 -1145002,85,111,196 -1145003,198,174,372 -1145004,143,130,273 -1145005,238,235,473 -1145006,84,99,183 -1145007,150,132,282 -1145008,160,189,349 -1145009,244,258,502 -1145010,211,252,463 -1145011,160,171,331 -1145012,269,278,547 -1145013,114,112,226 -1145014,98,112,210 -1145015,186,186,372 -1145016,189,243,432 -1145017,181,200,381 -1145018,172,184,356 -1145019,246,257,503 -1145020,146,163,309 -1145021,17,0,17 -1145022,195,198,393 -1145023,251,273,524 -1145024,218,230,448 -1145025,232,248,480 -1145026,151,139,290 -1145027,308,315,623 -1145028,144,144,288 -1145029,238,247,485 -1145030,221,233,454 -1145031,222,211,433 -1145032,150,145,295 -1145033,285,285,570 -1145034,174,185,359 -1145035,0,3,3 -1145036,184,183,367 -1145037,255,251,506 -1145038,269,245,514 -1145039,0,0,0 -1145040,153,159,312 -1145041,312,315,627 -1145042,178,170,348 -1145043,137,142,279 -1145044,222,235,457 -1145045,203,204,407 -1145046,190,180,370 -1145047,166,171,337 -1145048,238,246,484 -1145049,175,193,368 -1145050,101,109,210 -1145051,140,131,271 -1145101,13,15,28 -1145201,140,137,277 -1145202,216,246,462 -1145203,174,168,342 -1145204,151,165,316 -1145205,190,210,400 -1145206,118,145,263 -1145207,199,229,428 -1145208,168,238,406 -1145209,144,129,273 -1145210,126,181,307 -1145211,181,217,398 -1145212,264,284,548 -1145213,188,217,405 -1145214,125,119,244 -1145215,9,11,20 -1145216,178,191,369 -1145217,183,181,364 -1145218,191,197,388 -1145219,186,196,382 -1145220,132,151,283 -1145221,141,137,278 -1145222,14,10,24 -1145223,330,325,655 -1145224,239,317,556 -1145225,145,182,327 -1145226,119,133,252 -1145227,149,179,328 -1145228,300,272,572 -1145229,100,130,230 -1145230,238,201,439 -1145231,188,200,388 -1145232,256,261,517 -1145233,178,206,384 -1145234,130,133,263 -1145235,103,108,211 -1145236,157,177,334 -1145237,146,144,290 -1145301,4,10,14 -1145302,198,218,416 -1145303,180,197,377 -1145304,129,142,271 -1145305,282,278,560 -1145306,261,314,575 -1145307,278,323,601 -1145308,136,146,282 -1145309,185,216,401 -1145310,253,263,516 -1145311,250,278,528 -1145312,225,248,473 -1145313,167,146,313 -1145314,134,136,270 -1145315,152,135,287 -1145316,255,246,501 -1145317,10,9,19 -1145318,268,276,544 -1145319,184,198,382 -1145320,202,214,416 -1145321,280,330,610 -1145322,140,141,281 -1145323,158,166,324 -1145324,241,265,506 -1145325,126,146,272 -1145326,252,238,490 -1145327,248,301,549 -1145328,135,154,289 -1145401,223,235,458 -1145402,238,245,483 -1145403,154,154,308 -1145404,269,265,534 -1145405,277,304,581 -1145406,223,228,451 -1145407,278,297,575 -1145408,180,170,350 -1145409,280,282,562 -1145410,150,172,322 -1145411,268,248,516 -1145412,235,271,506 -1145413,166,164,330 -1145414,137,175,312 -1145415,197,230,427 -1145416,167,198,365 -1145417,175,185,360 -1145418,243,232,475 -1145419,218,219,437 -1145420,178,197,375 -1145421,220,215,435 -1145422,247,223,470 -1145423,224,259,483 -1145424,260,284,544 -1145425,125,153,278 -1145426,181,201,382 -1145427,188,279,467 -1145428,173,182,355 -1145429,143,169,312 -1145430,255,276,531 -1145431,178,188,366 -1145432,229,233,462 -1145433,311,326,637 -1145434,125,276,401 -1145435,233,227,460 -1145436,189,206,395 -1145437,268,299,567 -1145438,163,164,327 -1145439,125,167,292 -1145440,252,230,482 -1145441,176,170,346 -1145442,174,188,362 -1145443,109,145,254 -1145444,203,199,402 -1145445,228,243,471 -1145446,239,238,477 -1145447,311,323,634 -1145448,160,180,340 -1145449,146,156,302 -1145450,230,213,443 -1145451,137,218,355 -1145501,242,266,508 -1145502,134,125,259 -1145503,239,246,485 -1145504,149,175,324 -1145505,206,207,413 -1145506,283,337,620 -1145507,228,216,444 -1145508,229,242,471 -1145509,150,158,308 -1145510,116,186,302 -1145511,169,181,350 -1145512,141,171,312 -1145513,175,192,367 -1145514,165,176,341 -1145515,193,240,433 -1145601,3,6,9 -1145701,158,149,307 -1145702,234,229,463 -1145703,200,202,402 -1145704,239,233,472 -1145705,188,187,375 -1145706,104,104,208 -1145707,149,133,282 -1145708,141,133,274 -1145709,177,194,371 -1145710,154,147,301 -1145711,251,250,501 -1145712,287,304,591 -1145713,238,243,481 -1145714,117,116,233 -1145715,286,284,570 -1145716,153,176,329 -1145717,260,261,521 -1145718,254,264,518 -1145719,132,123,255 -1145720,187,181,368 -1145721,270,272,542 -1145722,139,133,272 -1145723,190,219,409 -1145724,185,171,356 -1145725,171,183,354 -1145726,97,120,217 -1145727,131,132,263 -1145728,130,133,263 -1145729,165,167,332 -1145730,177,176,353 -1145731,122,104,226 -1145732,221,220,441 -1145733,185,197,382 -1145734,245,227,472 -1145735,104,114,218 -1145736,113,130,243 -1145737,224,239,463 -1145738,190,179,369 -1145739,151,162,313 -1145740,271,243,514 -1145741,150,150,300 -1145801,215,214,429 -1145802,167,184,351 -1145803,156,156,312 -1145804,129,135,264 -1145805,137,146,283 -1145806,174,187,361 -1145807,230,197,427 -1145808,247,235,482 -1145809,199,186,385 -1145810,228,233,461 -1145811,189,157,346 -1145812,228,183,411 -1145813,271,269,540 -1145814,216,212,428 -1145815,171,162,333 -1145816,169,230,399 -1145817,153,149,302 -1145818,148,145,293 -1145819,198,188,386 -1145820,246,261,507 -1145821,138,142,280 -1145822,269,249,518 -1145823,147,139,286 -1145824,120,120,240 -1145825,7,7,14 -1145826,226,241,467 -1145827,104,95,199 -1145828,172,180,352 -1145829,200,217,417 -1145830,238,229,467 -1145831,206,183,389 -1145832,157,137,294 -1145833,160,199,359 -1145834,113,119,232 -1145835,150,164,314 -1145836,117,103,220 -1145837,244,253,497 -1145838,248,230,478 -1145839,114,125,239 -1145840,139,165,304 -1145841,224,232,456 -1145842,225,271,496 -1145843,249,277,526 -1145844,158,156,314 -1145845,135,152,287 -1145846,193,223,416 -1145847,115,108,223 -1145848,0,0,0 -1145849,210,192,402 -1145901,163,183,346 -1145902,288,288,576 -1145903,150,143,293 -1145904,233,221,454 -1145905,214,309,523 -1145906,262,285,547 -1145907,187,195,382 -1145908,140,148,288 -1145909,195,222,417 -1145910,263,274,537 -1145911,125,123,248 -1145912,192,221,413 -1145913,274,308,582 -1145914,151,144,295 -1145915,285,284,569 -1145916,119,128,247 -1145917,242,228,470 -1145918,196,203,399 -1145919,106,108,214 -1145920,150,155,305 -1145921,144,132,276 -1145922,201,208,409 -1145923,214,173,387 -1145924,186,187,373 -1145925,179,197,376 -1145926,183,180,363 -1145927,227,226,453 -1145928,292,319,611 -1145929,219,221,440 -1145930,175,159,334 -1145931,213,208,421 -1145932,82,250,332 -1145933,286,305,591 -1145934,202,208,410 -1146001,152,165,317 -1146002,197,208,405 -1146003,166,158,324 -1146004,119,128,247 -1146005,209,228,437 -1146006,110,107,217 -1146007,135,139,274 -1146008,227,227,454 -1146009,179,196,375 -1146010,229,264,493 -1146011,154,175,329 -1146012,309,323,632 -1146013,213,209,422 -1146014,276,306,582 -1146015,288,319,607 -1146016,270,323,593 -1146017,0,0,0 -1146018,267,258,525 -1146019,324,294,618 -1146020,192,205,397 -1146021,254,252,506 -1146022,232,254,486 -1146023,176,179,355 -1146024,289,280,569 -1146025,130,144,274 -1146026,192,230,422 -1146027,269,297,566 -1146028,235,257,492 -1146029,185,210,395 -1146030,142,146,288 -1146031,264,282,546 -1146032,120,126,246 -1146033,184,182,366 -1146034,208,215,423 -1146035,311,325,636 -1146036,245,243,488 -1146037,121,128,249 -1146038,156,174,330 -1146039,172,175,347 -1146040,178,163,341 -1146041,229,221,450 -1146042,279,278,557 -1146043,317,335,652 -1146044,250,274,524 -1146045,190,240,430 -1146046,108,115,223 -1146047,297,308,605 -1146048,241,255,496 -1146049,194,193,387 -1146101,148,161,309 -1146102,146,163,309 -1146103,293,287,580 -1146104,148,148,296 -1146105,178,200,378 -1146106,317,331,648 -1146107,157,163,320 -1146108,144,143,287 -1146109,206,222,428 -1146110,246,226,472 -1146111,153,210,363 -1146112,242,277,519 -1146113,154,176,330 -1146114,156,169,325 -1146115,166,186,352 -1146116,235,225,460 -1146117,275,341,616 -1146118,234,213,447 -1146119,230,264,494 -1146120,336,306,642 -1146121,287,304,591 -1146122,91,94,185 -1146123,157,160,317 -1146124,158,149,307 -1146125,150,152,302 -1146126,225,236,461 -1146127,286,311,597 -1146128,160,176,336 -1146129,211,256,467 -1146130,200,193,393 -1146131,214,204,418 -1146132,150,175,325 -1146133,0,4,4 -1146134,197,213,410 -1146135,108,119,227 -1146136,250,257,507 -1146137,269,305,574 -1146138,232,283,515 -1146139,284,285,569 -1146140,103,151,254 -1146141,268,287,555 -1146201,395,495,890 -1146202,214,244,458 -1146203,177,189,366 -1146204,252,240,492 -1146205,221,250,471 -1146206,364,353,717 -1146207,309,332,641 -1146208,189,188,377 -1146209,135,141,276 -1146210,88,104,192 -1146211,83,60,143 -1146212,85,97,182 -1146213,175,207,382 -1146214,238,251,489 -1146215,0,0,0 -1146216,443,437,880 -1146217,194,212,406 -1146218,128,128,256 -1146219,278,309,587 -1146220,158,159,317 -1146221,129,127,256 -1146222,354,357,711 -1146223,246,289,535 -1146224,352,352,704 -1146225,260,335,595 -1146226,114,83,197 -1146227,219,175,394 -1146228,272,290,562 -1146229,249,276,525 -1146230,122,140,262 -1146231,250,245,495 -1146232,104,98,202 -1146233,268,244,512 -1146234,170,192,362 -1146235,251,234,485 -1146236,296,309,605 -1146237,131,149,280 -1146238,177,191,368 -1146239,271,275,546 -1146301,73,76,149 -1146302,137,112,249 -1146303,195,206,401 -1146304,150,156,306 -1146305,211,197,408 -1146306,178,185,363 -1146307,251,220,471 -1146308,327,313,640 -1146309,220,236,456 -1146310,197,175,372 -1146311,122,104,226 -1146312,235,218,453 -1146313,148,133,281 -1146314,143,145,288 -1146315,232,228,460 -1146316,96,102,198 -1146317,127,104,231 -1146318,148,164,312 -1146319,121,118,239 -1146401,133,167,300 -1146402,135,139,274 -1146403,211,199,410 -1146404,224,173,397 -1146405,287,295,582 -1146406,116,130,246 -1146407,244,241,485 -1146408,283,306,589 -1146409,245,253,498 -1146410,148,159,307 -1146411,198,219,417 -1146412,150,167,317 -1146413,174,279,453 -1146414,298,313,611 -1146415,150,160,310 -1146416,113,117,230 -1146417,81,101,182 -1146418,177,183,360 -1146419,210,238,448 -1146420,184,193,377 -1146421,211,236,447 -1146422,94,99,193 -1146423,187,156,343 -1146424,116,239,355 -1146425,169,140,309 -1146426,3,10,13 -1146427,3,3,6 -1146428,5,0,5 -1146429,187,209,396 -1146430,275,345,620 -1146431,246,228,474 -1146432,231,269,500 -1146433,160,189,349 -1146501,261,291,552 -1146502,3,4,7 -1146503,0,0,0 -1146504,302,289,591 -1146505,187,174,361 -1146506,350,323,673 -1146507,231,206,437 -1146508,165,146,311 -1146509,99,100,199 -1146510,186,177,363 -1146511,248,246,494 -1146512,181,192,373 -1146513,155,159,314 -1146514,198,183,381 -1146601,269,265,534 -1146602,80,89,169 -1146603,195,178,373 -1146604,243,250,493 -1146605,219,231,450 -1146606,88,118,206 -1146607,63,56,119 -1146608,110,110,220 -1146609,234,302,536 -1146610,179,206,385 -1146611,197,245,442 -1146612,221,235,456 -1146613,253,252,505 -1146614,235,267,502 -1146615,243,239,482 -1146616,229,255,484 -1146617,262,298,560 -1146618,84,196,280 -1146619,233,235,468 -1146620,243,266,509 -1146621,146,200,346 -1146622,199,215,414 -1146623,231,246,477 -1146624,108,83,191 -1146625,174,181,355 -1146626,144,165,309 -1146627,316,338,654 -1146628,201,214,415 -1146629,236,265,501 -1146630,127,129,256 -1146631,376,186,562 -1146632,141,153,294 -1146633,228,267,495 -1146701,12,6,18 -1146702,204,203,407 -1146703,139,152,291 -1146704,117,120,237 -1146705,0,0,0 -1146706,0,0,0 -1146707,219,244,463 -1146708,3,3,6 -1146709,135,146,281 -1146710,222,225,447 -1146711,148,147,295 -1146712,141,156,297 -1146713,163,158,321 -1146714,144,168,312 -1146715,269,285,554 -1146716,209,206,415 -1146717,122,154,276 -1146718,229,244,473 -1146719,102,121,223 -1146720,104,119,223 -1146721,215,245,460 -1146722,163,160,323 -1146723,131,113,244 -1146724,164,160,324 -1146725,205,249,454 -1146726,232,210,442 -1146727,161,198,359 -1146728,116,122,238 -1146729,96,99,195 -1146730,259,284,543 -1146731,220,221,441 -1146732,161,139,300 -1146733,172,189,361 -1146734,163,167,330 -1146735,205,191,396 -1146736,192,219,411 -1146737,215,216,431 -1146738,241,261,502 -1146739,258,284,542 -1146740,193,222,415 -1146741,274,275,549 -1146742,220,203,423 -1146743,133,162,295 -1146744,299,267,566 -1146745,188,186,374 -1146801,219,238,457 -1146802,252,262,514 -1146803,261,264,525 -1146804,124,117,241 -1146805,177,179,356 -1146806,103,102,205 -1146807,195,179,374 -1146808,503,166,669 -1146809,0,0,0 -1146810,134,124,258 -1146811,203,181,384 -1146812,110,100,210 -1146813,149,121,270 -1146814,147,132,279 -1146815,190,199,389 -1146816,202,195,397 -1146817,223,175,398 -1146818,238,230,468 -1146819,230,226,456 -1146901,219,239,458 -1146902,215,225,440 -1146903,160,148,308 -1146904,146,133,279 -1146905,168,151,319 -1146906,234,239,473 -1146907,4,3,7 -1146908,0,0,0 -1146909,257,241,498 -1146910,89,93,182 -1146911,260,251,511 -1146912,144,155,299 -1146913,183,170,353 -1146914,120,113,233 -1146915,211,216,427 -1146916,200,202,402 -1146917,101,91,192 -1146918,227,217,444 -1146919,204,222,426 -1146920,209,212,421 -1147001,172,185,357 -1147002,205,189,394 -1147003,304,292,596 -1147004,160,154,314 -1147005,319,314,633 -1147006,325,349,674 -1147007,334,353,687 -1147008,241,255,496 -1147009,214,200,414 -1147010,302,324,626 -1147011,206,203,409 -1147012,214,230,444 -1147013,323,296,619 -1147014,122,130,252 -1147015,214,213,427 -1147016,235,247,482 -1147017,256,273,529 -1147018,167,164,331 -1147019,279,280,559 -1147020,262,260,522 -1147021,262,251,513 -1147022,196,197,393 -1147023,268,261,529 -1147024,314,298,612 -1147025,356,385,741 -1147026,222,228,450 -1147027,125,137,262 -1147028,183,168,351 -1147029,243,245,488 -1147030,244,252,496 -1147031,197,223,420 -1147032,239,269,508 -1147033,196,181,377 -1147034,232,221,453 -1147035,193,185,378 -1147036,242,241,483 -1147037,203,205,408 -1147038,149,156,305 -1147039,191,190,381 -1147040,206,178,384 -1147041,395,416,811 -1147042,167,165,332 -1147101,238,245,483 -1147102,174,159,333 -1147103,119,125,244 -1147104,174,167,341 -1147105,192,188,380 -1147106,219,207,426 -1147107,239,243,482 -1147108,264,261,525 -1147109,147,151,298 -1147110,198,195,393 -1147111,212,206,418 -1147112,235,218,453 -1147113,266,274,540 -1147114,266,279,545 -1147115,295,295,590 -1147116,181,197,378 -1147117,165,164,329 -1147118,189,221,410 -1147119,285,274,559 -1147120,268,283,551 -1147121,272,301,573 -1147122,290,308,598 -1147123,215,228,443 -1147124,316,394,710 -1147125,303,318,621 -1147126,159,168,327 -1147127,214,215,429 -1147128,275,260,535 -1147129,197,189,386 -1147130,218,221,439 -1147131,159,146,305 -1147132,260,230,490 -1147133,251,234,485 -1147134,281,292,573 -1147135,259,218,477 -1147136,188,174,362 -1147137,205,213,418 -1147138,246,248,494 -1147139,351,374,725 -1147140,164,169,333 -1147141,234,246,480 -1147142,373,375,748 -1147143,243,231,474 -1147144,3,0,3 -1147145,0,0,0 -1147146,3,0,3 -1147147,299,354,653 -1147148,227,230,457 -1147149,275,305,580 -1147150,251,231,482 -1147151,232,212,444 -1147152,237,219,456 -1147153,261,311,572 -1147154,0,0,0 -1147155,344,376,720 -1147156,244,265,509 -1147157,281,294,575 -1147201,172,156,328 -1147202,192,185,377 -1147203,238,185,423 -1147204,143,105,248 -1147205,336,247,583 -1147206,406,295,701 -1147207,232,224,456 -1147208,205,222,427 -1147209,369,273,642 -1147210,250,245,495 -1147211,149,145,294 -1147212,177,182,359 -1147213,234,204,438 -1147214,253,236,489 -1147215,269,231,500 -1147216,259,254,513 -1147217,177,167,344 -1147218,241,257,498 -1147219,160,112,272 -1147220,220,222,442 -1147221,270,277,547 -1147222,125,116,241 -1147223,262,244,506 -1147224,143,153,296 -1147225,255,246,501 -1147226,275,280,555 -1147227,374,378,752 -1147228,267,311,578 -1147229,205,188,393 -1147230,195,195,390 -1147231,0,0,0 -1147232,0,6,6 -1147233,220,245,465 -1147234,176,181,357 -1147235,0,0,0 -1147236,278,269,547 -1147237,4,0,4 -1147238,287,259,546 -1147239,237,260,497 -1147240,238,227,465 -1147241,280,243,523 -1147242,106,106,212 -1147243,247,259,506 -1147244,160,145,305 -1147245,233,234,467 -1147246,178,241,419 -1147247,299,270,569 -1147248,221,201,422 -1147249,305,212,517 -1147250,714,507,1221 -1147251,317,302,619 -1147252,11,7,18 -1147253,287,302,589 -1147254,22,23,45 -1147255,232,247,479 -1147256,250,248,498 -1147257,186,185,371 -1147258,241,198,439 -1147259,217,201,418 -1147260,276,181,457 -1147261,335,301,636 -1147262,414,360,774 -1147263,341,305,646 -1147264,320,291,611 -1147265,441,350,791 -1147266,64,67,131 -1147267,169,187,356 -1147268,193,163,356 -1147269,487,406,893 -1147270,177,155,332 -1147271,0,0,0 -1147272,185,151,336 -1147273,183,191,374 -1147274,278,286,564 -1147275,158,146,304 -1147276,219,213,432 -1147301,128,124,252 -1147302,230,236,466 -1147303,102,113,215 -1147304,273,263,536 -1147305,127,115,242 -1147306,0,0,0 -1147307,1168,182,1350 -1147308,250,247,497 -1147309,174,182,356 -1147310,330,329,659 -1147311,250,239,489 -1147312,44,21,65 -1147313,137,155,292 -1147314,617,614,1231 -1147315,552,581,1133 -1147316,209,191,400 -1147317,5,0,5 -1147318,198,192,390 -1147319,189,192,381 -1147320,141,124,265 -1147321,193,170,363 -1147322,282,252,534 -1147323,339,322,661 -1147324,258,272,530 -1147401,373,341,714 -1147402,0,0,0 -1147403,0,0,0 -1147404,0,0,0 -1147405,184,187,371 -1147406,223,210,433 -1147407,150,137,287 -1147408,103,100,203 -1147409,10,9,19 -1147410,150,143,293 -1147411,190,185,375 -1147412,232,208,440 -1147413,268,271,539 -1147414,265,308,573 -1147415,207,209,416 -1147416,156,161,317 -1147417,148,168,316 -1147418,167,173,340 -1147419,177,152,329 -1147420,241,241,482 -1147421,230,230,460 -1147422,217,242,459 -1147423,196,187,383 -1147424,233,210,443 -1147425,153,162,315 -1147426,140,158,298 -1147427,156,159,315 -1147428,177,182,359 -1147429,0,0,0 -1147430,180,205,385 -1147431,267,254,521 -1147432,168,162,330 -1147433,246,277,523 -1147434,304,281,585 -1147435,300,286,586 -1147436,205,221,426 -1147437,329,335,664 -1147438,165,163,328 -1147439,170,146,316 -1147440,0,0,0 -1147441,284,283,567 -1147442,254,257,511 -1147443,140,149,289 -1147444,157,152,309 -1147445,794,784,1578 -1147446,304,275,579 -1147447,222,225,447 -1147448,356,337,693 -1147449,303,293,596 -1147450,210,219,429 -1147451,184,174,358 -1147452,198,191,389 -1147453,75,85,160 -1147454,121,127,248 -1147455,217,219,436 -1147456,0,0,0 -1147457,364,297,661 -1147458,404,460,864 -1147459,340,292,632 -1147460,195,188,383 -1147461,284,276,560 -1147462,182,180,362 -1147463,155,167,322 -1147464,118,120,238 -1147465,147,142,289 -1147466,261,243,504 -1147467,162,158,320 -1147468,212,196,408 -1147469,156,142,298 -1147470,257,239,496 -1147471,167,160,327 -1147472,129,130,259 -1147473,151,158,309 -1147474,173,168,341 -1147475,197,151,348 -1147476,168,164,332 -1147501,3,5,8 -1147601,133,135,268 -1147602,194,200,394 -1147603,302,390,692 -1147604,224,219,443 -1147605,208,192,400 -1147606,201,193,394 -1147607,164,183,347 -1147608,255,280,535 -1147609,229,226,455 -1147610,244,226,470 -1147611,186,183,369 -1147612,266,292,558 -1147613,157,152,309 -1147614,225,253,478 -1147615,312,305,617 -1147616,143,155,298 -1147617,247,259,506 -1147618,161,180,341 -1147619,220,244,464 -1147620,168,151,319 -1147621,167,156,323 -1147622,208,222,430 -1147623,285,283,568 -1147624,372,403,775 -1147625,256,266,522 -1147626,243,266,509 -1147627,127,130,257 -1147628,241,235,476 -1147629,190,195,385 -1147630,193,222,415 -1147631,233,248,481 -1147632,209,209,418 -1147633,285,292,577 -1147634,161,180,341 -1147635,234,257,491 -1147636,155,163,318 -1147637,280,284,564 -1147638,206,198,404 -1147639,197,188,385 -1147640,179,186,365 -1147641,185,184,369 -1147642,292,343,635 -1147643,179,182,361 -1147644,228,217,445 -1147645,194,200,394 -1147646,262,244,506 -1147647,176,167,343 -1147648,206,229,435 -1147649,256,263,519 -1147650,178,187,365 -1147651,151,141,292 -1147652,251,259,510 -1147653,285,277,562 -1147654,132,144,276 -1147655,275,278,553 -1147656,140,253,393 -1147701,230,235,465 -1147702,0,0,0 -1147703,119,98,217 -1147704,121,143,264 -1147705,120,51,171 -1147706,281,259,540 -1147707,145,167,312 -1147708,146,160,306 -1147709,133,141,274 -1147710,146,155,301 -1147711,241,191,432 -1147712,116,113,229 -1147713,176,186,362 -1147714,190,205,395 -1147715,292,275,567 -1147716,141,130,271 -1147717,313,281,594 -1147718,337,324,661 -1147719,212,216,428 -1147720,229,201,430 -1147721,9,5,14 -1147722,186,189,375 -1147723,0,0,0 -1147724,197,212,409 -1147725,206,218,424 -1147726,225,225,450 -1147727,238,248,486 -1147728,151,148,299 -1147729,258,244,502 -1147730,3,0,3 -1147731,107,100,207 -1147732,153,165,318 -1147733,143,204,347 -1147734,269,306,575 -1147735,137,128,265 -1147736,186,192,378 -1147737,268,258,526 -1147738,166,158,324 -1147739,7,0,7 -1147740,282,302,584 -1147741,245,269,514 -1147742,236,235,471 -1147743,203,206,409 -1147744,285,312,597 -1147745,257,264,521 -1147746,225,217,442 -1147747,216,203,419 -1147748,220,193,413 -1147749,249,238,487 -1147750,294,359,653 -1147751,117,130,247 -1147752,164,172,336 -1147801,248,268,516 -1147802,177,178,355 -1147803,141,173,314 -1147804,169,159,328 -1147805,190,229,419 -1147806,287,320,607 -1147807,170,158,328 -1147808,162,156,318 -1147809,182,158,340 -1147810,223,246,469 -1147811,185,204,389 -1147812,126,136,262 -1147813,253,235,488 -1147814,195,195,390 -1147815,212,207,419 -1147816,273,283,556 -1147817,178,184,362 -1147818,168,183,351 -1147819,272,281,553 -1147820,104,108,212 -1147821,141,159,300 -1147822,155,154,309 -1147823,191,168,359 -1147824,263,313,576 -1147825,392,385,777 -1147826,247,251,498 -1147827,184,183,367 -1147828,200,212,412 -1147829,261,250,511 -1147830,258,248,506 -1147831,185,207,392 -1147832,154,163,317 -1147833,128,132,260 -1147834,224,228,452 -1147835,134,138,272 -1147836,233,247,480 -1147837,222,258,480 -1147838,275,250,525 -1147901,260,294,554 -1147902,265,286,551 -1147903,268,282,550 -1147904,202,229,431 -1147905,153,149,302 -1147906,192,197,389 -1147907,281,296,577 -1147908,239,236,475 -1147909,0,0,0 -1147910,145,155,300 -1147911,280,254,534 -1147912,216,249,465 -1147913,300,317,617 -1147914,178,170,348 -1147915,205,205,410 -1147916,162,181,343 -1147917,0,0,0 -1147918,258,237,495 -1147919,224,214,438 -1147920,295,289,584 -1147921,214,219,433 -1147922,145,139,284 -1147923,288,281,569 -1147924,345,344,689 -1147925,282,288,570 -1147926,251,265,516 -1147927,266,206,472 -1147928,0,0,0 -1147929,93,98,191 -1147930,295,301,596 -1147931,169,227,396 -1147932,155,164,319 -1147933,96,107,203 -1147934,236,216,452 -1147935,317,53,370 -1147936,3,0,3 -1147937,4,0,4 -1147938,0,0,0 -1147939,131,133,264 -1147940,262,246,508 -1147941,189,221,410 -1147942,270,293,563 -1147943,234,253,487 -1148001,287,316,603 -1148002,128,136,264 -1148003,169,176,345 -1148004,275,262,537 -1148005,187,190,377 -1148006,273,258,531 -1148007,208,199,407 -1148008,266,282,548 -1148009,184,177,361 -1148010,227,249,476 -1148011,133,144,277 -1148012,186,203,389 -1148013,321,335,656 -1148014,134,129,263 -1148015,307,313,620 -1148016,358,334,692 -1148017,187,253,440 -1148018,9,6,15 -1148019,213,195,408 -1148020,342,328,670 -1148021,96,90,186 -1148022,198,231,429 -1148023,181,164,345 -1148024,273,313,586 -1148025,254,250,504 -1148026,281,276,557 -1148027,194,212,406 -1148028,241,264,505 -1148029,202,195,397 -1148030,224,218,442 -1148031,289,273,562 -1148032,321,281,602 -1148101,196,221,417 -1148102,127,154,281 -1148103,360,398,758 -1148104,266,254,520 -1148105,160,147,307 -1148106,261,264,525 -1148107,151,159,310 -1148108,258,251,509 -1148109,194,189,383 -1148110,220,201,421 -1148111,241,225,466 -1148112,317,321,638 -1148113,269,287,556 -1148114,235,168,403 -1148115,162,179,341 -1148116,159,168,327 -1148117,187,183,370 -1148118,160,138,298 -1148119,273,241,514 -1148120,182,168,350 -1148121,140,142,282 -1148122,270,256,526 -1148123,244,207,451 -1148124,306,261,567 -1148125,330,308,638 -1148126,252,228,480 -1148127,221,195,416 -1148128,184,172,356 -1148129,273,241,514 -1148130,224,207,431 -1148131,335,289,624 -1148132,159,160,319 -1148133,0,0,0 -1148134,0,0,0 -1148135,132,93,225 -1148136,202,201,403 -1148137,258,213,471 -1148138,234,239,473 -1148139,234,224,458 -1148140,220,220,440 -1148141,187,194,381 -1148142,154,169,323 -1148143,0,0,0 -1148144,0,0,0 -1148145,268,213,481 -1148146,140,143,283 -1148201,392,446,838 -1148202,267,277,544 -1148203,23,25,48 -1148204,370,416,786 -1148205,131,154,285 -1148206,179,169,348 -1148207,0,0,0 -1148208,174,164,338 -1148209,202,211,413 -1148210,139,152,291 -1148211,207,245,452 -1148212,309,321,630 -1148213,164,158,322 -1148214,210,242,452 -1148215,307,320,627 -1148216,252,251,503 -1148217,172,155,327 -1148218,123,141,264 -1148219,258,290,548 -1148220,200,235,435 -1148221,243,246,489 -1148222,146,157,303 -1148223,179,186,365 -1148224,266,278,544 -1148225,188,217,405 -1148226,255,268,523 -1148227,132,124,256 -1148228,235,224,459 -1148229,137,142,279 -1148230,281,302,583 -1148231,160,168,328 -1148232,141,138,279 -1148233,123,141,264 -1148234,138,165,303 -1148235,97,101,198 -1148236,264,268,532 -1148237,242,256,498 -1148238,143,134,277 -1148239,219,189,408 -1148240,142,159,301 -1148241,166,164,330 -1148242,139,170,309 -1148243,145,152,297 -1148244,216,216,432 -1148245,215,226,441 -1148246,199,212,411 -1148247,278,282,560 -1148248,236,253,489 -1148249,267,281,548 -1148250,226,232,458 -1148251,145,159,304 -1148252,224,223,447 -1148253,112,120,232 -1148254,157,203,360 -1148255,168,183,351 -1148256,376,419,795 -1148257,102,85,187 -1148258,233,244,477 -1148301,172,201,373 -1148302,289,264,553 -1148303,144,139,283 -1148304,239,246,485 -1148305,303,282,585 -1148306,3,5,8 -1148307,167,160,327 -1148308,178,174,352 -1148309,130,153,283 -1148310,199,205,404 -1148311,262,254,516 -1148312,200,213,413 -1148313,187,201,388 -1148314,331,319,650 -1148315,442,383,825 -1148316,145,147,292 -1148317,247,227,474 -1148318,216,229,445 -1148319,153,160,313 -1148320,191,187,378 -1148321,243,261,504 -1148322,309,343,652 -1148323,186,178,364 -1148324,288,264,552 -1148325,259,259,518 -1148326,135,120,255 -1148327,104,104,208 -1148328,171,174,345 -1148329,272,299,571 -1148330,265,287,552 -1148331,269,242,511 -1148332,309,301,610 -1148333,293,246,539 -1148334,12,3,15 -1148335,222,222,444 -1148336,189,203,392 -1148337,221,231,452 -1148338,208,207,415 -1148339,239,235,474 -1148340,292,293,585 -1148341,190,196,386 -1148342,339,314,653 -1148401,315,317,632 -1148402,255,227,482 -1148403,356,362,718 -1148404,223,222,445 -1148405,214,258,472 -1148406,345,364,709 -1148407,201,198,399 -1148408,249,226,475 -1148409,184,354,538 -1148410,236,229,465 -1148411,146,152,298 -1148412,159,193,352 -1148413,294,311,605 -1148414,226,199,425 -1148415,208,221,429 -1148416,216,219,435 -1148417,112,108,220 -1148418,0,0,0 -1148419,235,263,498 -1148420,266,273,539 -1148421,255,300,555 -1148422,139,135,274 -1148423,243,271,514 -1148424,194,198,392 -1148425,211,204,415 -1148426,195,172,367 -1148427,239,245,484 -1148428,223,208,431 -1148429,204,206,410 -1148430,237,251,488 -1148431,215,216,431 -1148432,234,243,477 -1148433,206,188,394 -1148434,205,210,415 -1148435,236,232,468 -1148436,174,189,363 -1148437,334,313,647 -1148438,193,187,380 -1148439,165,184,349 -1148440,257,242,499 -1148441,238,250,488 -1148442,299,338,637 -1148501,202,223,425 -1148502,220,237,457 -1148503,281,295,576 -1148504,258,255,513 -1148505,230,235,465 -1148506,162,154,316 -1148507,196,205,401 -1148508,201,241,442 -1148509,225,261,486 -1148510,204,201,405 -1148511,246,240,486 -1148512,288,287,575 -1148513,228,216,444 -1148514,257,262,519 -1148515,144,138,282 -1148516,273,281,554 -1148517,214,221,435 -1148518,205,220,425 -1148519,255,248,503 -1148520,196,185,381 -1148521,263,239,502 -1148522,244,263,507 -1148523,160,162,322 -1148524,203,216,419 -1148525,153,162,315 -1148526,415,406,821 -1148527,114,110,224 -1148528,218,222,440 -1148529,225,227,452 -1148530,207,201,408 -1148531,224,232,456 -1148532,242,255,497 -1148533,253,252,505 -1148534,166,180,346 -1148535,248,263,511 -1148536,262,253,515 -1148537,183,174,357 -1148538,283,286,569 -1148539,206,222,428 -1148540,205,184,389 -1148541,289,253,542 -1148542,284,292,576 -1148543,187,219,406 -1148544,200,191,391 -1148545,184,195,379 -1148546,201,168,369 -1148547,308,324,632 -1148548,136,151,287 -1148549,257,271,528 -1148550,234,236,470 -1148551,258,254,512 -1148552,183,196,379 -1148553,237,213,450 -1148554,174,185,359 -1148555,143,132,275 -1148556,247,210,457 -1148557,151,170,321 -1148558,206,215,421 -1148601,4,0,4 -1148701,4,4,8 -1148801,124,121,245 -1148802,278,278,556 -1148803,244,205,449 -1148804,291,260,551 -1148805,282,252,534 -1148806,114,127,241 -1148807,210,201,411 -1148808,162,176,338 -1148809,256,277,533 -1148810,177,152,329 -1148811,307,294,601 -1148812,0,3,3 -1148813,196,214,410 -1148814,186,209,395 -1148815,277,280,557 -1148816,156,166,322 -1148817,321,332,653 -1148818,162,170,332 -1148819,156,145,301 -1148820,140,125,265 -1148821,183,173,356 -1148822,202,213,415 -1148823,283,270,553 -1148824,251,283,534 -1148825,224,203,427 -1148826,233,234,467 -1148827,250,265,515 -1148828,272,285,557 -1148829,122,108,230 -1148830,292,286,578 -1148831,239,210,449 -1148832,263,232,495 -1148833,188,173,361 -1148834,301,346,647 -1148835,141,127,268 -1148836,242,229,471 -1148837,208,153,361 -1148838,242,224,466 -1148839,303,310,613 -1148840,128,139,267 -1148841,166,194,360 -1148842,147,146,293 -1148843,180,197,377 -1148844,220,249,469 -1148845,297,284,581 -1148846,117,113,230 -1148847,204,207,411 -1148848,258,282,540 -1148849,189,170,359 -1148850,189,338,527 -1148851,227,212,439 -1148852,260,258,518 -1148853,302,311,613 -1148854,114,113,227 -1148855,174,187,361 -1148856,129,130,259 -1148857,188,211,399 -1148858,189,194,383 -1148859,164,164,328 -1148860,211,202,413 -1148861,221,204,425 -1148862,127,107,234 -1148901,278,263,541 -1148902,262,264,526 -1148903,177,189,366 -1148904,341,333,674 -1148905,109,120,229 -1148906,174,191,365 -1148907,134,213,347 -1148908,126,141,267 -1148909,127,133,260 -1148910,220,202,422 -1148911,248,245,493 -1148912,154,155,309 -1148913,271,250,521 -1148914,471,81,552 -1148915,238,236,474 -1148916,239,275,514 -1148917,140,259,399 -1148918,135,120,255 -1148919,208,226,434 -1148920,292,306,598 -1148921,201,186,387 -1148922,273,241,514 -1148923,282,228,510 -1148924,159,167,326 -1148925,174,164,338 -1148926,239,289,528 -1148927,368,128,496 -1148928,251,230,481 -1148929,148,168,316 -1148930,130,121,251 -1148931,179,216,395 -1148932,173,166,339 -1148933,155,141,296 -1148934,177,189,366 -1148935,166,176,342 -1148936,125,122,247 -1148937,256,233,489 -1148938,153,142,295 -1148939,125,141,266 -1148940,160,164,324 -1148941,316,329,645 -1148942,193,177,370 -1148943,151,132,283 -1148944,244,260,504 -1148945,159,202,361 -1148946,342,301,643 -1148947,179,161,340 -1148948,159,183,342 -1148949,110,132,242 -1148950,252,252,504 -1149001,256,264,520 -1149002,240,234,474 -1149003,143,163,306 -1149004,179,187,366 -1149005,132,140,272 -1149006,219,217,436 -1149007,261,241,502 -1149008,173,177,350 -1149009,230,238,468 -1149010,169,173,342 -1149011,157,165,322 -1149012,162,165,327 -1149013,222,214,436 -1149014,173,170,343 -1149015,254,260,514 -1149016,257,247,504 -1149017,268,331,599 -1149018,276,265,541 -1149101,150,166,316 -1149102,207,226,433 -1149103,223,261,484 -1149104,4,0,4 -1149105,230,210,440 -1149106,732,698,1430 -1149107,372,353,725 -1149108,326,342,668 -1149109,384,374,758 -1149110,90,111,201 -1149111,279,278,557 -1149112,220,183,403 -1149113,178,172,350 -1149114,228,239,467 -1149115,301,271,572 -1149116,348,358,706 -1149117,208,237,445 -1149118,254,241,495 -1149119,187,215,402 -1149120,175,272,447 -1149121,174,200,374 -1149122,170,169,339 -1149123,198,206,404 -1149124,184,197,381 -1149125,177,201,378 -1149126,174,187,361 -1149127,0,0,0 -1149128,183,188,371 -1149129,290,310,600 -1149130,194,197,391 -1149131,380,408,788 -1149132,569,579,1148 -1149133,266,298,564 -1149134,136,141,277 -1149135,285,318,603 -1149201,326,325,651 -1149202,182,157,339 -1149203,224,219,443 -1149204,820,722,1542 -1149205,162,147,309 -1149206,91,91,182 -1149207,211,188,399 -1149208,217,211,428 -1149209,0,0,0 -1149210,5,0,5 -1149211,418,359,777 -1149212,229,201,430 -1149213,226,220,446 -1149214,185,151,336 -1149215,256,200,456 -1149216,149,133,282 -1149217,249,235,484 -1149218,182,156,338 -1149219,344,255,599 -1149220,277,221,498 -1149221,257,182,439 -1149222,124,115,239 -1149223,189,174,363 -1149224,149,160,309 -1149225,207,161,368 -1149226,123,109,232 -1149227,242,217,459 -1149228,308,292,600 -1149229,267,213,480 -1149230,215,197,412 -1149231,215,172,387 -1149232,318,266,584 -1149233,214,224,438 -1149234,355,315,670 -1149235,450,352,802 -1149236,201,216,417 -1149237,256,210,466 -1149238,227,207,434 -1149239,107,93,200 -1149240,201,162,363 -1149241,252,191,443 -1149242,358,318,676 -1149243,198,192,390 -1149244,217,210,427 -1149245,181,148,329 -1149246,193,193,386 -1149247,231,212,443 -1149248,309,280,589 -1149249,276,286,562 -1149250,219,198,417 -1149251,249,179,428 -1149301,158,162,320 -1149302,218,241,459 -1149303,203,285,488 -1149304,216,247,463 -1149305,224,206,430 -1149306,239,261,500 -1149307,286,289,575 -1149308,250,430,680 -1149309,220,229,449 -1149310,167,182,349 -1149311,177,196,373 -1149312,305,286,591 -1149313,216,219,435 -1149314,179,171,350 -1149315,274,278,552 -1149316,178,171,349 -1149317,239,235,474 -1149318,120,150,270 -1149319,4,4,8 -1149320,271,256,527 -1149321,196,198,394 -1149322,218,208,426 -1149323,207,196,403 -1149324,236,265,501 -1149325,199,217,416 -1149326,173,167,340 -1149327,116,122,238 -1149328,145,154,299 -1149329,202,183,385 -1149330,165,174,339 -1149331,225,222,447 -1149332,220,213,433 -1149333,187,176,363 -1149334,185,223,408 -1149335,268,299,567 -1149336,251,253,504 -1149337,225,228,453 -1149338,228,230,458 -1149339,227,257,484 -1149340,303,292,595 -1149341,272,281,553 -1149342,257,268,525 -1149343,137,140,277 -1149344,352,330,682 -1149345,365,364,729 -1149346,193,213,406 -1149347,215,228,443 -1149401,191,189,380 -1149402,145,152,297 -1149403,192,201,393 -1149404,261,239,500 -1149405,228,233,461 -1149406,129,152,281 -1149407,226,221,447 -1149408,316,307,623 -1149409,214,228,442 -1149410,208,198,406 -1149411,218,209,427 -1149412,180,153,333 -1149413,176,200,376 -1149414,118,135,253 -1149415,143,168,311 -1149416,152,281,433 -1149417,226,253,479 -1149418,201,195,396 -1149419,151,149,300 -1149420,220,210,430 -1149421,244,252,496 -1149422,170,168,338 -1149423,198,181,379 -1149424,217,223,440 -1149425,245,263,508 -1149426,116,123,239 -1149501,197,225,422 -1149502,180,191,371 -1149503,262,284,546 -1149504,186,189,375 -1149505,206,242,448 -1149506,293,298,591 -1149507,170,187,357 -1149508,295,309,604 -1149509,235,228,463 -1149510,285,298,583 -1149511,310,347,657 -1149512,180,184,364 -1149513,244,269,513 -1149514,213,204,417 -1149515,203,247,450 -1149516,192,181,373 -1149517,224,223,447 -1149518,235,259,494 -1149519,185,184,369 -1149520,188,177,365 -1149521,172,169,341 -1149522,172,172,344 -1149523,273,272,545 -1149524,264,309,573 -1149525,178,183,361 -1149526,238,234,472 -1149527,194,191,385 -1149528,237,229,466 -1149529,229,233,462 -1149530,249,258,507 -1149531,243,259,502 -1149532,197,213,410 -1149533,178,197,375 -1149534,254,241,495 -1149535,122,148,270 -1149536,124,153,277 -1149537,170,165,335 -1149538,139,159,298 -1149539,254,293,547 -1149540,214,184,398 -1149541,187,178,365 -1149542,300,305,605 -1149543,168,170,338 -1149544,180,192,372 -1149545,137,171,308 -1149546,261,280,541 -1149547,106,92,198 -1149548,128,122,250 -1149549,116,110,226 -1149550,179,190,369 -1149551,175,176,351 -1149552,182,206,388 -1149553,176,203,379 -1149554,226,202,428 -1149555,128,125,253 -1149556,105,133,238 -1149557,114,131,245 -1149558,82,76,158 -1149601,222,208,430 -1149602,138,148,286 -1149603,153,179,332 -1149604,186,190,376 -1149605,129,110,239 -1149606,167,178,345 -1149607,160,156,316 -1149608,230,240,470 -1149609,158,179,337 -1149610,216,214,430 -1149611,0,0,0 -1149612,4,4,8 -1149613,130,133,263 -1149614,233,254,487 -1149615,225,235,460 -1149616,135,143,278 -1149617,196,260,456 -1149618,329,349,678 -1149619,185,182,367 -1149620,163,193,356 -1149621,224,235,459 -1149622,287,296,583 -1149623,200,229,429 -1149624,226,258,484 -1149625,135,145,280 -1149626,126,107,233 -1149627,299,328,627 -1149628,294,325,619 -1149629,176,278,454 -1149630,201,235,436 -1149631,206,244,450 -1149632,231,253,484 -1149633,189,233,422 -1149634,172,194,366 -1149635,233,254,487 -1149636,134,147,281 -1149637,212,211,423 -1149638,209,225,434 -1149639,120,121,241 -1149640,189,204,393 -1149641,220,238,458 -1149642,211,222,433 -1149643,191,215,406 -1149644,187,177,364 -1149645,128,136,264 -1149646,223,231,454 -1149647,295,307,602 -1149648,183,184,367 -1149649,148,156,304 -1149650,141,130,271 -1149701,255,236,491 -1149702,217,223,440 -1149703,220,210,430 -1149704,263,246,509 -1149705,258,263,521 -1149706,320,321,641 -1149707,242,219,461 -1149708,214,250,464 -1149709,123,121,244 -1149710,196,192,388 -1149711,207,214,421 -1149712,211,253,464 -1149713,227,243,470 -1149714,110,121,231 -1149715,189,190,379 -1149716,186,205,391 -1149717,384,370,754 -1149718,151,146,297 -1149719,191,211,402 -1149720,245,277,522 -1149721,206,230,436 -1149722,205,208,413 -1149723,139,169,308 -1149724,226,237,463 -1149725,279,267,546 -1149726,244,277,521 -1149727,166,180,346 -1149728,202,231,433 -1149729,240,290,530 -1149730,233,229,462 -1149731,215,204,419 -1149732,183,190,373 -1149733,149,161,310 -1149734,228,221,449 -1149735,237,237,474 -1149736,219,218,437 -1149737,291,312,603 -1149738,192,233,425 -1149739,262,285,547 -1149740,196,188,384 -1149741,158,166,324 -1149742,241,251,492 -1149743,252,271,523 -1149744,195,211,406 -1149745,250,238,488 -1149746,113,136,249 -1149747,176,174,350 -1149748,103,117,220 -1149749,94,108,202 -1149750,248,259,507 -1149751,271,265,536 -1149752,172,185,357 -1149753,138,146,284 -1149754,118,131,249 -1149801,150,231,381 -1149802,243,275,518 -1149803,237,216,453 -1149804,149,167,316 -1149805,215,221,436 -1149806,216,245,461 -1149807,179,173,352 -1149808,67,68,135 -1149809,189,188,377 -1149810,342,394,736 -1149811,37,46,83 -1149812,219,255,474 -1149813,265,250,515 -1149814,206,205,411 -1149815,111,126,237 -1149816,192,228,420 -1149817,230,271,501 -1149818,177,216,393 -1149819,190,211,401 -1149820,214,240,454 -1149821,136,144,280 -1149822,146,157,303 -1149823,112,122,234 -1149824,210,235,445 -1149825,155,153,308 -1149826,174,206,380 -1149827,173,187,360 -1149828,151,173,324 -1149829,230,206,436 -1149830,213,246,459 -1149831,232,260,492 -1149832,127,118,245 -1149833,245,245,490 -1149834,173,178,351 -1149835,125,145,270 -1149901,157,203,360 -1149902,197,262,459 -1149903,195,217,412 -1149904,267,282,549 -1149905,154,233,387 -1149906,179,199,378 -1149907,223,234,457 -1149908,559,0,559 -1149909,150,152,302 -1149910,184,219,403 -1149911,254,289,543 -1149912,243,217,460 -1149913,179,312,491 -1149914,132,175,307 -1149915,170,237,407 -1149916,193,211,404 -1149917,99,103,202 -1149918,210,210,420 -1149919,256,234,490 -1149920,172,186,358 -1149921,146,150,296 -1149922,228,240,468 -1149923,136,133,269 -1149924,215,207,422 -1150001,11,8,19 -1150002,7,5,12 -1150003,280,288,568 -1150004,196,180,376 -1150005,114,112,226 -1150006,302,309,611 -1150007,311,321,632 -1150008,83,96,179 -1150009,276,312,588 -1150010,232,276,508 -1150011,341,342,683 -1150012,132,195,327 -1150013,337,353,690 -1150014,180,181,361 -1150015,281,276,557 -1150016,173,171,344 -1150017,290,291,581 -1150018,320,320,640 -1150019,263,297,560 -1150020,167,177,344 -1150021,147,349,496 -1150022,182,181,363 -1150023,157,198,355 -1150024,286,299,585 -1150025,216,236,452 -1150026,194,291,485 -1150027,228,296,524 -1150028,229,261,490 -1150029,178,166,344 -1150030,164,154,318 -1150031,225,240,465 -1150032,175,160,335 -1150033,353,361,714 -1150034,162,174,336 -1150035,76,108,184 -1150036,269,277,546 -1150037,186,182,368 -1150038,157,290,447 -1150039,195,206,401 -1150040,163,223,386 -1150041,174,259,433 -1150042,116,133,249 -1150043,186,213,399 -1150101,233,234,467 -1150102,249,243,492 -1150103,135,150,285 -1150104,252,289,541 -1150105,279,280,559 -1150106,201,188,389 -1150107,280,287,567 -1150108,139,163,302 -1150109,218,250,468 -1150110,259,278,537 -1150111,219,196,415 -1150112,116,154,270 -1150113,192,224,416 -1150114,0,0,0 -1150115,275,291,566 -1150116,199,234,433 -1150117,143,173,316 -1150118,168,181,349 -1150119,152,75,227 -1150120,116,112,228 -1150121,177,204,381 -1150122,173,212,385 -1150123,284,294,578 -1150124,192,206,398 -1150125,0,0,0 -1150126,112,124,236 -1150127,28,17,45 -1150128,241,246,487 -1150129,151,152,303 -1150130,190,190,380 -1150131,234,241,475 -1150132,242,249,491 -1150201,214,230,444 -1150202,168,178,346 -1150203,301,283,584 -1150204,263,250,513 -1150205,200,213,413 -1150206,173,176,349 -1150207,209,247,456 -1150208,159,151,310 -1150209,142,165,307 -1150210,160,150,310 -1150211,244,261,505 -1150212,256,228,484 -1150213,206,204,410 -1150214,255,263,518 -1150215,302,318,620 -1150216,141,138,279 -1150217,155,151,306 -1150218,187,171,358 -1150219,132,154,286 -1150220,221,224,445 -1150221,173,193,366 -1150222,170,189,359 -1150223,165,176,341 -1150224,65,190,255 -1150225,166,177,343 -1150226,194,204,398 -1150227,285,270,555 -1150228,221,240,461 -1150229,158,166,324 -1150230,245,249,494 -1150231,220,230,450 -1150232,254,268,522 -1150233,124,122,246 -1150234,282,270,552 -1150235,197,236,433 -1150236,172,219,391 -1150237,244,252,496 -1150238,296,314,610 -1150239,292,285,577 -1150240,231,233,464 -1150241,237,275,512 -1150242,237,237,474 -1150243,173,206,379 -1150244,231,236,467 -1150245,334,326,660 -1150246,272,277,549 -1150247,293,315,608 -1150248,262,254,516 -1150249,183,201,384 -1150250,215,241,456 -1150251,180,190,370 -1150252,270,300,570 -1150253,722,753,1475 -1150254,226,235,461 -1150255,170,152,322 -1150256,271,254,525 -1150257,277,262,539 -1150301,53,64,117 -1150302,173,163,336 -1150303,200,222,422 -1150304,232,206,438 -1150305,167,162,329 -1150306,240,243,483 -1150307,307,331,638 -1150308,224,232,456 -1150309,261,288,549 -1150310,214,234,448 -1150311,209,233,442 -1150312,249,240,489 -1150313,122,129,251 -1150314,353,357,710 -1150315,291,277,568 -1150316,165,138,303 -1150317,104,136,240 -1150318,139,149,288 -1150319,315,307,622 -1150320,237,227,464 -1150321,76,83,159 -1150322,173,167,340 -1150323,241,250,491 -1150324,293,285,578 -1150325,91,108,199 -1150326,216,240,456 -1150327,230,241,471 -1150328,258,254,512 -1150329,0,0,0 -1150330,222,209,431 -1150331,161,151,312 -1150332,710,692,1402 -1150333,255,258,513 -1150334,249,242,491 -1150335,254,264,518 -1150336,255,260,515 -1150337,282,301,583 -1150338,216,210,426 -1150401,284,319,603 -1150402,178,168,346 -1150403,213,220,433 -1150404,132,175,307 -1150405,123,116,239 -1150406,317,328,645 -1150407,179,182,361 -1150408,180,217,397 -1150409,204,157,361 -1150410,166,185,351 -1150411,231,262,493 -1150412,213,220,433 -1150413,241,222,463 -1150414,163,196,359 -1150415,189,184,373 -1150416,136,122,258 -1150417,212,213,425 -1150418,233,240,473 -1150419,194,181,375 -1150420,225,193,418 -1150421,155,169,324 -1150422,278,299,577 -1150423,227,221,448 -1150424,335,373,708 -1150425,208,237,445 -1150426,178,163,341 -1150427,180,170,350 -1150428,288,295,583 -1150429,251,301,552 -1150430,196,206,402 -1150431,3,0,3 -1150432,106,114,220 -1150433,173,171,344 -1150434,199,246,445 -1150435,98,111,209 -1150436,105,108,213 -1150437,145,132,277 -1150438,338,374,712 -1150439,263,278,541 -1150440,149,168,317 -1150441,259,258,517 -1150501,253,235,488 -1150502,202,180,382 -1150503,191,241,432 -1150504,290,300,590 -1150505,291,262,553 -1150506,157,151,308 -1150507,124,116,240 -1150508,166,164,330 -1150509,290,261,551 -1150510,239,245,484 -1150511,299,267,566 -1150512,181,167,348 -1150513,217,212,429 -1150514,180,160,340 -1150515,241,214,455 -1150516,257,240,497 -1150517,141,140,281 -1150518,275,265,540 -1150519,360,334,694 -1150520,370,383,753 -1150521,167,185,352 -1150522,139,130,269 -1150601,210,168,378 -1150602,105,90,195 -1150603,199,184,383 -1150604,284,252,536 -1150605,343,339,682 -1150606,173,157,330 -1150607,113,125,238 -1150608,50,50,100 -1150609,202,173,375 -1150610,168,142,310 -1150611,183,209,392 -1150612,186,161,347 -1150613,161,151,312 -1150614,169,148,317 -1150615,168,148,316 -1150616,173,175,348 -1150617,182,185,367 -1150618,247,246,493 -1150701,302,330,632 -1150702,147,151,298 -1150703,239,240,479 -1150704,227,231,458 -1150705,77,81,158 -1150706,111,115,226 -1150707,0,0,0 -1150708,179,179,358 -1150709,171,161,332 -1150710,270,296,566 -1150711,116,138,254 -1150712,156,158,314 -1150713,289,279,568 -1150714,275,273,548 -1150715,233,246,479 -1150716,261,260,521 -1150717,193,214,407 -1150718,280,265,545 -1150719,236,258,494 -1150720,188,204,392 -1150721,293,303,596 -1150722,159,168,327 -1150723,205,221,426 -1150724,281,288,569 -1150725,249,254,503 -1150726,167,182,349 -1150727,261,291,552 -1150728,210,201,411 -1150729,299,313,612 -1150730,63,62,125 -1150731,137,140,277 -1150732,133,141,274 -1150733,131,127,258 -1150734,157,149,306 -1150735,233,212,445 -1150736,193,227,420 -1150737,151,152,303 -1150738,104,125,229 -1150739,236,234,470 -1150740,230,226,456 -1150741,224,216,440 -1150742,165,172,337 -1150743,144,143,287 -1150744,128,130,258 -1150745,274,277,551 -1150746,136,158,294 -1150747,243,271,514 -1150748,286,302,588 -1150749,181,168,349 -1150750,245,258,503 -1150751,186,189,375 -1150752,263,289,552 -1150753,262,237,499 -1150754,202,222,424 -1150755,202,216,418 -1150756,146,133,279 -1150757,144,145,289 -1150758,251,240,491 -1150759,227,248,475 -1150760,146,148,294 -1150761,223,268,491 -1150762,167,141,308 -1150763,184,171,355 -1150764,178,193,371 -1150765,350,316,666 -1150766,167,166,333 -1150767,219,249,468 -1150768,150,155,305 -1150769,164,155,319 -1150770,319,348,667 -1150771,152,169,321 -1150801,205,211,416 -1150802,413,411,824 -1150803,383,384,767 -1150804,146,141,287 -1150805,262,287,549 -1150806,248,271,519 -1150807,301,287,588 -1150808,241,259,500 -1150809,240,249,489 -1150810,236,232,468 -1150811,282,272,554 -1150812,325,347,672 -1150813,295,303,598 -1150814,252,266,518 -1150815,139,131,270 -1150816,170,166,336 -1150817,174,188,362 -1150818,175,172,347 -1150819,279,236,515 -1150820,264,265,529 -1150821,230,243,473 -1150822,141,136,277 -1150823,192,208,400 -1150824,209,221,430 -1150825,174,163,337 -1150826,239,238,477 -1150827,225,222,447 -1150828,296,322,618 -1150829,210,244,454 -1150830,184,203,387 -1150831,207,217,424 -1150832,485,488,973 -1150833,241,226,467 -1150834,220,248,468 -1150835,144,123,267 -1150836,254,251,505 -1150837,149,177,326 -1150838,172,179,351 -1150839,231,207,438 -1150901,110,110,220 -1150902,321,306,627 -1150903,232,231,463 -1150904,224,210,434 -1150905,197,225,422 -1150906,251,245,496 -1150907,279,235,514 -1150908,247,252,499 -1150909,348,373,721 -1150910,259,253,512 -1150911,235,238,473 -1150912,215,225,440 -1150913,261,276,537 -1150914,185,202,387 -1150915,292,313,605 -1150916,155,150,305 -1150917,167,171,338 -1150918,161,172,333 -1150919,259,279,538 -1150920,304,297,601 -1150921,152,173,325 -1150922,198,209,407 -1150923,177,177,354 -1150924,162,184,346 -1150925,242,235,477 -1150926,114,126,240 -1150927,161,167,328 -1150928,14,4,18 -1150929,202,229,431 -1150930,189,169,358 -1150931,169,180,349 -1150932,150,207,357 -1150933,223,226,449 -1150934,116,126,242 -1150935,198,277,475 -1150936,274,314,588 -1151001,241,250,491 -1151002,151,161,312 -1151003,163,147,310 -1151004,233,278,511 -1151005,262,255,517 -1151006,279,282,561 -1151007,242,231,473 -1151008,176,168,344 -1151009,209,194,403 -1151010,127,113,240 -1151011,154,161,315 -1151012,159,149,308 -1151013,178,151,329 -1151014,231,237,468 -1151015,147,150,297 -1151016,203,192,395 -1151017,232,227,459 -1151018,236,239,475 -1151019,257,252,509 -1151020,107,106,213 -1151021,172,177,349 -1151022,164,149,313 -1151023,0,0,0 -1151024,249,203,452 -1151025,0,3,3 -1151026,141,151,292 -1151027,168,180,348 -1151028,95,79,174 -1151029,164,178,342 -1151030,269,232,501 -1151031,245,259,504 -1151032,173,186,359 -1151033,264,286,550 -1151034,205,203,408 -1151035,146,135,281 -1151036,291,298,589 -1151037,221,214,435 -1151038,165,158,323 -1151039,173,181,354 -1151040,162,141,303 -1151041,136,146,282 -1151042,180,180,360 -1151043,102,127,229 -1151044,229,265,494 -1151045,284,271,555 -1151046,214,199,413 -1151047,225,204,429 -1151048,198,188,386 -1151049,128,144,272 -1151101,244,250,494 -1151102,3,10,13 -1151103,219,191,410 -1151104,156,165,321 -1151105,90,113,203 -1151106,263,228,491 -1151107,216,283,499 -1151108,239,257,496 -1151109,81,82,163 -1151110,234,219,453 -1151111,269,279,548 -1151112,269,279,548 -1151113,238,256,494 -1151114,221,214,435 -1151115,250,263,513 -1151116,207,220,427 -1151117,256,277,533 -1151118,276,275,551 -1151119,178,198,376 -1151120,173,158,331 -1151121,164,133,297 -1151122,291,339,630 -1151123,171,168,339 -1151124,130,150,280 -1151125,160,176,336 -1151126,170,198,368 -1151127,228,256,484 -1151128,268,370,638 -1151129,168,188,356 -1151130,293,303,596 -1151131,90,115,205 -1151132,203,195,398 -1151133,76,85,161 -1151134,223,271,494 -1151135,244,262,506 -1151136,311,352,663 -1151137,293,268,561 -1151138,198,205,403 -1151139,272,226,498 -1151140,119,122,241 -1151141,329,308,637 -1151142,133,120,253 -1151143,271,233,504 -1151144,235,220,455 -1151145,145,130,275 -1151146,165,198,363 -1151147,165,207,372 -1151148,220,240,460 -1151149,238,252,490 -1151150,294,295,589 -1151151,121,113,234 -1151152,190,214,404 -1151153,132,148,280 -1151154,251,263,514 -1151155,251,273,524 -1151156,128,148,276 -1151201,151,138,289 -1151202,180,195,375 -1151203,152,151,303 -1151204,297,297,594 -1151205,222,203,425 -1151206,209,210,419 -1151207,146,158,304 -1151208,100,107,207 -1151209,206,180,386 -1151210,197,203,400 -1151211,287,301,588 -1151212,217,224,441 -1151213,227,228,455 -1151214,167,165,332 -1151215,229,218,447 -1151216,221,249,470 -1151217,162,157,319 -1151218,259,292,551 -1151219,163,187,350 -1151220,273,343,616 -1151221,246,220,466 -1151222,207,204,411 -1151223,231,239,470 -1151224,163,178,341 -1151225,192,195,387 -1151226,231,226,457 -1151227,200,227,427 -1151228,209,231,440 -1151229,289,279,568 -1151230,233,249,482 -1151231,194,237,431 -1151232,278,230,508 -1151233,244,253,497 -1151234,213,233,446 -1151235,245,255,500 -1151236,150,172,322 -1151237,186,213,399 -1151301,192,244,436 -1151302,116,132,248 -1151303,98,95,193 -1151304,192,196,388 -1151305,133,123,256 -1151306,222,241,463 -1151307,196,230,426 -1151308,299,284,583 -1151309,258,257,515 -1151310,214,218,432 -1151311,243,241,484 -1151312,162,161,323 -1151313,195,205,400 -1151314,243,240,483 -1151315,224,240,464 -1151316,241,257,498 -1151317,105,126,231 -1151318,200,237,437 -1151319,189,181,370 -1151320,244,248,492 -1151321,123,148,271 -1151322,254,261,515 -1151323,180,225,405 -1151324,196,250,446 -1151325,180,177,357 -1151326,287,253,540 -1151327,131,136,267 -1151328,170,173,343 -1151329,101,107,208 -1151330,130,132,262 -1151331,236,248,484 -1151332,238,203,441 -1151333,164,180,344 -1151334,203,196,399 -1151335,285,314,599 -1151336,252,273,525 -1151337,288,283,571 -1151338,254,291,545 -1151339,213,229,442 -1151340,179,182,361 -1151341,181,173,354 -1151342,376,410,786 -1151343,234,215,449 -1151344,232,217,449 -1151345,183,182,365 -1151346,110,96,206 -1151347,120,131,251 -1151348,131,143,274 -1151401,121,125,246 -1151402,197,218,415 -1151403,237,231,468 -1151404,116,106,222 -1151405,268,279,547 -1151406,230,242,472 -1151407,314,317,631 -1151408,190,197,387 -1151409,142,138,280 -1151410,258,243,501 -1151411,133,148,281 -1151412,255,253,508 -1151413,241,220,461 -1151414,260,268,528 -1151415,204,195,399 -1151416,241,252,493 -1151417,291,312,603 -1151418,226,229,455 -1151419,163,187,350 -1151420,206,213,419 -1151421,199,178,377 -1151422,195,207,402 -1151501,168,159,327 -1151502,192,204,396 -1151503,116,137,253 -1151504,263,280,543 -1151505,168,172,340 -1151506,148,142,290 -1151507,165,219,384 -1151508,105,101,206 -1151509,237,268,505 -1151510,152,130,282 -1151511,158,159,317 -1151512,324,314,638 -1151513,107,102,209 -1151514,148,152,300 -1151515,226,257,483 -1151516,215,214,429 -1151517,294,293,587 -1151518,120,140,260 -1151519,154,170,324 -1151520,251,248,499 -1151521,166,156,322 -1151522,159,166,325 -1151523,200,194,394 -1151524,149,152,301 -1151525,141,162,303 -1151526,153,189,342 -1151527,165,184,349 -1151528,200,221,421 -1151529,203,175,378 -1151530,143,132,275 -1151531,220,247,467 -1151532,249,226,475 -1151533,214,238,452 -1151534,353,357,710 -1151535,159,171,330 -1151536,184,183,367 -1151537,140,155,295 -1151538,180,195,375 -1151539,127,132,259 -1151540,124,146,270 -1151541,282,274,556 -1151542,161,157,318 -1151543,228,246,474 -1151544,238,292,530 -1151601,195,201,396 -1151602,200,220,420 -1151603,313,328,641 -1151604,205,226,431 -1151605,300,287,587 -1151606,180,180,360 -1151607,252,275,527 -1151608,264,254,518 -1151609,195,205,400 -1151610,230,232,462 -1151611,239,229,468 -1151612,258,283,541 -1151613,231,234,465 -1151614,285,321,606 -1151615,240,254,494 -1151616,192,218,410 -1151617,161,157,318 -1151618,209,227,436 -1151619,280,292,572 -1151620,186,202,388 -1151621,241,305,546 -1151622,261,251,512 -1151623,254,257,511 -1151624,211,287,498 -1151625,276,295,571 -1151626,274,274,548 -1151627,246,261,507 -1151628,210,208,418 -1151629,142,144,286 -1151630,185,189,374 -1151631,223,243,466 -1151632,150,142,292 -1151633,199,217,416 -1151634,231,267,498 -1151635,288,282,570 -1151636,101,83,184 -1151637,168,157,325 -1151638,202,237,439 -1151701,181,166,347 -1151702,187,209,396 -1151703,143,123,266 -1151704,288,261,549 -1151705,236,232,468 -1151706,170,160,330 -1151707,161,155,316 -1151708,203,231,434 -1151709,258,245,503 -1151710,168,197,365 -1151711,225,262,487 -1151712,315,382,697 -1151713,177,191,368 -1151714,158,174,332 -1151715,198,191,389 -1151716,0,0,0 -1151717,240,251,491 -1151718,136,138,274 -1151719,144,151,295 -1151720,113,115,228 -1151721,108,123,231 -1151801,207,204,411 -1151802,281,242,523 -1151803,197,191,388 -1151804,164,151,315 -1151805,232,228,460 -1151806,181,149,330 -1151807,155,144,299 -1151808,136,188,324 -1151809,104,94,198 -1151810,145,131,276 -1151811,218,234,452 -1151812,178,161,339 -1151901,228,226,454 -1151902,225,224,449 -1151903,188,188,376 -1151904,259,288,547 -1151905,303,326,629 -1151906,235,232,467 -1151907,170,153,323 -1151908,91,104,195 -1151909,214,238,452 -1151910,146,154,300 -1151911,133,123,256 -1151912,348,301,649 -1151913,174,164,338 -1151914,271,280,551 -1151915,229,290,519 -1151916,145,143,288 -1151917,180,186,366 -1151918,212,200,412 -1151919,372,414,786 -1151920,327,335,662 -1151921,203,183,386 -1151922,106,109,215 -1151923,308,297,605 -1151924,142,166,308 -1151925,356,282,638 -1151926,167,191,358 -1151927,158,149,307 -1151928,245,251,496 -1151929,199,207,406 -1151930,248,241,489 -1151931,128,138,266 -1151932,179,171,350 -1151933,280,247,527 -1151934,229,192,421 -1151935,131,143,274 -1151936,177,191,368 -1151937,240,248,488 -1151938,277,291,568 -1151939,264,257,521 -1151940,6,7,13 -1152001,222,218,440 -1152002,272,274,546 -1152003,187,172,359 -1152004,258,258,516 -1152005,160,153,313 -1152006,129,137,266 -1152007,139,152,291 -1152008,173,191,364 -1152009,256,296,552 -1152010,218,226,444 -1152011,233,211,444 -1152012,146,157,303 -1152013,133,124,257 -1152014,150,187,337 -1152015,161,162,323 -1152016,170,176,346 -1152017,255,273,528 -1152018,161,180,341 -1152019,198,221,419 -1152020,250,289,539 -1152021,281,282,563 -1152022,238,268,506 -1152023,195,170,365 -1152024,320,326,646 -1152025,180,175,355 -1152026,138,128,266 -1152101,14,9,23 -1152201,245,290,535 -1152202,249,237,486 -1152203,0,0,0 -1152204,267,277,544 -1152205,0,3,3 -1152206,248,267,515 -1152207,212,211,423 -1152208,218,234,452 -1152209,159,183,342 -1152210,270,271,541 -1152211,325,346,671 -1152212,179,183,362 -1152213,147,134,281 -1152214,210,210,420 -1152215,190,214,404 -1152216,182,185,367 -1152217,157,171,328 -1152218,212,236,448 -1152219,264,366,630 -1152220,158,170,328 -1152221,113,119,232 -1152222,213,201,414 -1152223,252,254,506 -1152224,223,220,443 -1152225,268,293,561 -1152226,327,329,656 -1152227,150,174,324 -1152228,225,194,419 -1152229,168,184,352 -1152230,225,258,483 -1152231,128,133,261 -1152232,165,159,324 -1152233,298,306,604 -1152234,187,198,385 -1152235,104,117,221 -1152236,217,215,432 -1152301,0,0,0 -1152302,204,204,408 -1152303,410,422,832 -1152304,292,300,592 -1152305,193,217,410 -1152306,227,228,455 -1152307,0,0,0 -1152308,88,91,179 -1152309,3,0,3 -1152310,207,206,413 -1152311,301,315,616 -1152312,231,232,463 -1152313,148,166,314 -1152314,227,209,436 -1152315,141,149,290 -1152316,287,283,570 -1152317,150,154,304 -1152318,220,208,428 -1152319,240,240,480 -1152320,228,210,438 -1152321,293,324,617 -1152322,181,200,381 -1152323,162,155,317 -1152324,157,191,348 -1152325,0,3,3 -1152326,267,240,507 -1152327,230,240,470 -1152328,197,192,389 -1152329,259,301,560 -1152330,122,116,238 -1152331,211,205,416 -1152332,160,179,339 -1152333,0,0,0 -1152334,177,179,356 -1152335,160,237,397 -1152336,215,229,444 -1152337,124,127,251 -1152338,165,177,342 -1152339,168,154,322 -1152340,160,159,319 -1152341,58,55,113 -1152342,3,0,3 -1152343,267,279,546 -1152344,166,171,337 -1152401,154,152,306 -1152402,162,173,335 -1152403,110,103,213 -1152404,265,249,514 -1152405,233,221,454 -1152406,188,189,377 -1152407,206,203,409 -1152408,176,168,344 -1152409,182,196,378 -1152410,143,137,280 -1152411,166,153,319 -1152412,316,304,620 -1152413,283,271,554 -1152414,143,160,303 -1152415,159,169,328 -1152416,165,164,329 -1152417,214,202,416 -1152418,303,309,612 -1152419,285,259,544 -1152420,152,145,297 -1152421,253,283,536 -1152422,199,185,384 -1152423,260,260,520 -1152424,181,165,346 -1152425,238,244,482 -1152426,202,210,412 -1152427,303,305,608 -1152428,198,218,416 -1152429,189,215,404 -1152430,211,236,447 -1152431,0,0,0 -1152432,144,136,280 -1152433,138,150,288 -1152434,355,33,388 -1152435,314,276,590 -1152436,155,143,298 -1152437,110,4,114 -1152438,305,300,605 -1152439,147,151,298 -1152440,354,373,727 -1152441,190,186,376 -1152442,3,3,6 -1152443,150,161,311 -1152444,150,159,309 -1152445,199,204,403 -1152446,123,123,246 -1152447,221,215,436 -1152448,244,270,514 -1152449,230,354,584 -1152450,144,153,297 -1152501,150,158,308 -1152502,124,137,261 -1152503,200,240,440 -1152504,253,274,527 -1152505,163,168,331 -1152506,260,267,527 -1152507,244,270,514 -1152508,184,189,373 -1152509,303,304,607 -1152510,280,315,595 -1152511,187,185,372 -1152512,213,218,431 -1152513,270,274,544 -1152514,245,258,503 -1152515,208,199,407 -1152516,259,273,532 -1152517,227,255,482 -1152518,520,553,1073 -1152519,130,156,286 -1152520,287,232,519 -1152521,242,273,515 -1152522,233,339,572 -1152523,247,232,479 -1152524,222,222,444 -1152525,245,231,476 -1152526,234,237,471 -1152527,165,165,330 -1152528,298,309,607 -1152529,252,243,495 -1152530,278,264,542 -1152531,260,232,492 -1152532,144,146,290 -1152533,210,215,425 -1152534,142,170,312 -1152535,267,229,496 -1152536,223,261,484 -1152537,200,179,379 -1152538,168,176,344 -1152539,252,258,510 -1152540,170,204,374 -1152541,252,264,516 -1152542,7,0,7 -1152543,158,159,317 -1152544,173,197,370 -1152545,180,170,350 -1152546,327,336,663 -1152547,248,245,493 -1152548,236,229,465 -1152549,282,297,579 -1152550,6,3,9 -1152551,127,107,234 -1152552,135,127,262 -1152553,343,315,658 -1152554,321,253,574 -1152555,292,273,565 -1152556,279,298,577 -1152557,132,126,258 -1152558,256,266,522 -1152559,264,262,526 -1152560,199,224,423 -1152561,0,0,0 -1152562,275,271,546 -1152563,286,256,542 -1152564,220,226,446 -1152601,239,243,482 -1152602,146,175,321 -1152603,248,279,527 -1152604,150,132,282 -1152605,196,198,394 -1152606,136,124,260 -1152607,232,197,429 -1152608,113,114,227 -1152609,147,173,320 -1152610,315,307,622 -1152611,193,188,381 -1152612,254,285,539 -1152613,231,234,465 -1152614,229,205,434 -1152615,203,199,402 -1152616,254,274,528 -1152617,100,94,194 -1152618,260,272,532 -1152619,193,207,400 -1152620,49,28,77 -1152621,9,6,15 -1152622,215,200,415 -1152623,133,145,278 -1152624,194,202,396 -1152625,247,245,492 -1152626,355,320,675 -1152627,202,213,415 -1152628,208,210,418 -1152629,224,228,452 -1152630,196,201,397 -1152631,196,213,409 -1152632,229,237,466 -1152633,329,362,691 -1152634,243,239,482 -1152635,129,132,261 -1152636,224,225,449 -1152637,199,207,406 -1152638,246,263,509 -1152639,171,172,343 -1152640,223,223,446 -1152641,345,331,676 -1152642,207,191,398 -1152643,92,87,179 -1152644,251,252,503 -1152645,133,137,270 -1152646,373,393,766 -1152647,253,259,512 -1152648,220,204,424 -1152649,165,157,322 -1152650,361,341,702 -1152651,154,144,298 -1152652,231,262,493 -1152653,407,418,825 -1152654,262,268,530 -1152655,378,411,789 -1152656,241,227,468 -1152657,224,229,453 -1152658,226,349,575 -1152659,144,158,302 -1152701,125,131,256 -1152702,205,224,429 -1152703,214,225,439 -1152704,172,186,358 -1152705,136,142,278 -1152706,327,361,688 -1152707,300,295,595 -1152708,238,247,485 -1152709,154,185,339 -1152710,186,224,410 -1152711,203,302,505 -1152712,200,224,424 -1152713,151,161,312 -1152714,206,207,413 -1152715,0,0,0 -1152716,286,282,568 -1152717,8,3,11 -1152718,164,165,329 -1152719,158,165,323 -1152720,195,213,408 -1152721,126,144,270 -1152722,241,254,495 -1152723,120,135,255 -1152724,144,140,284 -1152725,273,281,554 -1152726,170,189,359 -1152727,185,206,391 -1152728,169,187,356 -1152729,229,205,434 -1152730,200,237,437 -1152731,180,204,384 -1152732,188,187,375 -1152733,300,292,592 -1152734,221,213,434 -1152735,208,215,423 -1152736,237,226,463 -1152737,211,214,425 -1152738,196,234,430 -1152739,150,146,296 -1152740,196,212,408 -1152741,190,208,398 -1152742,254,232,486 -1152743,197,200,397 -1152744,193,198,391 -1152745,159,180,339 -1152746,193,184,377 -1152747,228,228,456 -1152748,174,191,365 -1152749,238,279,517 -1152750,187,178,365 -1152751,164,176,340 -1152752,212,239,451 -1152753,230,271,501 -1152754,199,236,435 -1152755,157,191,348 -1152756,209,297,506 -1152757,276,284,560 -1152758,190,260,450 -1152759,221,223,444 -1152760,225,247,472 -1152761,106,109,215 -1152762,215,214,429 -1152763,128,90,218 -1152764,236,269,505 -1152801,153,152,305 -1152802,93,105,198 -1152803,159,163,322 -1152804,201,249,450 -1152805,242,286,528 -1152806,0,0,0 -1152807,166,174,340 -1152808,143,148,291 -1152809,102,123,225 -1152810,145,135,280 -1152811,136,126,262 -1152812,128,135,263 -1152813,149,168,317 -1152814,0,0,0 -1152815,0,0,0 -1152816,0,0,0 -1152817,151,146,297 -1152818,106,116,222 -1152819,198,195,393 -1152820,113,123,236 -1152821,325,331,656 -1152822,273,290,563 -1152823,207,201,408 -1152824,256,252,508 -1152825,177,176,353 -1152826,184,200,384 -1152827,231,211,442 -1152828,154,144,298 -1152829,174,192,366 -1152830,159,171,330 -1152831,184,176,360 -1152832,111,109,220 -1152833,198,219,417 -1152834,180,186,366 -1152835,79,86,165 -1152836,114,109,223 -1152837,142,148,290 -1152838,146,149,295 -1152839,211,220,431 -1152840,172,269,441 -1152841,139,151,290 -1152842,228,264,492 -1152843,174,185,359 -1152844,193,202,395 -1152845,177,144,321 -1152846,270,270,540 -1152847,154,157,311 -1152848,142,170,312 -1152849,0,0,0 -1152850,225,238,463 -1152851,197,206,403 -1152852,189,192,381 -1152853,268,223,491 -1152854,281,259,540 -1152855,176,163,339 -1152856,405,370,775 -1152857,263,298,561 -1152858,175,149,324 -1152859,285,286,571 -1152860,156,170,326 -1152861,0,0,0 -1152862,0,0,0 -1152863,166,207,373 -1152864,241,239,480 -1152865,128,126,254 -1152866,172,157,329 -1152867,154,166,320 -1152868,232,233,465 -1152869,273,279,552 -1152870,194,175,369 -1152871,211,217,428 -1152872,190,219,409 -1152873,115,154,269 -1152874,263,282,545 -1152875,172,172,344 -1152876,177,189,366 -1152877,227,263,490 -1152878,220,168,388 -1152879,163,125,288 -1152880,187,151,338 -1152881,290,284,574 -1152882,207,184,391 -1152883,94,84,178 -1152884,195,183,378 -1152901,171,170,341 -1152902,213,221,434 -1152903,223,223,446 -1152904,255,278,533 -1152905,209,199,408 -1152906,219,208,427 -1152907,153,162,315 -1152908,342,334,676 -1152909,171,166,337 -1152910,175,171,346 -1152911,199,215,414 -1152912,289,275,564 -1152913,139,158,297 -1152914,185,205,390 -1152915,137,148,285 -1152916,186,162,348 -1152917,204,228,432 -1152918,182,210,392 -1152919,230,250,480 -1152920,155,171,326 -1152921,222,230,452 -1152922,197,224,421 -1152923,148,202,350 -1152924,166,181,347 -1152925,197,243,440 -1152926,206,256,462 -1152927,228,230,458 -1152928,190,219,409 -1152929,206,234,440 -1152930,227,211,438 -1152931,226,245,471 -1152932,263,254,517 -1152933,142,177,319 -1152934,246,261,507 -1152935,242,244,486 -1152936,198,216,414 -1152937,198,224,422 -1152938,221,232,453 -1152939,145,147,292 -1152940,266,284,550 -1153001,225,233,458 -1153002,182,223,405 -1153003,241,231,472 -1153004,145,202,347 -1153005,176,159,335 -1153006,231,262,493 -1153007,189,187,376 -1153008,277,296,573 -1153009,129,134,263 -1153010,270,246,516 -1153011,227,221,448 -1153012,256,287,543 -1153013,139,151,290 -1153014,231,233,464 -1153015,161,150,311 -1153016,217,224,441 -1153017,145,150,295 -1153018,208,211,419 -1153019,187,223,410 -1153020,73,76,149 -1153021,190,192,382 -1153022,257,236,493 -1153023,259,255,514 -1153024,201,226,427 -1153025,201,215,416 -1153026,207,259,466 -1153027,218,233,451 -1153028,237,266,503 -1153029,280,305,585 -1153030,131,116,247 -1153031,262,313,575 -1153032,247,268,515 -1153033,160,163,323 -1153034,258,260,518 -1153035,162,202,364 -1153036,291,324,615 -1153037,239,267,506 -1153038,289,321,610 -1153039,293,326,619 -1153040,217,237,454 -1153101,0,0,0 -1153102,0,0,0 -1153103,193,188,381 -1153104,104,103,207 -1153105,294,336,630 -1153106,174,210,384 -1153107,176,192,368 -1153108,140,153,293 -1153109,220,231,451 -1153110,280,296,576 -1153111,186,218,404 -1153112,149,286,435 -1153113,259,274,533 -1153114,201,230,431 -1153115,296,296,592 -1153116,239,257,496 -1153117,255,283,538 -1153118,219,215,434 -1153119,143,134,277 -1153120,196,207,403 -1153121,214,221,435 -1153122,242,262,504 -1153123,305,429,734 -1153124,180,194,374 -1153125,190,188,378 -1153126,193,201,394 -1153127,209,200,409 -1153128,150,158,308 -1153129,152,146,298 -1153130,191,224,415 -1153131,216,222,438 -1153132,135,153,288 -1153133,170,206,376 -1153134,221,242,463 -1153135,205,204,409 -1153136,284,283,567 -1153137,224,260,484 -1153201,189,172,361 -1153202,293,289,582 -1153203,184,183,367 -1153204,206,215,421 -1153205,245,224,469 -1153206,171,171,342 -1153207,216,209,425 -1153208,4,0,4 -1153209,208,220,428 -1153210,5,0,5 -1153211,106,95,201 -1153212,108,127,235 -1153213,113,135,248 -1153214,251,311,562 -1153215,95,108,203 -1153216,186,177,363 -1153217,163,172,335 -1153218,204,247,451 -1153219,162,159,321 -1153220,266,258,524 -1153221,266,271,537 -1153222,127,126,253 -1153223,209,230,439 -1153224,198,177,375 -1153225,315,320,635 -1153226,254,257,511 -1153227,119,138,257 -1153228,225,227,452 -1153229,0,0,0 -1153230,186,180,366 -1153231,234,227,461 -1153232,240,222,462 -1153233,0,0,0 -1153234,291,295,586 -1153235,229,267,496 -1153236,268,295,563 -1153237,122,126,248 -1153238,264,258,522 -1153239,285,318,603 -1153240,207,197,404 -1153241,211,191,402 -1153242,215,220,435 -1153243,315,309,624 -1153244,233,230,463 -1153245,217,221,438 -1153246,254,216,470 -1153247,297,310,607 -1153248,221,223,444 -1153249,334,287,621 -1153250,246,238,484 -1153251,201,242,443 -1153252,305,296,601 -1153253,201,223,424 -1153254,158,164,322 -1153255,219,199,418 -1153256,124,130,254 -1153257,271,255,526 -1153258,182,180,362 -1153259,207,197,404 -1153260,136,152,288 -1153261,259,244,503 -1153262,256,266,522 -1153263,250,234,484 -1153264,227,204,431 -1153265,197,191,388 -1153266,323,325,648 -1153267,168,161,329 -1153268,163,200,363 -1153301,124,121,245 -1153302,177,185,362 -1153303,234,230,464 -1153304,8,7,15 -1153305,248,235,483 -1153306,233,398,631 -1153307,108,99,207 -1153308,303,279,582 -1153309,282,295,577 -1153310,148,120,268 -1153311,125,144,269 -1153312,177,202,379 -1153313,115,129,244 -1153314,217,197,414 -1153315,167,178,345 -1153316,184,189,373 -1153317,136,134,270 -1153318,154,179,333 -1153401,172,166,338 -1153402,0,0,0 -1153403,161,185,346 -1153404,209,221,430 -1153405,197,188,385 -1153406,255,238,493 -1153407,147,135,282 -1153408,253,286,539 -1153409,245,250,495 -1153410,111,104,215 -1153411,135,132,267 -1153412,208,203,411 -1153413,125,111,236 -1153414,279,269,548 -1153415,191,187,378 -1153416,221,218,439 -1153417,3,0,3 -1153418,159,185,344 -1153419,220,234,454 -1153420,238,228,466 -1153421,0,0,0 -1153422,122,120,242 -1153423,217,223,440 -1153424,302,277,579 -1153425,157,167,324 -1153426,139,146,285 -1153427,120,126,246 -1153428,122,108,230 -1153429,144,145,289 -1153430,127,138,265 -1153431,146,140,286 -1153432,189,183,372 -1153501,179,183,362 -1153502,246,245,491 -1153503,204,209,413 -1153504,231,207,438 -1153505,4,7,11 -1153506,298,293,591 -1153507,230,212,442 -1153508,153,193,346 -1153509,191,169,360 -1153510,179,171,350 -1153511,145,120,265 -1153512,242,218,460 -1153513,289,280,569 -1153514,200,223,423 -1153515,191,237,428 -1153516,0,0,0 -1153517,0,0,0 -1153518,169,186,355 -1153519,303,279,582 -1153520,81,118,199 -1153521,180,198,378 -1153522,290,303,593 -1153523,187,196,383 -1153524,144,140,284 -1153525,289,260,549 -1153526,243,221,464 -1153527,148,145,293 -1153528,148,182,330 -1153529,276,280,556 -1153530,216,238,454 -1153531,118,116,234 -1153532,282,275,557 -1153533,87,93,180 -1153534,246,254,500 -1153535,223,196,419 -1153536,237,235,472 -1153537,0,0,0 -1153538,147,182,329 -1153539,93,164,257 -1153540,107,116,223 -1153541,187,198,385 -1153542,220,206,426 -1153543,242,250,492 -1153544,199,166,365 -1153545,171,198,369 -1153546,106,131,237 -1153547,246,269,515 -1153548,137,145,282 -1153549,151,194,345 -1153550,203,199,402 -1153551,183,178,361 -1153552,170,169,339 -1153553,186,194,380 -1153554,246,277,523 -1153555,193,178,371 -1153556,242,209,451 -1153557,145,138,283 -1153601,101,96,197 -1153602,171,161,332 -1153603,162,174,336 -1153604,176,171,347 -1153605,177,177,354 -1153606,217,217,434 -1153607,160,183,343 -1153608,144,134,278 -1153609,210,217,427 -1153610,279,292,571 -1153611,240,230,470 -1153612,123,115,238 -1153613,143,150,293 -1153614,194,171,365 -1153615,104,87,191 -1153616,181,197,378 -1153617,297,310,607 -1153618,292,297,589 -1153619,174,182,356 -1153620,272,320,592 -1153621,236,252,488 -1153622,306,312,618 -1153623,165,187,352 -1153624,289,264,553 -1153625,233,252,485 -1153626,221,189,410 -1153627,129,158,287 -1153628,182,175,357 -1153629,146,161,307 -1153630,182,174,356 -1153631,288,290,578 -1153632,201,209,410 -1153633,214,253,467 -1153634,205,242,447 -1153635,160,141,301 -1153636,175,153,328 -1153637,225,242,467 -1153638,255,266,521 -1153639,215,198,413 -1153640,192,198,390 -1153641,191,217,408 -1153642,250,267,517 -1153643,289,387,676 -1153644,274,290,564 -1153645,238,253,491 -1153646,190,203,393 -1153647,257,263,520 -1153648,176,163,339 -1153649,234,255,489 -1153701,9,8,17 -1153801,179,219,398 -1153802,135,149,284 -1153803,219,234,453 -1153804,129,146,275 -1153805,4,0,4 -1153806,169,199,368 -1153807,3,0,3 -1153808,185,189,374 -1153809,214,219,433 -1153810,174,158,332 -1153811,0,0,0 -1153812,161,174,335 -1153813,203,221,424 -1153814,149,157,306 -1153815,221,234,455 -1153816,136,185,321 -1153817,257,234,491 -1153818,8,10,18 -1153819,0,0,0 -1153820,135,148,283 -1153821,191,198,389 -1153822,129,161,290 -1153823,232,237,469 -1153824,3,3,6 -1153825,145,199,344 -1153826,230,230,460 -1153827,168,186,354 -1153828,206,214,420 -1153829,158,138,296 -1153830,140,157,297 -1153831,271,264,535 -1153832,256,281,537 -1153833,178,206,384 -1153834,150,180,330 -1153835,184,300,484 -1153836,276,322,598 -1153837,288,346,634 -1153838,229,226,455 -1153839,144,157,301 -1153840,107,106,213 -1153841,217,228,445 -1153842,110,122,232 -1153843,343,359,702 -1153844,224,265,489 -1153845,299,302,601 -1153846,192,219,411 -1153847,319,351,670 -1153848,176,204,380 -1153849,170,175,345 -1153850,211,215,426 -1153851,121,153,274 -1153852,182,177,359 -1153853,345,332,677 -1949999,7592,5326,12918 -1979991,0,0,0 -1979992,0,0,0 -1979993,56,56,112 -2100101,217,229,446 -2100102,127,109,236 -2100103,331,316,647 -2100104,419,419,838 -2100105,134,151,285 -2100106,296,331,627 -2100107,178,205,383 -2100108,207,244,451 -2100109,243,272,515 -2100110,255,266,521 -2100111,197,179,376 -2100112,234,255,489 -2100113,193,192,385 -2100114,235,246,481 -2100115,252,253,505 -2100116,557,549,1106 -2100117,35,31,66 -2100201,257,298,555 -2100202,162,187,349 -2100203,197,240,437 -2100204,159,171,330 -2100205,265,284,549 -2100206,276,201,477 -2100207,182,205,387 -2100208,238,292,530 -2100209,0,0,0 -2100210,0,0,0 -2100211,220,258,478 -2100212,163,141,304 -2100213,199,249,448 -2100214,190,219,409 -2100215,233,284,517 -2100216,183,211,394 -2100217,144,177,321 -2100218,169,196,365 -2100219,97,83,180 -2100220,130,131,261 -2100221,153,117,270 -2100222,227,249,476 -2100223,237,326,563 -2100224,211,251,462 -2100225,113,137,250 -2100226,125,112,237 -2100227,148,196,344 -2100228,120,150,270 -2100229,155,176,331 -2100230,168,182,350 -2100231,197,211,408 -2100232,147,168,315 -2100233,166,179,345 -2100234,77,96,173 -2100301,93,98,191 -2100302,182,181,363 -2100303,145,153,298 -2100304,174,191,365 -2100305,287,304,591 -2100306,107,128,235 -2100307,135,170,305 -2100308,201,205,406 -2100309,247,297,544 -2100310,224,258,482 -2100311,234,216,450 -2100312,299,298,597 -2100313,242,262,504 -2100314,219,252,471 -2100315,275,272,547 -2100316,241,360,601 -2100317,203,210,413 -2100318,262,278,540 -2100319,174,243,417 -2100320,185,213,398 -2100321,195,216,411 -2100322,274,343,617 -2100323,142,172,314 -2100324,158,203,361 -2100325,174,161,335 -2100326,338,323,661 -2100327,346,373,719 -2100328,246,292,538 -2100329,316,343,659 -2100330,277,323,600 -2100331,235,264,499 -2100332,224,243,467 -2100333,332,364,696 -2100334,213,246,459 -2100335,250,287,537 -2100336,0,0,0 -2100337,207,206,413 -2100338,96,90,186 -2100339,117,130,247 -2100340,247,284,531 -2100341,152,135,287 -2100342,260,264,524 -2100343,143,141,284 -2100344,157,249,406 -2100345,178,182,360 -2100346,153,167,320 -2100347,206,187,393 -2100348,130,138,268 -2100349,230,250,480 -2100350,150,172,322 -2100351,199,231,430 -2100401,257,273,530 -2100402,243,329,572 -2100403,457,513,970 -2100404,177,204,381 -2100405,324,351,675 -2100406,130,135,265 -2100407,228,264,492 -2100408,239,265,504 -2100409,215,206,421 -2100410,187,205,392 -2100411,206,226,432 -2100412,297,344,641 -2100413,3,0,3 -2100414,137,129,266 -2100415,148,161,309 -2100416,223,259,482 -2100417,227,243,470 -2100418,137,135,272 -2100419,310,311,621 -2100420,272,301,573 -2100421,225,245,470 -2100422,232,243,475 -2100423,112,132,244 -2100424,226,261,487 -2100425,274,272,546 -2100426,194,210,404 -2100427,177,207,384 -2100428,192,202,394 -2100429,148,189,337 -2100430,226,265,491 -2100431,207,225,432 -2100432,189,261,450 -2100433,159,204,363 -2100434,275,274,549 -2100435,158,193,351 -2100436,267,276,543 -2100437,210,190,400 -2100438,327,345,672 -2100439,286,288,574 -2100440,194,196,390 -2100441,294,341,635 -2100442,177,198,375 -2100443,29,28,57 -2100444,167,161,328 -2100445,266,345,611 -2100446,157,166,323 -2100447,215,211,426 -2100448,173,166,339 -2100449,121,163,284 -2100450,382,393,775 -2100451,223,216,439 -2100501,157,180,337 -2100502,340,331,671 -2100503,371,398,769 -2100504,233,257,490 -2100505,159,164,323 -2100506,288,264,552 -2100507,166,200,366 -2100508,194,193,387 -2100509,124,112,236 -2100510,173,144,317 -2100511,146,142,288 -2100512,148,142,290 -2100513,180,167,347 -2100514,96,77,173 -2100515,183,189,372 -2100516,175,171,346 -2100517,174,152,326 -2100601,213,268,481 -2100602,215,234,449 -2100603,185,193,378 -2100604,184,194,378 -2100605,276,297,573 -2100606,183,183,366 -2100607,139,122,261 -2100608,94,94,188 -2100609,419,485,904 -2100610,208,231,439 -2100611,179,207,386 -2100612,254,266,520 -2100613,150,153,303 -2100614,60,65,125 -2100701,240,218,458 -2100702,178,173,351 -2100703,191,175,366 -2100704,223,213,436 -2100705,220,213,433 -2100706,266,241,507 -2100707,257,249,506 -2100708,191,197,388 -2100709,187,165,352 -2100801,149,170,319 -2100802,107,106,213 -2100803,280,263,543 -2100804,185,177,362 -2100805,176,178,354 -2100806,212,250,462 -2100807,176,188,364 -2100808,3,4,7 -2100809,250,264,514 -2100810,240,264,504 -2100811,115,117,232 -2100812,150,175,325 -2100813,144,160,304 -2100814,0,0,0 -2100815,175,188,363 -2100816,148,168,316 -2100817,130,130,260 -2100818,213,222,435 -2100819,740,765,1505 -2100820,218,217,435 -2100821,208,239,447 -2100822,126,152,278 -2100823,271,311,582 -2100824,228,326,554 -2100825,159,201,360 -2100826,215,253,468 -2100827,234,266,500 -2100828,186,193,379 -2100829,139,141,280 -2100830,190,210,400 -2100831,171,215,386 -2100832,271,284,555 -2100833,282,286,568 -2100834,138,158,296 -2100835,180,163,343 -2100901,257,277,534 -2100902,136,130,266 -2100903,225,187,412 -2100904,116,105,221 -2100905,157,140,297 -2100906,133,120,253 -2100907,173,179,352 -2100908,168,144,312 -2100909,176,176,352 -2100910,146,138,284 -2100911,133,134,267 -2100912,168,158,326 -2100913,153,154,307 -2100914,99,119,218 -2100915,135,147,282 -2100916,179,206,385 -2100917,240,236,476 -2101001,196,185,381 -2101002,230,231,461 -2101003,136,170,306 -2101004,152,128,280 -2101005,100,157,257 -2101006,210,227,437 -2101007,183,172,355 -2101008,193,218,411 -2101009,108,102,210 -2101010,152,149,301 -2101011,150,150,300 -2101012,216,229,445 -2101013,177,195,372 -2101014,140,141,281 -2101015,158,160,318 -2101016,141,138,279 -2101017,155,140,295 -2101018,191,164,355 -2101019,274,280,554 -2101020,274,293,567 -2101021,125,132,257 -2101101,213,210,423 -2101102,84,90,174 -2101103,142,141,283 -2101104,126,106,232 -2101105,142,111,253 -2101106,197,210,407 -2101107,224,231,455 -2101108,102,139,241 -2101109,137,171,308 -2101110,159,141,300 -2101111,121,165,286 -2101112,240,277,517 -2101113,226,233,459 -2101114,138,176,314 -2101115,198,279,477 -2101116,155,188,343 -2101117,148,177,325 -2101118,137,165,302 -2101119,155,154,309 -2101120,172,153,325 -2101121,148,150,298 -2101122,185,209,394 -2101123,157,162,319 -2101124,129,116,245 -2101125,202,196,398 -2101201,158,166,324 -2101202,95,73,168 -2101203,202,198,400 -2101204,121,119,240 -2101205,187,172,359 -2101206,138,133,271 -2101207,133,124,257 -2101208,142,120,262 -2101209,186,173,359 -2101210,214,191,405 -2101211,206,179,385 -2101212,115,98,213 -2101213,168,157,325 -2101214,186,192,378 -2101215,123,103,226 -2101216,198,177,375 -2101217,221,243,464 -2101301,242,216,458 -2101302,107,122,229 -2101303,152,134,286 -2101304,218,201,419 -2101305,210,200,410 -2101306,141,144,285 -2101307,123,113,236 -2101308,236,219,455 -2101309,133,132,265 -2101310,129,127,256 -2101401,188,216,404 -2101402,113,165,278 -2101403,197,204,401 -2101404,212,194,406 -2101405,128,124,252 -2101406,258,136,394 -2101407,157,137,294 -2101408,215,196,411 -2101409,120,110,230 -2101410,82,72,154 -2101411,137,156,293 -2101412,153,156,309 -2101413,8,4,12 -2101501,275,260,535 -2101502,141,157,298 -2101503,196,159,355 -2101504,120,108,228 -2101505,211,208,419 -2101506,197,161,358 -2101507,257,236,493 -2101508,116,124,240 -2101509,198,196,394 -2101510,102,101,203 -2101511,124,120,244 -2101512,149,138,287 -2101601,100,102,202 -2101602,257,281,538 -2101603,186,198,384 -2101604,184,192,376 -2101605,132,133,265 -2101606,217,220,437 -2101607,229,205,434 -2101608,167,157,324 -2101609,169,221,390 -2101610,242,258,500 -2101611,91,80,171 -2101612,221,247,468 -2101613,235,284,519 -2101614,178,195,373 -2101615,138,115,253 -2101616,203,225,428 -2101617,155,169,324 -2101618,107,137,244 -2101619,198,222,420 -2101620,139,154,293 -2101621,140,136,276 -2101701,185,176,361 -2101702,132,139,271 -2101703,141,115,256 -2101704,158,142,300 -2101705,148,136,284 -2101706,137,125,262 -2101707,224,236,460 -2101708,134,124,258 -2101709,218,215,433 -2101710,263,219,482 -2101711,172,185,357 -2101712,261,239,500 -2101713,147,112,259 -2101714,158,162,320 -2101715,137,122,259 -2101801,263,282,545 -2101802,125,139,264 -2101803,218,238,456 -2101804,79,167,246 -2101805,214,238,452 -2101806,176,240,416 -2101807,198,217,415 -2101808,93,97,190 -2101809,194,198,392 -2101810,154,159,313 -2101811,195,230,425 -2101812,147,170,317 -2101813,216,223,439 -2101814,133,116,249 -2101815,278,255,533 -2101816,206,240,446 -2101817,219,239,458 -2101818,177,204,381 -2101819,128,126,254 -2101820,94,110,204 -2101821,159,177,336 -2101822,180,172,352 -2101823,174,180,354 -2101824,218,249,467 -2101825,153,175,328 -2101826,147,145,292 -2101827,208,259,467 -2101828,190,228,418 -2101829,100,92,192 -2101830,298,355,653 -2101831,256,269,525 -2101832,206,192,398 -2101833,222,235,457 -2101834,184,178,362 -2101835,258,288,546 -2101836,133,131,264 -2101837,238,251,489 -2101838,115,103,218 -2101901,250,271,521 -2101902,269,336,605 -2101903,145,185,330 -2101904,234,272,506 -2101905,244,318,562 -2101906,44,47,91 -2101907,201,194,395 -2101908,255,276,531 -2101909,331,333,664 -2101910,203,218,421 -2101911,152,164,316 -2101912,137,163,300 -2101913,202,220,422 -2101914,249,258,507 -2101915,187,187,374 -2101916,148,182,330 -2101917,63,99,162 -2101918,145,139,284 -2101919,263,213,476 -2101920,325,314,639 -2101921,251,258,509 -2101922,281,300,581 -2101923,130,136,266 -2101924,159,177,336 -2102001,147,148,295 -2102002,92,120,212 -2102003,139,149,288 -2102004,179,188,367 -2102005,235,272,507 -2102006,179,212,391 -2102007,118,133,251 -2102008,84,98,182 -2102009,165,174,339 -2102010,188,202,390 -2102011,284,302,586 -2102012,148,167,315 -2102013,152,152,304 -2102014,118,129,247 -2102015,168,184,352 -2102016,117,140,257 -2102017,123,146,269 -2102018,262,260,522 -2102019,284,305,589 -2102020,109,132,241 -2102021,238,238,476 -2102022,122,133,255 -2102023,120,108,228 -2102024,176,182,358 -2102025,297,295,592 -2102026,219,248,467 -2102027,84,137,221 -2102028,202,228,430 -2102029,216,234,450 -2102030,223,233,456 -2102031,252,305,557 -2102032,172,199,371 -2102033,220,255,475 -2102034,194,215,409 -2102035,179,199,378 -2102036,165,169,334 -2102037,0,0,0 -2102038,108,177,285 -2102039,14,8,22 -2102101,170,148,318 -2102102,200,265,465 -2102103,178,163,341 -2102104,243,298,541 -2102105,202,214,416 -2102106,108,130,238 -2102107,201,255,456 -2102108,167,260,427 -2102109,200,225,425 -2102110,219,248,467 -2102111,194,278,472 -2102112,124,166,290 -2102113,129,150,279 -2102114,161,191,352 -2102115,224,253,477 -2102116,143,145,288 -2102117,160,185,345 -2102118,250,246,496 -2102119,240,265,505 -2102120,156,169,325 -2102121,135,151,286 -2102122,103,93,196 -2102123,0,0,0 -2102124,5,4,9 -2102125,171,197,368 -2102126,211,205,416 -2102127,0,0,0 -2102201,203,237,440 -2102202,242,297,539 -2102203,106,153,259 -2102204,158,195,353 -2102205,190,197,387 -2102206,178,219,397 -2102207,187,224,411 -2102208,220,229,449 -2102209,220,250,470 -2102210,207,220,427 -2102211,242,238,480 -2102212,200,193,393 -2102213,90,109,199 -2102214,158,152,310 -2102215,138,140,278 -2102216,292,340,632 -2102217,225,259,484 -2102218,237,262,499 -2102219,174,184,358 -2102220,105,96,201 -2102221,203,193,396 -2102222,283,297,580 -2102223,235,264,499 -2102224,215,264,479 -2102225,274,346,620 -2102226,144,160,304 -2102227,257,299,556 -2102228,257,278,535 -2102229,239,285,524 -2102230,146,185,331 -2102231,203,196,399 -2102232,236,232,468 -2102233,149,152,301 -2102234,122,140,262 -2102235,224,218,442 -2102236,318,361,679 -2102237,265,272,537 -2102238,213,216,429 -2102239,192,219,411 -2102240,104,83,187 -2102241,266,348,614 -2102242,127,130,257 -2102243,140,152,292 -2102244,169,156,325 -2102301,239,254,493 -2102302,262,249,511 -2102303,397,374,771 -2102304,369,351,720 -2102305,298,286,584 -2102306,185,169,354 -2102307,215,192,407 -2102308,281,281,562 -2102401,105,90,195 -2102402,157,149,306 -2102403,98,98,196 -2102404,484,473,957 -2102405,265,281,546 -2102406,370,362,732 -2102407,267,289,556 -2102408,306,316,622 -2102409,327,304,631 -2102410,303,301,604 -2102411,181,138,319 -2102412,244,267,511 -2102413,145,156,301 -2102414,173,159,332 -2102415,108,114,222 -2102501,242,260,502 -2102502,224,218,442 -2102503,245,247,492 -2102504,116,136,252 -2102505,185,232,417 -2102506,177,175,352 -2102507,8,0,8 -2102508,622,669,1291 -2102509,222,213,435 -2102510,174,198,372 -2102511,158,176,334 -2102512,147,137,284 -2102513,336,346,682 -2102514,212,208,420 -2102515,119,107,226 -2102516,142,143,285 -2102517,239,245,484 -2102518,302,289,591 -2102519,190,187,377 -2102520,239,246,485 -2102601,156,160,316 -2102602,156,131,287 -2102603,245,241,486 -2102604,187,187,374 -2102605,148,166,314 -2102606,91,84,175 -2102607,196,199,395 -2102608,171,180,351 -2102609,137,128,265 -2102610,145,142,287 -2102611,240,228,468 -2102612,202,205,407 -2102613,246,253,499 -2102614,111,119,230 -2102615,143,139,282 -2102616,153,147,300 -2102617,67,64,131 -2102618,166,159,325 -2102619,154,146,300 -2102701,162,195,357 -2102702,171,177,348 -2102703,400,0,400 -2102704,147,200,347 -2102705,170,208,378 -2102706,205,234,439 -2102707,126,124,250 -2102708,290,319,609 -2102709,142,150,292 -2102710,136,149,285 -2102711,149,163,312 -2102712,155,165,320 -2102713,188,226,414 -2102714,148,166,314 -2102715,200,247,447 -2102716,101,138,239 -2102717,169,197,366 -2102718,187,237,424 -2102719,191,218,409 -2102720,151,169,320 -2102721,249,259,508 -2102722,127,136,263 -2102723,110,142,252 -2102724,104,112,216 -2102725,167,202,369 -2102726,217,239,456 -2102727,199,197,396 -2102801,119,121,240 -2102802,268,244,512 -2102803,180,160,340 -2102804,134,119,253 -2102805,174,157,331 -2102806,133,139,272 -2102807,161,139,300 -2102808,199,194,393 -2102809,78,117,195 -2102810,207,244,451 -2102811,155,134,289 -2102812,87,99,186 -2102813,159,151,310 -2102814,158,162,320 -2102815,232,232,464 -2102816,186,164,350 -2102817,109,115,224 -2102818,159,172,331 -2102819,122,119,241 -2102820,215,218,433 -2102821,112,118,230 -2102822,119,126,245 -2102823,154,169,323 -2102824,207,184,391 -2102825,75,72,147 -2102826,208,203,411 -2102901,228,245,473 -2102902,128,134,262 -2102903,119,97,216 -2102904,148,138,286 -2102905,141,124,265 -2102906,144,137,281 -2102907,251,216,467 -2102908,176,166,342 -2102909,143,150,293 -2102910,173,172,345 -2102911,183,170,353 -2102912,150,163,313 -2102913,101,73,174 -2103001,197,190,387 -2103002,180,172,352 -2103003,236,231,467 -2103004,244,212,456 -2103005,139,144,283 -2103006,150,145,295 -2103007,176,174,350 -2103008,100,102,202 -2103009,172,183,355 -2103010,161,172,333 -2103011,167,116,283 -2103012,215,244,459 -2103013,231,248,479 -2103014,105,116,221 -2103015,179,179,358 -2103016,197,224,421 -2103017,305,293,598 -2103018,215,305,520 -2103019,273,295,568 -2103020,311,344,655 -2103021,210,230,440 -2103022,0,3,3 -2103023,155,173,328 -2103101,225,260,485 -2103102,299,336,635 -2103103,185,191,376 -2103104,255,233,488 -2103105,266,273,539 -2103106,132,159,291 -2103107,264,259,523 -2103108,150,158,308 -2103109,105,104,209 -2103110,138,126,264 -2103111,199,192,391 -2103112,123,139,262 -2103113,198,219,417 -2103114,119,140,259 -2103115,204,266,470 -2103116,204,292,496 -2103201,242,252,494 -2103202,175,179,354 -2103203,137,124,261 -2103204,151,152,303 -2103205,171,179,350 -2103206,227,173,400 -2103207,241,216,457 -2103208,129,136,265 -2103209,161,167,328 -2103210,108,89,197 -2103211,142,155,297 -2103212,64,73,137 -2103213,150,162,312 -2103301,215,227,442 -2103302,186,177,363 -2103303,122,95,217 -2103304,164,140,304 -2103305,155,152,307 -2103306,192,166,358 -2103307,188,158,346 -2103308,162,154,316 -2103309,144,154,298 -2103310,138,110,248 -2103311,68,72,140 -2103312,167,157,324 -2103313,225,184,409 -2103314,179,195,374 -2103315,178,202,380 -2103316,181,173,354 -2103317,245,222,467 -2103318,188,194,382 -2103319,108,103,211 -2103320,94,115,209 -2103321,151,157,308 -2103322,136,135,271 -2103401,239,270,509 -2103402,253,211,464 -2103403,199,206,405 -2103404,250,239,489 -2103405,125,124,249 -2103406,404,439,843 -2103407,267,259,526 -2103408,112,142,254 -2103409,255,246,501 -2103410,66,78,144 -2103411,169,150,319 -2103501,130,159,289 -2103502,182,185,367 -2103503,280,266,546 -2103504,132,137,269 -2103505,226,220,446 -2103506,233,234,467 -2103507,152,151,303 -2103508,120,114,234 -2103509,206,197,403 -2103510,185,185,370 -2103511,158,158,316 -2103512,297,289,586 -2103513,228,205,433 -2103514,234,235,469 -2103515,145,132,277 -2103516,230,212,442 -2103601,120,158,278 -2103602,295,275,570 -2103603,178,164,342 -2103604,184,189,373 -2103605,145,132,277 -2103606,103,97,200 -2103607,237,217,454 -2103608,130,122,252 -2103609,129,146,275 -2103610,169,167,336 -2103611,193,183,376 -2103612,144,155,299 -2103613,155,130,285 -2103614,180,168,348 -2103615,228,224,452 -2103616,275,296,571 -2103701,226,232,458 -2103702,276,280,556 -2103703,188,171,359 -2103704,201,223,424 -2103705,239,250,489 -2103706,149,181,330 -2103707,263,243,506 -2103708,0,0,0 -2103709,278,262,540 -2103710,145,204,349 -2103711,290,302,592 -2103712,213,241,454 -2103713,159,168,327 -2103714,156,146,302 -2103715,223,260,483 -2103716,240,233,473 -2103717,250,293,543 -2103718,177,186,363 -2103719,147,164,311 -2103720,200,212,412 -2103721,178,198,376 -2103722,246,247,493 -2103723,228,279,507 -2103724,258,291,549 -2103725,143,159,302 -2103726,221,257,478 -2103727,302,323,625 -2103728,136,193,329 -2103729,253,290,543 -2103730,201,250,451 -2103731,254,241,495 -2103732,122,100,222 -2103801,220,226,446 -2103802,116,132,248 -2103803,144,135,279 -2103804,193,221,414 -2103805,126,145,271 -2103806,157,199,356 -2103807,118,134,252 -2103808,177,161,338 -2103809,156,178,334 -2103810,297,278,575 -2103811,219,272,491 -2103812,129,154,283 -2103813,306,306,612 -2103814,132,145,277 -2103815,120,136,256 -2103816,166,191,357 -2103817,174,188,362 -2103818,198,216,414 -2103819,150,150,300 -2103820,207,199,406 -2103821,137,155,292 -2103822,192,200,392 -2103823,201,219,420 -2103824,113,123,236 -2103825,216,235,451 -2103826,239,222,461 -2103827,170,150,320 -2103828,117,159,276 -2103829,300,308,608 -2103830,171,184,355 -2103831,181,217,398 -2103832,217,222,439 -2103833,155,155,310 -2103834,133,157,290 -2103835,108,114,222 -2103836,172,179,351 -2103837,118,136,254 -2103838,192,195,387 -2103839,158,174,332 -2103840,153,158,311 -2103841,131,117,248 -2103842,248,263,511 -2103843,158,162,320 -2103844,194,217,411 -2103845,126,168,294 -2103846,46,50,96 -2103847,179,176,355 -2103848,216,206,422 -2103849,225,235,460 -2103850,173,180,353 -2103851,132,143,275 -2103852,92,93,185 -2103853,0,3,3 -2103854,109,109,218 -2103855,209,222,431 -2103856,303,312,615 -2103857,227,247,474 -2103858,105,104,209 -2103859,232,300,532 -2103860,160,173,333 -2103861,200,199,399 -2103862,7,3,10 -2103863,4,3,7 -2103864,174,180,354 -2103865,171,197,368 -2103866,136,144,280 -2103867,128,110,238 -2103868,180,169,349 -2103869,259,282,541 -2103870,145,159,304 -2103871,122,138,260 -2103872,155,152,307 -2103873,186,181,367 -2103874,161,166,327 -2103875,197,186,383 -2103876,111,99,210 -2103901,222,199,421 -2103902,191,205,396 -2103903,231,224,455 -2103904,159,156,315 -2103905,166,200,366 -2103906,163,165,328 -2103907,251,251,502 -2103908,192,212,404 -2103909,136,158,294 -2103910,262,234,496 -2103911,171,195,366 -2103912,211,226,437 -2103913,151,171,322 -2103914,249,259,508 -2103915,267,279,546 -2103916,154,196,350 -2103917,155,201,356 -2103918,164,195,359 -2103919,278,312,590 -2103920,206,223,429 -2103921,108,114,222 -2103922,207,220,427 -2103923,224,247,471 -2103924,211,185,396 -2103925,211,227,438 -2103926,0,0,0 -2103927,163,217,380 -2103928,259,248,507 -2103929,165,189,354 -2103930,174,222,396 -2103931,0,0,0 -2103932,107,117,224 -2104001,220,232,452 -2104002,278,287,565 -2104003,197,189,386 -2104004,266,310,576 -2104005,132,136,268 -2104006,148,159,307 -2104007,173,194,367 -2104008,214,237,451 -2104009,171,186,357 -2104010,168,168,336 -2104011,157,185,342 -2104012,212,233,445 -2104013,146,144,290 -2104014,202,256,458 -2104015,215,234,449 -2104016,216,195,411 -2104017,170,190,360 -2104018,240,245,485 -2104019,133,135,268 -2104020,117,121,238 -2104021,148,154,302 -2104022,176,196,372 -2104023,155,185,340 -2104024,200,187,387 -2104025,222,273,495 -2104026,200,218,418 -2104027,132,146,278 -2104028,110,120,230 -2104029,185,201,386 -2104030,108,124,232 -2104031,254,297,551 -2104032,115,126,241 -2104033,166,152,318 -2104034,252,262,514 -2104035,207,223,430 -2104036,223,191,414 -2104037,99,90,189 -2104038,248,254,502 -2104039,201,254,455 -2104040,167,176,343 -2104041,313,334,647 -2104042,215,222,437 -2104043,196,190,386 -2104044,180,203,383 -2104045,161,164,325 -2104046,161,168,329 -2104047,162,214,376 -2104048,106,127,233 -2104049,115,134,249 -2104050,131,174,305 -2104101,222,253,475 -2104102,188,210,398 -2104103,282,307,589 -2104104,188,190,378 -2104105,271,288,559 -2104106,262,341,603 -2104107,313,389,702 -2104108,196,245,441 -2104109,218,203,421 -2104110,168,170,338 -2104111,231,237,468 -2104112,217,209,426 -2104113,228,259,487 -2104114,460,478,938 -2104115,169,188,357 -2104116,236,334,570 -2104117,68,58,126 -2104118,215,223,438 -2104119,347,334,681 -2104120,212,317,529 -2104121,227,298,525 -2104122,170,212,382 -2104123,179,202,381 -2104124,179,181,360 -2104125,200,219,419 -2104126,164,135,299 -2104127,482,509,991 -2104128,222,229,451 -2104129,212,218,430 -2104130,146,160,306 -2104131,198,171,369 -2104132,208,209,417 -2104133,160,176,336 -2104134,195,220,415 -2104135,217,198,415 -2104136,160,144,304 -2104137,188,191,379 -2104138,356,339,695 -2104139,134,130,264 -2104140,108,118,226 -2104141,238,253,491 -2104142,310,394,704 -2104143,104,116,220 -2104201,302,260,562 -2104202,277,268,545 -2104203,165,188,353 -2104204,132,142,274 -2104205,187,180,367 -2104206,265,280,545 -2104207,326,326,652 -2104208,245,289,534 -2104209,255,275,530 -2104210,162,180,342 -2104211,253,268,521 -2104212,166,183,349 -2104213,179,193,372 -2104214,605,649,1254 -2104215,258,272,530 -2104216,265,296,561 -2104217,206,234,440 -2104218,282,306,588 -2104219,192,217,409 -2104220,205,206,411 -2104221,175,159,334 -2104222,269,273,542 -2104223,265,275,540 -2104224,201,227,428 -2104225,118,118,236 -2104226,146,176,322 -2104227,110,126,236 -2104228,244,244,488 -2104229,241,248,489 -2104230,247,270,517 -2104231,278,260,538 -2104232,206,277,483 -2104233,177,226,403 -2104234,164,183,347 -2104235,205,212,417 -2104236,154,138,292 -2104237,274,297,571 -2104238,215,224,439 -2104239,155,186,341 -2104240,144,172,316 -2104241,91,62,153 -2104242,129,122,251 -2104243,258,251,509 -2104244,0,0,0 -2104301,241,236,477 -2104302,130,138,268 -2104303,136,119,255 -2104304,160,185,345 -2104305,179,191,370 -2104306,121,122,243 -2104307,272,257,529 -2104308,698,22,720 -2104309,43,43,86 -2104310,182,212,394 -2104311,145,132,277 -2104312,132,116,248 -2104313,196,220,416 -2104314,138,136,274 -2104315,50,84,134 -2104316,139,149,288 -2104317,138,149,287 -2104318,277,287,564 -2104319,304,293,597 -2104320,247,258,505 -2104321,254,263,517 -2104322,178,170,348 -2104323,288,310,598 -2104324,153,157,310 -2104325,14,12,26 -2104326,175,171,346 -2104327,204,202,406 -2104328,637,656,1293 -2104329,195,187,382 -2104330,207,208,415 -2104331,285,271,556 -2104332,336,353,689 -2104333,166,174,340 -2104334,220,224,444 -2104335,179,197,376 -2104336,351,405,756 -2104337,211,232,443 -2104401,173,176,349 -2104402,210,219,429 -2104403,111,122,233 -2104404,203,237,440 -2104405,226,225,451 -2104406,268,296,564 -2104407,239,247,486 -2104408,140,172,312 -2104409,239,252,491 -2104410,243,239,482 -2104411,191,203,394 -2104412,258,220,478 -2104413,237,255,492 -2104414,239,277,516 -2104415,157,138,295 -2104416,158,144,302 -2104417,353,339,692 -2104418,198,189,387 -2104419,359,383,742 -2104420,124,117,241 -2104421,160,160,320 -2104422,175,199,374 -2104423,209,231,440 -2104424,107,105,212 -2104501,222,254,476 -2104502,192,192,384 -2104503,191,235,426 -2104504,215,333,548 -2104505,259,252,511 -2104506,259,258,517 -2104507,186,199,385 -2104508,276,271,547 -2104509,181,205,386 -2104510,135,114,249 -2104511,186,206,392 -2104512,164,182,346 -2104513,202,210,412 -2104514,272,277,549 -2104515,171,163,334 -2104516,263,272,535 -2104517,299,322,621 -2104518,154,134,288 -2104519,270,251,521 -2104520,217,227,444 -2104521,153,167,320 -2104522,181,155,336 -2104523,174,208,382 -2104524,195,235,430 -2104525,223,282,505 -2104526,171,181,352 -2104527,185,201,386 -2104528,260,289,549 -2104529,0,0,0 -2104530,210,255,465 -2104531,187,242,429 -2104532,187,166,353 -2104533,202,231,433 -2104534,203,232,435 -2104535,217,232,449 -2104601,294,283,577 -2104602,282,292,574 -2104603,149,166,315 -2104604,82,101,183 -2104605,102,119,221 -2104606,297,293,590 -2104607,197,180,377 -2104608,188,180,368 -2104609,178,167,345 -2104610,188,212,400 -2104611,264,272,536 -2104612,228,281,509 -2104613,217,232,449 -2104614,215,218,433 -2104615,279,248,527 -2104616,109,125,234 -2104617,289,303,592 -2104618,115,138,253 -2104619,93,90,183 -2104620,186,181,367 -2104621,175,200,375 -2104622,102,115,217 -2104623,197,231,428 -2104624,189,198,387 -2104625,119,131,250 -2104701,0,0,0 -2104702,6,3,9 -2104703,156,170,326 -2104704,265,265,530 -2104705,136,166,302 -2104706,217,223,440 -2104707,175,177,352 -2104708,152,156,308 -2104709,193,215,408 -2104710,225,212,437 -2104711,261,282,543 -2104712,182,197,379 -2104713,177,173,350 -2104714,109,122,231 -2104715,327,314,641 -2104716,340,319,659 -2104717,0,0,0 -2104718,213,253,466 -2104719,157,158,315 -2104720,168,185,353 -2104721,229,250,479 -2104722,132,132,264 -2104723,209,245,454 -2104724,266,279,545 -2104725,104,151,255 -2104726,129,135,264 -2104727,11,4,15 -2104728,245,257,502 -2104729,302,312,614 -2104730,200,239,439 -2104731,218,214,432 -2104732,0,0,0 -2104733,131,118,249 -2104734,114,123,237 -2104735,232,241,473 -2104736,77,54,131 -2104737,137,159,296 -2104738,293,285,578 -2104739,163,171,334 -2104740,179,192,371 -2104801,212,295,507 -2104802,154,194,348 -2104803,281,299,580 -2104804,171,172,343 -2104805,223,230,453 -2104806,117,112,229 -2104807,112,112,224 -2104808,184,178,362 -2104809,97,116,213 -2104810,174,164,338 -2104811,216,199,415 -2104812,157,152,309 -2104813,343,440,783 -2104814,138,182,320 -2104815,102,127,229 -2104816,282,297,579 -2104817,319,320,639 -2104818,109,138,247 -2104819,203,208,411 -2104820,191,209,400 -2104821,181,222,403 -2104822,106,107,213 -2104823,357,351,708 -2104824,119,134,253 -2104825,186,205,391 -2104826,172,166,338 -2104827,162,142,304 -2104828,195,217,412 -2104829,175,196,371 -2104830,95,91,186 -2104831,90,97,187 -2104901,178,176,354 -2104902,222,220,442 -2104903,183,193,376 -2104904,275,290,565 -2104905,316,348,664 -2104906,202,232,434 -2104907,181,167,348 -2104908,301,303,604 -2104909,189,199,388 -2104910,209,197,406 -2104911,168,169,337 -2105001,136,117,253 -2105002,153,153,306 -2105003,183,204,387 -2105004,215,232,447 -2105005,244,255,499 -2105006,200,252,452 -2105007,122,111,233 -2105008,163,203,366 -2105009,228,250,478 -2105010,158,177,335 -2105011,207,220,427 -2105012,192,210,402 -2105013,194,196,390 -2105014,195,200,395 -2105015,155,180,335 -2105016,220,202,422 -2105017,160,187,347 -2105018,192,218,410 -2105019,178,210,388 -2105020,240,288,528 -2105021,185,186,371 -2105022,259,265,524 -2105023,209,217,426 -2105024,179,156,335 -2105025,142,126,268 -2105026,226,261,487 -2105027,543,685,1228 -2105028,154,159,313 -2105029,233,266,499 -2105030,147,156,303 -2105031,219,254,473 -2105032,291,286,577 -2105033,133,170,303 -2105034,194,159,353 -2105035,265,258,523 -2105036,258,281,539 -2105037,97,83,180 -2105038,388,393,781 -2105039,239,293,532 -2105040,249,257,506 -2105041,110,92,202 -2105042,232,212,444 -2105043,76,76,152 -2105044,125,127,252 -2105101,246,261,507 -2105102,140,173,313 -2105103,120,118,238 -2105104,301,310,611 -2105105,119,129,248 -2105106,157,181,338 -2105107,158,210,368 -2105108,141,140,281 -2105109,220,254,474 -2105110,232,215,447 -2105111,151,181,332 -2105112,295,298,593 -2105113,143,152,295 -2105114,162,143,305 -2105115,251,226,477 -2105116,220,215,435 -2105117,119,128,247 -2105201,146,160,306 -2105202,207,215,422 -2105203,141,167,308 -2105204,247,279,526 -2105205,220,274,494 -2105206,195,219,414 -2105207,260,277,537 -2105208,132,157,289 -2105209,124,146,270 -2105210,165,159,324 -2105211,95,93,188 -2105301,215,236,451 -2105302,294,261,555 -2105303,295,289,584 -2105304,78,81,159 -2105305,273,276,549 -2105306,246,247,493 -2105307,218,223,441 -2105308,161,155,316 -2105309,199,190,389 -2105310,292,315,607 -2105311,215,225,440 -2105312,173,200,373 -2105313,144,168,312 -2105314,336,344,680 -2105315,281,264,545 -2105316,400,433,833 -2105317,388,404,792 -2105318,210,187,397 -2105319,240,248,488 -2105320,178,184,362 -2105321,157,169,326 -2105322,167,174,341 -2105323,224,217,441 -2105324,181,198,379 -2105325,175,179,354 -2105326,277,300,577 -2105327,183,205,388 -2105328,85,81,166 -2105329,217,225,442 -2105330,234,241,475 -2105331,85,78,163 -2105332,163,171,334 -2105333,248,234,482 -2105334,200,216,416 -2105401,116,107,223 -2105402,137,120,257 -2105403,165,167,332 -2105404,138,140,278 -2105405,3,0,3 -2105406,275,273,548 -2105407,133,137,270 -2105408,162,168,330 -2105409,197,164,361 -2105410,166,180,346 -2105411,165,172,337 -2105412,147,178,325 -2105413,136,111,247 -2105414,147,183,330 -2105415,180,185,365 -2105416,154,180,334 -2105417,249,225,474 -2105418,126,131,257 -2105419,239,234,473 -2105501,208,214,422 -2105502,137,157,294 -2105503,96,105,201 -2105504,140,148,288 -2105505,116,115,231 -2105506,216,237,453 -2105507,138,124,262 -2105508,198,209,407 -2105509,158,176,334 -2105510,92,105,197 -2105511,174,193,367 -2105512,206,191,397 -2105513,150,154,304 -2105514,230,186,416 -2105515,187,150,337 -2105516,170,161,331 -2105517,95,103,198 -2105518,102,103,205 -2105519,162,147,309 -2105601,244,254,498 -2105602,157,153,310 -2105603,123,111,234 -2105604,124,117,241 -2105605,330,331,661 -2105606,160,160,320 -2105607,160,168,328 -2105608,215,220,435 -2105609,322,302,624 -2105610,180,173,353 -2105611,116,112,228 -2105612,88,97,185 -2105613,348,389,737 -2105614,250,257,507 -2105615,279,276,555 -2105616,225,217,442 -2105617,310,329,639 -2105618,138,124,262 -2105619,196,240,436 -2105620,283,288,571 -2105621,161,153,314 -2105622,100,111,211 -2105623,117,106,223 -2105624,165,165,330 -2105625,184,228,412 -2105626,160,163,323 -2105627,113,121,234 -2105628,204,220,424 -2105629,97,98,195 -2105630,258,237,495 -2105631,108,117,225 -2105701,209,175,384 -2105702,167,135,302 -2105703,280,241,521 -2105704,284,263,547 -2105705,340,356,696 -2105706,65,56,121 -2105707,138,157,295 -2105708,200,157,357 -2105709,5,0,5 -2105710,117,133,250 -2105711,154,150,304 -2105712,119,144,263 -2105713,325,345,670 -2105714,298,363,661 -2105715,127,99,226 -2105716,219,296,515 -2105717,191,191,382 -2105718,133,134,267 -2105719,311,345,656 -2105720,150,92,242 -2105721,102,87,189 -2105722,159,135,294 -2105801,115,104,219 -2105802,138,145,283 -2105803,95,113,208 -2105804,137,133,270 -2105805,92,124,216 -2105806,152,135,287 -2105807,228,221,449 -2105808,98,93,191 -2105809,182,186,368 -2105810,0,0,0 -2105811,120,113,233 -2105812,99,103,202 -2105813,134,120,254 -2105814,191,194,385 -2105901,192,202,394 -2105902,152,188,340 -2105903,167,172,339 -2105904,106,92,198 -2105905,141,127,268 -2105906,279,296,575 -2105907,170,165,335 -2105908,62,61,123 -2105909,239,287,526 -2105910,165,168,333 -2105911,197,189,386 -2105912,229,249,478 -2105913,181,207,388 -2105914,204,225,429 -2105915,261,305,566 -2105916,173,171,344 -2105917,182,177,359 -2106001,143,133,276 -2106002,231,227,458 -2106003,106,107,213 -2106004,0,0,0 -2106005,241,210,451 -2106006,160,141,301 -2106007,187,186,373 -2106008,164,151,315 -2106009,142,130,272 -2106010,197,208,405 -2106011,691,463,1154 -2106101,118,102,220 -2106201,182,178,360 -2106202,124,95,219 -2106203,180,185,365 -2106204,156,167,323 -2106205,267,242,509 -2106206,198,207,405 -2106207,226,203,429 -2106208,144,118,262 -2106209,135,136,271 -2106210,135,120,255 -2106301,193,169,362 -2106302,217,203,420 -2106303,100,109,209 -2106304,217,276,493 -2106305,101,106,207 -2106306,246,275,521 -2106307,232,264,496 -2106308,242,263,505 -2106309,166,175,341 -2106310,150,155,305 -2106311,133,152,285 -2106312,211,235,446 -2106313,202,220,422 -2106314,154,171,325 -2106315,122,131,253 -2106316,3,0,3 -2106317,175,155,330 -2106318,168,219,387 -2106319,235,263,498 -2106320,193,174,367 -2106321,196,191,387 -2106322,192,164,356 -2106323,129,180,309 -2106324,145,167,312 -2106325,167,231,398 -2106326,217,259,476 -2106327,206,219,425 -2106328,131,136,267 -2106329,121,124,245 -2106401,170,177,347 -2106402,273,225,498 -2106403,186,173,359 -2106404,229,236,465 -2106405,113,92,205 -2106406,248,264,512 -2106407,179,171,350 -2106408,232,229,461 -2106409,92,96,188 -2106501,132,126,258 -2106502,187,153,340 -2106503,212,235,447 -2106504,223,232,455 -2106505,126,147,273 -2106506,188,202,390 -2106507,187,171,358 -2106508,142,148,290 -2106509,128,144,272 -2106510,175,167,342 -2106511,141,150,291 -2106601,219,238,457 -2106602,232,242,474 -2106603,242,314,556 -2106604,124,166,290 -2106605,185,215,400 -2106606,305,496,801 -2106607,178,213,391 -2106608,268,247,515 -2106609,183,233,416 -2106610,122,128,250 -2106611,226,229,455 -2106612,228,236,464 -2106613,163,182,345 -2106614,163,194,357 -2106615,280,309,589 -2106616,220,236,456 -2106617,289,298,587 -2106618,242,248,490 -2106619,200,262,462 -2106620,173,179,352 -2106621,138,170,308 -2106622,156,185,341 -2106623,178,215,393 -2106624,150,152,302 -2106625,187,187,374 -2106626,165,203,368 -2106627,171,193,364 -2106628,124,136,260 -2106629,234,254,488 -2106630,243,264,507 -2106631,180,186,366 -2106632,133,153,286 -2106633,75,59,134 -2106634,178,201,379 -2106635,181,196,377 -2106636,173,195,368 -2106637,172,170,342 -2106638,96,108,204 -2106639,0,0,0 -2106640,88,89,177 -2106641,136,121,257 -2106642,210,247,457 -2106643,108,114,222 -2106644,96,120,216 -2106645,169,174,343 -2106646,248,268,516 -2106647,112,135,247 -2106701,179,137,316 -2106702,120,111,231 -2106703,252,232,484 -2106704,166,159,325 -2106705,184,171,355 -2106706,184,158,342 -2106707,148,113,261 -2106708,120,113,233 -2106709,108,100,208 -2106710,105,94,199 -2106711,115,119,234 -2106712,96,111,207 -2106713,177,177,354 -2106714,133,129,262 -2106715,126,126,252 -2106716,140,125,265 -2106717,185,196,381 -2106718,114,129,243 -2106719,175,155,330 -2106720,162,168,330 -2106721,157,160,317 -2106722,177,167,344 -2106723,179,187,366 -2106724,144,152,296 -2106725,171,168,339 -2106726,118,133,251 -2106727,129,119,248 -2106728,136,120,256 -2106729,203,218,421 -2106730,157,139,296 -2106731,91,94,185 -2106801,158,164,322 -2106802,279,146,425 -2106803,170,154,324 -2106804,153,182,335 -2106805,160,157,317 -2106806,109,118,227 -2106807,149,193,342 -2106808,200,248,448 -2106809,155,157,312 -2106810,166,180,346 -2106811,213,303,516 -2106812,156,160,316 -2106901,121,124,245 -2106902,120,120,240 -2106903,136,144,280 -2106904,158,175,333 -2106905,134,142,276 -2106906,113,121,234 -2106907,155,141,296 -2106908,3,6,9 -2106909,94,95,189 -2106910,104,102,206 -2106911,178,202,380 -2106912,91,80,171 -2106913,72,49,121 -2106914,137,153,290 -2106915,183,188,371 -2106916,150,160,310 -2106917,136,171,307 -2106918,110,120,230 -2106919,134,156,290 -2106920,0,0,0 -2106921,147,140,287 -2106922,198,180,378 -2106923,131,161,292 -2106924,127,117,244 -2106925,128,97,225 -2106926,171,175,346 -2106927,143,159,302 -2106928,154,153,307 -2106929,102,59,161 -2106930,67,76,143 -2106931,135,136,271 -2107001,259,252,511 -2107002,106,108,214 -2107003,184,192,376 -2107004,111,96,207 -2107005,219,218,437 -2107006,148,136,284 -2107007,116,110,226 -2107008,155,148,303 -2107009,172,162,334 -2107101,241,285,526 -2107102,132,124,256 -2107103,111,119,230 -2107104,96,87,183 -2107105,85,84,169 -2107106,158,132,290 -2107107,196,181,377 -2107108,193,174,367 -2107109,185,154,339 -2107110,77,83,160 -2107111,187,178,365 -2107112,237,228,465 -2107113,0,3,3 -2107114,133,173,306 -2107115,235,237,472 -2107201,99,103,202 -2107202,205,194,399 -2107203,101,131,232 -2107204,154,175,329 -2107205,114,110,224 -2107206,156,162,318 -2107207,140,133,273 -2107208,163,171,334 -2107209,115,100,215 -2107210,154,148,302 -2107211,174,167,341 -2107212,141,116,257 -2107213,244,260,504 -2107214,221,229,450 -2107215,0,0,0 -2107216,183,168,351 -2107217,114,103,217 -2107218,127,110,237 -2107219,211,202,413 -2107220,139,128,267 -2107301,148,152,300 -2107302,284,308,592 -2107303,145,159,304 -2107304,218,271,489 -2107305,240,272,512 -2107306,233,244,477 -2107307,236,271,507 -2107308,134,179,313 -2107309,117,130,247 -2107310,169,187,356 -2107311,210,194,404 -2107312,163,187,350 -2107313,195,211,406 -2107314,118,135,253 -2107315,257,253,510 -2107316,158,172,330 -2107317,182,196,378 -2107318,101,94,195 -2107319,166,166,332 -2107320,341,411,752 -2107321,209,214,423 -2107322,225,203,428 -2107323,278,294,572 -2107324,196,198,394 -2107325,275,310,585 -2107326,264,244,508 -2107327,200,227,427 -2107328,265,241,506 -2107329,172,166,338 -2107330,178,191,369 -2107331,216,217,433 -2107332,193,196,389 -2107333,273,285,558 -2107334,210,197,407 -2107335,108,131,239 -2107401,159,135,294 -2107402,247,313,560 -2107403,91,85,176 -2107404,98,102,200 -2107405,439,460,899 -2107406,266,273,539 -2107407,148,148,296 -2107408,9,9,18 -2107409,101,114,215 -2107410,3,0,3 -2107411,264,260,524 -2107412,234,295,529 -2107413,206,246,452 -2107414,198,212,410 -2107415,296,305,601 -2107416,139,134,273 -2107417,176,203,379 -2107418,220,202,422 -2107419,153,173,326 -2107420,194,228,422 -2107421,142,153,295 -2107422,257,260,517 -2107423,197,243,440 -2107424,124,123,247 -2107425,161,168,329 -2107426,213,208,421 -2107427,281,325,606 -2107428,223,242,465 -2107429,95,114,209 -2107430,156,137,293 -2107431,11,8,19 -2107432,134,145,279 -2107433,223,240,463 -2107434,246,235,481 -2107435,111,102,213 -2107436,135,144,279 -2107437,286,314,600 -2107438,179,185,364 -2107439,261,275,536 -2107440,364,377,741 -2107441,270,287,557 -2107442,186,199,385 -2107443,263,270,533 -2107444,272,293,565 -2107445,162,175,337 -2107446,244,231,475 -2107447,192,164,356 -2107448,3,6,9 -2107449,99,82,181 -2107450,71,86,157 -2107451,195,205,400 -2107452,372,209,581 -2107453,161,163,324 -2107454,374,92,466 -2107455,122,133,255 -2107501,223,336,559 -2107502,215,221,436 -2107503,151,160,311 -2107504,156,160,316 -2107505,101,93,194 -2107506,206,190,396 -2107507,194,201,395 -2107508,134,101,235 -2107509,244,206,450 -2107510,222,223,445 -2107511,150,140,290 -2107512,191,198,389 -2107601,166,212,378 -2107602,500,477,977 -2107603,107,134,241 -2107604,266,287,553 -2107605,101,99,200 -2107606,350,366,716 -2107607,320,321,641 -2107608,252,274,526 -2107609,251,284,535 -2107610,247,248,495 -2107611,158,158,316 -2107612,134,133,267 -2107613,218,196,414 -2107614,209,183,392 -2107615,122,106,228 -2107616,259,268,527 -2107617,226,256,482 -2107618,155,139,294 -2107619,152,148,300 -2107620,235,214,449 -2107621,258,255,513 -2107622,138,161,299 -2107623,100,78,178 -2107624,162,148,310 -2107625,68,65,133 -2107626,73,61,134 -2107627,129,118,247 -2107628,123,150,273 -2107629,294,300,594 -2107630,149,212,361 -2107631,278,353,631 -2107632,220,220,440 -2107633,98,86,184 -2107701,14,8,22 -2107702,86,96,182 -2107703,142,135,277 -2107704,127,112,239 -2107705,173,151,324 -2107706,8,7,15 -2107707,3,4,7 -2107708,148,149,297 -2107709,213,214,427 -2107710,109,105,214 -2107711,158,167,325 -2107712,273,249,522 -2107713,214,201,415 -2107714,231,235,466 -2107715,176,185,361 -2107716,175,168,343 -2107717,110,116,226 -2107718,0,0,0 -2107719,246,248,494 -2107720,111,91,202 -2107721,186,167,353 -2107722,134,125,259 -2107801,280,301,581 -2107802,179,177,356 -2107803,110,113,223 -2107804,149,131,280 -2107805,156,146,302 -2107806,204,215,419 -2107807,104,91,195 -2107808,195,194,389 -2107809,188,234,422 -2107810,114,117,231 -2107811,318,344,662 -2107812,312,283,595 -2107813,102,119,221 -2107814,177,182,359 -2107815,107,110,217 -2107816,93,89,182 -2107817,268,236,504 -2107818,79,75,154 -2107819,133,129,262 -2107820,115,128,243 -2107821,135,149,284 -2107901,155,157,312 -2107902,249,286,535 -2107903,197,195,392 -2107904,221,229,450 -2107905,249,281,530 -2107906,165,185,350 -2107907,194,185,379 -2107908,198,192,390 -2107909,140,153,293 -2107910,205,266,471 -2107911,141,167,308 -2107912,177,260,437 -2107913,224,236,460 -2107914,145,138,283 -2107915,165,157,322 -2107916,212,246,458 -2107917,167,179,346 -2107918,114,112,226 -2107919,135,131,266 -2107920,159,158,317 -2107921,230,241,471 -2107922,191,178,369 -2107923,179,243,422 -2107924,101,128,229 -2107925,202,280,482 -2107926,182,204,386 -2107927,267,284,551 -2107928,314,358,672 -2107929,211,212,423 -2107930,214,192,406 -2107931,214,241,455 -2107932,279,280,559 -2107933,168,182,350 -2107934,445,457,902 -2107935,223,258,481 -2107936,192,180,372 -2107937,168,180,348 -2107938,205,195,400 -2107939,226,291,517 -2107940,199,214,413 -2108001,0,0,0 -2108101,67,61,128 -2108102,521,558,1079 -2108103,128,112,240 -2108104,304,309,613 -2108105,221,230,451 -2108106,257,248,505 -2108107,270,320,590 -2108108,405,452,857 -2108109,285,326,611 -2108110,248,234,482 -2108111,133,136,269 -2108112,182,206,388 -2108113,246,320,566 -2108114,246,293,539 -2108115,122,120,242 -2108116,204,293,497 -2108117,273,315,588 -2108118,146,152,298 -2108119,99,112,211 -2108120,220,274,494 -2108121,175,183,358 -2108122,210,225,435 -2108123,173,177,350 -2108124,125,136,261 -2108125,263,299,562 -2108126,225,237,462 -2108127,127,160,287 -2108128,191,201,392 -2108129,107,119,226 -2108130,129,139,268 -2108201,59,45,104 -2108202,206,184,390 -2108203,280,269,549 -2108204,174,162,336 -2108205,165,165,330 -2108206,112,96,208 -2108207,107,115,222 -2108208,138,132,270 -2108209,143,106,249 -2108210,120,97,217 -2108211,217,203,420 -2108212,172,165,337 -2108213,112,106,218 -2108214,131,112,243 -2108215,138,148,286 -2108216,166,183,349 -2108217,87,60,147 -2108218,161,148,309 -2108219,253,246,499 -2108220,96,79,175 -2108221,139,121,260 -2108222,158,155,313 -2108223,79,69,148 -2108224,193,199,392 -2108225,157,151,308 -2108301,0,0,0 -2108401,187,228,415 -2108402,250,233,483 -2108403,133,168,301 -2108404,256,282,538 -2108405,209,216,425 -2108406,327,297,624 -2108407,250,221,471 -2108408,160,140,300 -2108409,155,158,313 -2108410,207,182,389 -2108411,153,182,335 -2108412,146,155,301 -2108413,102,107,209 -2108414,115,112,227 -2108415,114,132,246 -2108416,218,233,451 -2108417,165,186,351 -2108418,177,187,364 -2108419,140,189,329 -2108420,148,156,304 -2108421,212,186,398 -2108422,0,3,3 -2108423,131,133,264 -2108424,214,230,444 -2108425,129,140,269 -2108426,112,114,226 -2108427,142,135,277 -2108428,110,94,204 -2108501,131,146,277 -2108502,146,127,273 -2108503,98,125,223 -2108504,158,150,308 -2108505,206,232,438 -2108506,172,186,358 -2108507,144,146,290 -2108508,68,59,127 -2108509,207,220,427 -2108510,88,81,169 -2108511,184,164,348 -2108512,163,124,287 -2108513,112,119,231 -2108514,225,216,441 -2108515,201,184,385 -2108516,177,175,352 -2108517,131,109,240 -2108518,178,163,341 -2108519,150,134,284 -2108520,203,228,431 -2108521,87,85,172 -2108522,154,166,320 -2108601,93,87,180 -2108602,98,127,225 -2108603,254,257,511 -2108604,200,213,413 -2108605,249,290,539 -2108606,251,250,501 -2108607,261,279,540 -2108608,145,166,311 -2108609,134,136,270 -2108610,243,230,473 -2108611,130,126,256 -2108612,150,141,291 -2108613,85,80,165 -2108614,168,174,342 -2108615,138,130,268 -2108616,149,170,319 -2108617,0,0,0 -2108701,194,186,380 -2108702,104,104,208 -2108703,99,98,197 -2108704,136,133,269 -2108705,168,150,318 -2108706,130,160,290 -2108707,124,144,268 -2108708,93,86,179 -2108709,232,207,439 -2108710,106,103,209 -2108711,224,216,440 -2108712,158,182,340 -2108713,207,235,442 -2108714,229,225,454 -2108715,208,204,412 -2108716,216,230,446 -2108717,138,123,261 -2108718,95,100,195 -2108719,263,233,496 -2108720,319,299,618 -2108721,100,107,207 -2108722,198,185,383 -2108723,181,182,363 -2108724,90,106,196 -2108725,82,92,174 -2108801,58,58,116 -2108901,259,278,537 -2108902,154,164,318 -2108903,157,134,291 -2108904,208,228,436 -2108905,230,235,465 -2108906,101,132,233 -2108907,241,238,479 -2108908,282,327,609 -2108909,163,173,336 -2108910,160,144,304 -2108911,170,151,321 -2108912,204,184,388 -2108913,122,116,238 -2108914,168,198,366 -2108915,126,120,246 -2108916,150,135,285 -2108917,236,204,440 -2108918,172,181,353 -2108919,312,319,631 -2108920,132,134,266 -2108921,271,324,595 -2108922,231,209,440 -2108923,97,74,171 -2109001,156,156,312 -2109002,169,173,342 -2109003,178,213,391 -2109004,177,190,367 -2109005,174,257,431 -2109006,187,225,412 -2109007,181,189,370 -2109008,215,227,442 -2109009,171,152,323 -2109010,164,168,332 -2109011,252,258,510 -2109012,214,230,444 -2109013,219,217,436 -2109014,183,202,385 -2109015,279,265,544 -2109016,224,210,434 -2109017,267,266,533 -2109018,293,320,613 -2109019,280,282,562 -2109020,186,182,368 -2109021,150,159,309 -2109022,168,193,361 -2109023,209,251,460 -2109024,153,167,320 -2109025,138,124,262 -2109026,129,134,263 -2109101,231,324,555 -2109102,267,285,552 -2109103,184,189,373 -2109104,311,311,622 -2109105,150,143,293 -2109106,160,177,337 -2109107,316,343,659 -2109108,359,335,694 -2109109,173,165,338 -2109110,127,131,258 -2109111,116,110,226 -2109112,179,210,389 -2109113,139,111,250 -2109114,77,58,135 -2109115,259,280,539 -2109116,185,201,386 -2109117,144,155,299 -2109118,116,124,240 -2109119,189,221,410 -2109120,330,355,685 -2109121,192,186,378 -2109122,223,217,440 -2109123,170,174,344 -2109124,0,0,0 -2109201,8,6,14 -2109301,263,244,507 -2109302,218,190,408 -2109303,165,198,363 -2109304,130,137,267 -2109305,93,75,168 -2109306,226,206,432 -2109307,99,90,189 -2109308,164,166,330 -2109309,112,124,236 -2109310,181,189,370 -2109311,0,0,0 -2109312,196,186,382 -2109313,107,118,225 -2109314,151,152,303 -2109315,275,319,594 -2109316,180,269,449 -2109317,266,267,533 -2109318,228,244,472 -2109319,275,313,588 -2109320,202,190,392 -2109321,167,185,352 -2109322,209,264,473 -2109323,431,498,929 -2109324,199,247,446 -2109325,116,118,234 -2109326,197,201,398 -2109327,165,156,321 -2109328,173,177,350 -2109329,143,141,284 -2109330,190,211,401 -2109331,190,193,383 -2109332,213,230,443 -2109333,233,255,488 -2109334,178,174,352 -2109335,187,178,365 -2109336,148,173,321 -2109337,202,208,410 -2109338,206,208,414 -2109339,366,343,709 -2109340,257,238,495 -2109341,239,287,526 -2109342,325,304,629 -2109343,284,288,572 -2109344,201,180,381 -2109345,199,203,402 -2109346,132,139,271 -2109347,118,115,233 -2109348,107,124,231 -2109349,152,142,294 -2109350,311,338,649 -2109351,43,39,82 -2109401,140,150,290 -2109402,223,186,409 -2109403,176,192,368 -2109404,132,147,279 -2109405,261,271,532 -2109406,90,103,193 -2109407,236,237,473 -2109408,187,161,348 -2109409,92,76,168 -2109410,294,281,575 -2109411,235,231,466 -2109412,128,139,267 -2109413,369,369,738 -2109414,236,289,525 -2109415,233,245,478 -2109416,216,195,411 -2109417,161,164,325 -2109418,106,127,233 -2109419,160,159,319 -2109420,196,170,366 -2109421,206,176,382 -2109422,119,117,236 -2109423,191,214,405 -2109424,154,156,310 -2109425,199,237,436 -2109426,161,157,318 -2109427,160,159,319 -2109428,115,124,239 -2109429,230,237,467 -2109430,155,149,304 -2109431,85,110,195 -2109501,127,111,238 -2109502,224,252,476 -2109503,172,173,345 -2109504,291,310,601 -2109505,216,192,408 -2109506,174,181,355 -2109507,143,188,331 -2109508,169,183,352 -2109509,209,215,424 -2109510,0,0,0 -2109511,324,419,743 -2109512,226,243,469 -2109513,202,197,399 -2109514,227,255,482 -2109515,362,372,734 -2109516,219,202,421 -2109517,208,207,415 -2109518,219,212,431 -2109519,196,182,378 -2109520,226,259,485 -2109521,193,194,387 -2109522,209,291,500 -2109523,269,307,576 -2109524,150,168,318 -2109525,252,262,514 -2109526,280,286,566 -2109527,278,280,558 -2109528,181,211,392 -2109529,214,215,429 -2109530,167,196,363 -2109531,189,202,391 -2109532,315,328,643 -2109533,203,217,420 -2109534,270,257,527 -2109535,233,287,520 -2109536,209,221,430 -2109537,166,193,359 -2109538,148,154,302 -2109601,270,326,596 -2109602,97,114,211 -2109603,164,172,336 -2109604,5,5,10 -2109605,198,223,421 -2109606,177,170,347 -2109607,175,162,337 -2109608,268,341,609 -2109609,334,326,660 -2109610,190,162,352 -2109611,227,211,438 -2109612,208,232,440 -2109613,298,299,597 -2109614,299,249,548 -2109615,181,232,413 -2109616,220,224,444 -2109617,148,130,278 -2109618,137,152,289 -2109619,240,253,493 -2109620,189,206,395 -2109621,98,118,216 -2109622,179,204,383 -2109623,255,304,559 -2109624,239,225,464 -2109625,4,0,4 -2109626,268,260,528 -2109627,204,220,424 -2109628,268,267,535 -2109629,147,152,299 -2109630,243,261,504 -2109631,131,148,279 -2109632,156,156,312 -2109633,234,220,454 -2109634,254,247,501 -2109635,179,137,316 -2109636,0,0,0 -2109701,149,143,292 -2109702,168,176,344 -2109703,124,136,260 -2109704,118,154,272 -2109705,118,118,236 -2109706,169,174,343 -2109707,122,119,241 -2109708,197,218,415 -2109709,151,155,306 -2109710,141,163,304 -2109711,268,270,538 -2109712,105,113,218 -2109713,118,151,269 -2109714,183,203,386 -2109715,169,218,387 -2109716,162,206,368 -2109717,347,359,706 -2109718,24,21,45 -2109719,140,142,282 -2109720,223,216,439 -2109721,324,354,678 -2109722,198,201,399 -2109723,248,271,519 -2109724,153,140,293 -2109725,148,159,307 -2109726,203,211,414 -2109727,121,126,247 -2109728,166,149,315 -2109729,473,474,947 -2109730,126,131,257 -2109731,204,215,419 -2109732,158,179,337 -2109733,143,150,293 -2109734,169,166,335 -2109735,270,312,582 -2109736,187,195,382 -2109737,192,257,449 -2109738,124,123,247 -2109739,388,471,859 -2109740,226,223,449 -2109741,292,263,555 -2109742,230,294,524 -2109743,447,419,866 -2109744,232,236,468 -2109745,231,257,488 -2109746,180,163,343 -2109747,170,198,368 -2109748,223,232,455 -2109749,207,248,455 -2109750,249,269,518 -2109751,178,200,378 -2109752,160,207,367 -2109753,136,139,275 -2109754,145,282,427 -2109755,136,139,275 -2109756,217,210,427 -2109757,188,156,344 -2109758,227,237,464 -2109759,261,297,558 -2109760,131,137,268 -2109761,206,225,431 -2109762,342,329,671 -2109763,4,3,7 -2109764,199,211,410 -2109801,202,196,398 -2109802,0,0,0 -2109803,249,221,470 -2109804,203,185,388 -2109805,13,9,22 -2109806,213,194,407 -2109807,242,220,462 -2109808,148,170,318 -2109809,136,138,274 -2109810,100,107,207 -2109811,150,147,297 -2109812,72,71,143 -2109813,311,302,613 -2109814,211,232,443 -2109901,18,11,29 -2110001,164,166,330 -2110002,110,85,195 -2110003,242,249,491 -2110004,292,250,542 -2110005,0,0,0 -2110006,171,169,340 -2110007,14,10,24 -2110008,188,189,377 -2110009,197,199,396 -2110010,212,202,414 -2110011,165,151,316 -2110012,170,121,291 -2110013,75,44,119 -2110101,136,160,296 -2110102,153,172,325 -2110103,331,321,652 -2110104,157,177,334 -2110105,117,99,216 -2110106,161,161,322 -2110107,241,239,480 -2110108,155,142,297 -2110109,222,206,428 -2110110,188,213,401 -2110111,154,193,347 -2110112,185,188,373 -2110113,166,177,343 -2110114,161,127,288 -2110115,266,303,569 -2110116,222,239,461 -2110117,205,203,408 -2110118,251,228,479 -2110119,246,237,483 -2110120,83,93,176 -2110121,204,206,410 -2110122,283,274,557 -2110123,178,269,447 -2110124,178,219,397 -2110125,220,252,472 -2110126,255,281,536 -2110127,152,143,295 -2110128,169,177,346 -2110129,178,153,331 -2110130,271,266,537 -2110131,106,109,215 -2110132,187,213,400 -2110133,142,134,276 -2110134,162,136,298 -2110135,109,104,213 -2110201,137,148,285 -2110202,231,238,469 -2110203,825,19,844 -2110204,124,128,252 -2110205,145,169,314 -2110206,231,212,443 -2110207,167,142,309 -2110208,148,131,279 -2110209,214,201,415 -2110210,184,193,377 -2110211,151,167,318 -2110212,116,129,245 -2110301,274,303,577 -2110302,63,57,120 -2110303,283,266,549 -2110304,187,220,407 -2110305,225,242,467 -2110306,114,142,256 -2110307,210,234,444 -2110308,194,213,407 -2110309,205,211,416 -2110310,84,75,159 -2110311,248,313,561 -2110312,159,187,346 -2110313,254,283,537 -2110314,170,178,348 -2110315,124,147,271 -2110316,220,232,452 -2110317,224,263,487 -2110318,222,260,482 -2110319,236,296,532 -2110320,212,280,492 -2110321,217,234,451 -2110322,144,177,321 -2110323,276,299,575 -2110324,151,181,332 -2110325,277,297,574 -2110326,208,221,429 -2110327,273,309,582 -2110328,200,215,415 -2110329,104,101,205 -2110330,159,140,299 -2110331,249,264,513 -2110332,102,125,227 -2110333,248,275,523 -2110334,242,247,489 -2110401,127,120,247 -2110402,98,94,192 -2110403,237,241,478 -2110404,120,115,235 -2110405,161,140,301 -2110406,147,145,292 -2110407,3,0,3 -2110408,127,120,247 -2110409,140,120,260 -2110410,187,173,360 -2110411,260,228,488 -2110412,174,195,369 -2110413,172,177,349 -2110414,269,277,546 -2110415,236,245,481 -2110416,227,197,424 -2110501,99,113,212 -2110502,310,295,605 -2110503,224,237,461 -2110504,150,162,312 -2110505,153,170,323 -2110506,246,220,466 -2110507,217,240,457 -2110508,198,184,382 -2110509,146,155,301 -2110510,285,293,578 -2110511,489,556,1045 -2110512,160,163,323 -2110513,393,390,783 -2110514,217,234,451 -2110515,191,188,379 -2110516,114,144,258 -2110517,210,231,441 -2110518,186,218,404 -2110519,166,158,324 -2110520,194,189,383 -2110521,197,211,408 -2110522,329,319,648 -2110523,329,361,690 -2110524,213,240,453 -2110525,167,183,350 -2110526,201,239,440 -2110527,184,144,328 -2110528,151,155,306 -2110529,235,252,487 -2110530,233,267,500 -2110531,268,302,570 -2110532,108,98,206 -2110533,231,238,469 -2110534,269,336,605 -2110535,314,309,623 -2110536,163,195,358 -2110537,225,252,477 -2110538,256,242,498 -2110539,208,203,411 -2110540,259,261,520 -2110541,300,291,591 -2110542,203,241,444 -2110543,278,267,545 -2110544,423,441,864 -2110545,305,290,595 -2110546,135,129,264 -2110547,149,123,272 -2110548,96,105,201 -2110549,171,170,341 -2110550,175,239,414 -2110601,258,310,568 -2110602,272,313,585 -2110603,193,241,434 -2110604,225,242,467 -2110605,180,218,398 -2110606,135,181,316 -2110607,220,236,456 -2110608,226,270,496 -2110609,255,272,527 -2110610,166,172,338 -2110611,223,240,463 -2110612,251,280,531 -2110613,206,210,416 -2110614,307,335,642 -2110615,178,216,394 -2110616,147,171,318 -2110617,235,279,514 -2110618,149,183,332 -2110619,136,150,286 -2110701,217,257,474 -2110702,189,197,386 -2110703,229,243,472 -2110704,191,179,370 -2110705,239,255,494 -2110706,316,305,621 -2110707,281,312,593 -2110708,177,184,361 -2110709,302,344,646 -2110710,169,150,319 -2110711,143,168,311 -2110712,244,250,494 -2110713,214,245,459 -2110714,251,235,486 -2110715,217,264,481 -2110716,255,200,455 -2110717,184,171,355 -2110718,178,180,358 -2110719,279,293,572 -2110720,290,252,542 -2110721,210,200,410 -2110722,109,100,209 -2110723,154,176,330 -2110724,162,178,340 -2110725,216,248,464 -2110726,188,222,410 -2110727,175,166,341 -2110728,139,142,281 -2110729,140,159,299 -2110730,139,157,296 -2110731,260,265,525 -2110801,163,162,325 -2110802,119,127,246 -2110803,284,253,537 -2110804,166,166,332 -2110805,256,280,536 -2110806,219,247,466 -2110807,153,165,318 -2110808,201,221,422 -2110809,270,296,566 -2110810,217,232,449 -2110811,185,222,407 -2110812,128,125,253 -2110813,171,211,382 -2110814,203,224,427 -2110815,264,272,536 -2110816,201,212,413 -2110817,159,165,324 -2110818,161,156,317 -2110819,276,310,586 -2110820,264,302,566 -2110821,252,270,522 -2110822,387,344,731 -2110823,264,289,553 -2110824,281,275,556 -2110825,277,287,564 -2110826,177,188,365 -2110827,166,193,359 -2110828,210,197,407 -2110829,254,246,500 -2110830,153,175,328 -2110831,244,277,521 -2110832,179,222,401 -2110833,282,261,543 -2110834,216,208,424 -2110835,182,221,403 -2110836,178,201,379 -2110837,168,142,310 -2110838,272,304,576 -2110839,146,161,307 -2110840,151,151,302 -2110841,219,205,424 -2110842,225,203,428 -2110843,225,201,426 -2110844,218,229,447 -2110845,164,173,337 -2110846,203,229,432 -2110847,195,189,384 -2110848,105,131,236 -2110849,226,232,458 -2110850,210,234,444 -2110851,137,156,293 -2110852,105,110,215 -2110853,394,357,751 -2110854,147,163,310 -2110855,206,201,407 -2110856,93,104,197 -2110857,114,130,244 -2110858,233,261,494 -2110859,122,186,308 -2110860,146,150,296 -2110901,254,271,525 -2110902,181,188,369 -2110903,146,162,308 -2110904,211,221,432 -2110905,170,172,342 -2110906,266,233,499 -2110907,217,220,437 -2110908,158,156,314 -2110909,238,256,494 -2110910,143,158,301 -2110911,211,236,447 -2110912,193,209,402 -2110913,221,229,450 -2110914,161,157,318 -2110915,191,212,403 -2110916,177,173,350 -2110917,208,189,397 -2110918,257,249,506 -2110919,170,204,374 -2110920,183,184,367 -2110921,189,198,387 -2110922,223,230,453 -2110923,217,208,425 -2110924,129,119,248 -2111001,186,208,394 -2111002,190,215,405 -2111003,247,254,501 -2111004,142,147,289 -2111005,117,110,227 -2111006,265,248,513 -2111007,226,258,484 -2111008,231,272,503 -2111009,0,5,5 -2111010,300,322,622 -2111011,141,155,296 -2111012,224,250,474 -2111013,273,276,549 -2111014,186,184,370 -2111015,297,342,639 -2111016,220,215,435 -2111017,132,136,268 -2111018,174,191,365 -2111019,240,211,451 -2111020,0,0,0 -2111021,6,7,13 -2111022,208,187,395 -2111101,152,222,374 -2111102,128,162,290 -2111103,338,346,684 -2111104,289,312,601 -2111105,287,284,571 -2111106,172,169,341 -2111107,233,290,523 -2111108,260,346,606 -2111109,159,156,315 -2111110,257,275,532 -2111111,122,137,259 -2111112,294,314,608 -2111113,269,330,599 -2111114,265,296,561 -2111115,233,247,480 -2111116,129,109,238 -2111117,183,213,396 -2111118,208,259,467 -2111119,138,171,309 -2111120,157,183,340 -2111121,148,187,335 -2111122,163,170,333 -2111123,311,267,578 -2111124,197,200,397 -2111125,119,145,264 -2111126,198,218,416 -2111127,197,211,408 -2111128,271,275,546 -2111129,230,260,490 -2111130,259,300,559 -2111131,137,164,301 -2111132,226,244,470 -2111133,222,285,507 -2111134,176,157,333 -2111135,200,219,419 -2111136,288,313,601 -2111137,243,252,495 -2111138,206,225,431 -2111139,170,163,333 -2111140,245,297,542 -2111141,187,192,379 -2111142,179,228,407 -2111143,266,311,577 -2111144,171,215,386 -2111145,253,277,530 -2111146,206,228,434 -2111147,192,181,373 -2111148,290,322,612 -2111149,190,193,383 -2111150,106,142,248 -2111151,171,200,371 -2111152,174,196,370 -2111153,0,0,0 -2111201,252,278,530 -2111202,234,216,450 -2111203,163,191,354 -2111204,143,149,292 -2111205,330,291,621 -2111206,181,186,367 -2111207,208,264,472 -2111208,179,181,360 -2111209,247,270,517 -2111210,218,253,471 -2111211,127,144,271 -2111212,232,242,474 -2111213,227,214,441 -2111214,228,256,484 -2111215,200,195,395 -2111216,218,218,436 -2111217,155,202,357 -2111218,139,168,307 -2111219,217,220,437 -2111220,225,255,480 -2111221,223,284,507 -2111222,136,144,280 -2111223,238,263,501 -2111224,210,235,445 -2111225,277,310,587 -2111226,193,218,411 -2111227,172,180,352 -2111228,227,260,487 -2111229,219,221,440 -2111230,239,249,488 -2111231,107,119,226 -2111232,211,235,446 -2111233,193,227,420 -2111234,239,216,455 -2111235,282,276,558 -2111236,132,126,258 -2111237,158,182,340 -2111238,179,209,388 -2111239,197,204,401 -2111240,142,135,277 -2111241,137,158,295 -2111242,193,154,347 -2111301,0,0,0 -2111302,141,181,322 -2111303,288,307,595 -2111304,311,301,612 -2111305,356,347,703 -2111306,336,329,665 -2111307,295,298,593 -2111308,171,161,332 -2111309,164,178,342 -2111310,136,145,281 -2111311,295,302,597 -2111312,239,272,511 -2111313,213,204,417 -2111314,197,200,397 -2111315,211,213,424 -2111316,200,247,447 -2111317,247,261,508 -2111318,148,142,290 -2111319,225,248,473 -2111320,186,201,387 -2111321,195,222,417 -2111322,163,184,347 -2111323,180,200,380 -2111324,260,256,516 -2111325,176,205,381 -2111326,227,219,446 -2111327,262,301,563 -2111328,233,216,449 -2111329,113,98,211 -2111330,154,154,308 -2111331,148,170,318 -2111332,133,122,255 -2111401,124,125,249 -2111402,230,248,478 -2111403,180,184,364 -2111404,173,194,367 -2111405,166,204,370 -2111406,241,278,519 -2111407,276,284,560 -2111408,177,224,401 -2111409,258,290,548 -2111410,251,264,515 -2111411,131,150,281 -2111412,168,186,354 -2111413,305,331,636 -2111414,229,253,482 -2111415,111,117,228 -2111416,141,177,318 -2111417,186,211,397 -2111418,189,189,378 -2111419,120,146,266 -2111420,153,175,328 -2111421,244,247,491 -2111422,153,146,299 -2111423,220,242,462 -2111424,136,164,300 -2111425,208,219,427 -2111426,214,198,412 -2111427,280,314,594 -2111428,227,236,463 -2111429,178,182,360 -2111430,153,164,317 -2111431,164,160,324 -2111432,179,201,380 -2111433,216,208,424 -2111434,152,166,318 -2111435,240,253,493 -2111436,187,162,349 -2111437,290,284,574 -2111438,245,259,504 -2111439,148,166,314 -2111440,205,291,496 -2111441,250,262,512 -2111442,251,277,528 -2111443,214,216,430 -2111444,284,303,587 -2111445,215,208,423 -2111446,198,214,412 -2111447,200,197,397 -2111448,165,210,375 -2111449,205,256,461 -2111450,149,163,312 -2111451,132,148,280 -2111452,273,276,549 -2111453,184,197,381 -2111454,190,172,362 -2111455,110,149,259 -2111456,133,134,267 -2111457,137,181,318 -2111458,176,204,380 -2111459,152,152,304 -2111460,181,173,354 -2111461,248,264,512 -2111501,176,211,387 -2111502,209,221,430 -2111503,160,163,323 -2111504,149,158,307 -2111505,216,208,424 -2111506,193,276,469 -2111507,221,313,534 -2111508,267,309,576 -2111509,143,105,248 -2111510,204,170,374 -2111511,240,243,483 -2111512,256,294,550 -2111513,190,192,382 -2111514,155,189,344 -2111515,209,246,455 -2111516,228,248,476 -2111517,614,615,1229 -2111518,0,0,0 -2111519,151,197,348 -2111520,222,295,517 -2111521,136,169,305 -2111601,174,176,350 -2111602,228,282,510 -2111603,225,228,453 -2111604,223,214,437 -2111605,176,160,336 -2111606,167,212,379 -2111607,212,218,430 -2111608,205,260,465 -2111609,164,158,322 -2111610,192,220,412 -2111611,206,213,419 -2111612,197,231,428 -2111613,261,291,552 -2111614,221,225,446 -2111615,268,253,521 -2111616,238,252,490 -2111617,223,240,463 -2111618,227,237,464 -2111619,246,245,491 -2111620,181,186,367 -2111621,211,248,459 -2111622,232,259,491 -2111623,243,224,467 -2111624,186,215,401 -2111625,202,242,444 -2111626,243,261,504 -2111627,173,177,350 -2111628,204,214,418 -2111629,4,4,8 -2111630,164,178,342 -2111631,287,342,629 -2111632,140,156,296 -2111701,337,324,661 -2111702,197,219,416 -2111703,121,130,251 -2111704,220,209,429 -2111705,202,197,399 -2111706,280,315,595 -2111707,270,292,562 -2111708,256,243,499 -2111709,214,216,430 -2111710,221,298,519 -2111711,161,178,339 -2111712,169,225,394 -2111713,195,216,411 -2111714,155,137,292 -2111715,242,240,482 -2111716,153,146,299 -2111717,125,117,242 -2111718,257,309,566 -2111719,280,294,574 -2111720,182,173,355 -2111721,278,255,533 -2111722,157,183,340 -2111723,217,282,499 -2111724,0,0,0 -2111725,204,172,376 -2111726,142,139,281 -2111727,190,189,379 -2111728,255,307,562 -2111729,162,153,315 -2111730,352,402,754 -2111731,215,206,421 -2111732,356,578,934 -2111801,227,196,423 -2111802,260,249,509 -2111803,510,434,944 -2111804,360,332,692 -2111805,300,245,545 -2111806,92,100,192 -2111807,101,101,202 -2111808,139,129,268 -2111809,127,122,249 -2111810,400,362,762 -2111811,3,3,6 -2111812,88,84,172 -2111813,375,327,702 -2111814,67,59,126 -2111901,115,132,247 -2111902,210,178,388 -2111903,164,200,364 -2111904,149,141,290 -2111905,109,115,224 -2111906,192,195,387 -2111907,251,282,533 -2111908,202,266,468 -2111909,243,280,523 -2111910,117,128,245 -2111911,92,94,186 -2111912,203,223,426 -2111913,0,0,0 -2111914,148,139,287 -2111915,143,196,339 -2112001,40,38,78 -2112101,7,10,17 -2112102,142,162,304 -2112103,245,218,463 -2112104,192,199,391 -2112105,264,234,498 -2112106,0,0,0 -2112107,483,510,993 -2112108,274,257,531 -2112109,190,200,390 -2112110,165,176,341 -2112111,0,0,0 -2112112,153,184,337 -2112113,183,248,431 -2112114,142,154,296 -2112115,294,340,634 -2112116,136,156,292 -2112117,357,365,722 -2112118,231,245,476 -2112119,308,286,594 -2112120,354,356,710 -2112121,85,87,172 -2112122,231,261,492 -2112123,298,347,645 -2112201,502,519,1021 -2112202,162,201,363 -2112203,342,357,699 -2112204,162,170,332 -2112205,0,0,0 -2112206,294,306,600 -2112207,476,496,972 -2112208,526,420,946 -2112209,280,247,527 -2112210,219,186,405 -2112211,240,209,449 -2112212,322,342,664 -2112213,233,254,487 -2112214,237,216,453 -2112215,353,304,657 -2112216,199,174,373 -2112217,305,265,570 -2112218,141,100,241 -2112219,660,646,1306 -2112220,468,430,898 -2112221,168,179,347 -2112222,239,204,443 -2112223,123,113,236 -2112224,216,190,406 -2112225,111,109,220 -2112226,458,504,962 -2112227,862,871,1733 -2112228,175,188,363 -2112229,381,378,759 -2112230,177,177,354 -2112231,133,132,265 -2112232,321,298,619 -2112233,226,201,427 -2112234,183,187,370 -2112235,250,305,555 -2112301,485,420,905 -2112302,203,133,336 -2112303,255,247,502 -2112304,173,149,322 -2112305,138,128,266 -2112306,172,155,327 -2112307,144,126,270 -2112308,295,245,540 -2112309,217,242,459 -2112310,137,142,279 -2112311,311,263,574 -2112312,302,348,650 -2112313,234,0,234 -2112314,346,308,654 -2112315,0,0,0 -2112316,262,274,536 -2112317,0,0,0 -2112318,241,245,486 -2112319,191,213,404 -2112320,95,83,178 -2112321,291,303,594 -2112322,259,263,522 -2112323,81,98,179 -2112324,255,216,471 -2112325,248,271,519 -2112326,118,134,252 -2112327,118,115,233 -2112328,197,216,413 -2112329,242,243,485 -2112330,266,246,512 -2112331,202,188,390 -2112332,259,245,504 -2112333,33,9,42 -2112334,203,175,378 -2112335,323,309,632 -2112336,260,237,497 -2112337,342,323,665 -2112338,143,142,285 -2112401,43,21,64 -2112402,191,255,446 -2112403,8,4,12 -2112404,145,198,343 -2112405,287,334,621 -2112406,133,135,268 -2112407,712,805,1517 -2112408,473,528,1001 -2112409,167,149,316 -2112410,208,198,406 -2112411,174,214,388 -2112412,176,171,347 -2112413,213,240,453 -2112501,206,232,438 -2112502,312,265,577 -2112503,226,206,432 -2112504,152,187,339 -2112505,279,352,631 -2112506,196,197,393 -2112507,249,254,503 -2112508,203,201,404 -2112509,143,149,292 -2112510,239,246,485 -2112511,73,163,236 -2112512,318,329,647 -2112513,141,172,313 -2112514,124,179,303 -2112601,329,337,666 -2112602,274,269,543 -2112603,211,226,437 -2112604,161,196,357 -2112605,148,164,312 -2112606,230,210,440 -2112607,320,283,603 -2112608,315,259,574 -2112609,421,360,781 -2112610,132,129,261 -2112611,345,321,666 -2112612,0,0,0 -2112613,229,216,445 -2112614,180,183,363 -2112615,263,209,472 -2112616,214,193,407 -2112617,260,239,499 -2112618,454,444,898 -2112619,377,290,667 -2112620,165,141,306 -2112621,403,359,762 -2112622,35,31,66 -2112623,40,41,81 -2112624,3,3,6 -2112625,97,103,200 -2112626,0,0,0 -2112627,88,83,171 -2112628,167,155,322 -2112701,0,0,0 -2112702,0,0,0 -2112801,132,116,248 -2112802,162,176,338 -2112803,275,266,541 -2112804,204,222,426 -2112805,153,150,303 -2112806,181,209,390 -2112807,209,231,440 -2112808,260,252,512 -2112809,227,254,481 -2112810,114,134,248 -2112811,164,181,345 -2112812,199,197,396 -2112813,279,316,595 -2112814,194,184,378 -2112815,165,199,364 -2112816,209,258,467 -2112817,207,225,432 -2112818,123,147,270 -2112819,234,226,460 -2112820,210,238,448 -2112821,156,141,297 -2112822,194,213,407 -2112823,175,173,348 -2112824,177,204,381 -2112825,179,218,397 -2112826,242,251,493 -2112827,281,263,544 -2112828,316,325,641 -2112829,497,481,978 -2112830,375,345,720 -2112831,111,115,226 -2112832,0,3,3 -2112833,320,290,610 -2112901,153,187,340 -2112902,266,276,542 -2112903,233,234,467 -2112904,202,240,442 -2112905,306,291,597 -2112906,138,141,279 -2112907,276,316,592 -2112908,239,259,498 -2112909,223,241,464 -2112910,183,200,383 -2112911,144,142,286 -2112912,107,111,218 -2112913,229,244,473 -2112914,175,201,376 -2112915,122,130,252 -2112916,214,252,466 -2112917,0,0,0 -2112918,0,0,0 -2112919,0,0,0 -2112920,0,0,0 -2112921,217,227,444 -2112922,255,315,570 -2112923,267,272,539 -2112924,216,223,439 -2112925,269,280,549 -2112926,196,224,420 -2112927,150,168,318 -2112928,195,181,376 -2112929,150,156,306 -2112930,206,203,409 -2112931,242,265,507 -2112932,174,210,384 -2112933,163,204,367 -2112934,144,173,317 -2112935,197,203,400 -2112936,193,236,429 -2112937,94,107,201 -2112938,134,120,254 -2112939,213,201,414 -2112940,160,156,316 -2113001,245,269,514 -2113002,294,285,579 -2113003,235,234,469 -2113004,158,165,323 -2113005,139,171,310 -2113006,163,193,356 -2113007,231,248,479 -2113008,110,127,237 -2113009,154,162,316 -2113010,256,296,552 -2113011,225,233,458 -2113012,151,146,297 -2113013,163,205,368 -2113014,134,141,275 -2113015,127,162,289 -2113016,213,258,471 -2113017,270,257,527 -2113018,651,742,1393 -2113019,164,163,327 -2113020,293,309,602 -2113021,136,116,252 -2113022,295,292,587 -2113023,162,167,329 -2113024,267,250,517 -2113025,187,226,413 -2113026,245,226,471 -2113027,170,229,399 -2113028,198,165,363 -2113029,250,216,466 -2113030,166,172,338 -2113031,341,389,730 -2113032,131,117,248 -2113033,107,152,259 -2113101,0,0,0 -2113102,6,0,6 -2113201,152,180,332 -2113202,119,183,302 -2113203,288,277,565 -2113204,180,144,324 -2113205,208,184,392 -2113206,161,167,328 -2113207,166,161,327 -2113208,199,254,453 -2113209,201,215,416 -2113210,176,238,414 -2113211,135,125,260 -2113212,181,186,367 -2113213,258,295,553 -2113214,191,231,422 -2113215,247,251,498 -2113216,306,307,613 -2113217,247,265,512 -2113218,181,155,336 -2113219,203,219,422 -2113220,154,164,318 -2113221,140,114,254 -2113222,82,90,172 -2113223,169,209,378 -2113224,158,168,326 -2113225,170,116,286 -2113226,125,150,275 -2113301,162,121,283 -2113302,114,127,241 -2113303,148,132,280 -2113304,172,141,313 -2113305,244,182,426 -2113306,0,0,0 -2113307,259,254,513 -2113308,293,339,632 -2113309,0,0,0 -2113310,97,101,198 -2113311,143,177,320 -2113312,196,210,406 -2113313,223,174,397 -2113314,267,263,530 -2113315,194,198,392 -2113316,224,219,443 -2113317,280,230,510 -2113318,245,233,478 -2113319,0,0,0 -2113320,157,162,319 -2113321,136,142,278 -2113322,249,258,507 -2113323,294,255,549 -2113324,158,171,329 -2113325,0,0,0 -2113326,241,240,481 -2113327,257,183,440 -2113328,188,179,367 -2113329,230,206,436 -2113330,221,177,398 -2113331,304,238,542 -2113332,371,345,716 -2113333,224,255,479 -2113334,394,357,751 -2113335,218,168,386 -2113336,221,199,420 -2113337,349,319,668 -2113338,177,156,333 -2113339,243,260,503 -2113340,176,184,360 -2113341,143,221,364 -2113342,172,238,410 -2113343,253,223,476 -2113344,244,246,490 -2113345,184,116,300 -2113346,227,201,428 -2113347,145,122,267 -2113348,292,219,511 -2113349,252,245,497 -2113350,235,206,441 -2113351,283,246,529 -2113352,291,299,590 -2113353,241,212,453 -2113354,202,206,408 -2113355,244,242,486 -2113356,134,130,264 -2113401,194,177,371 -2113402,170,154,324 -2113403,175,175,350 -2113404,99,115,214 -2113405,273,233,506 -2113406,252,251,503 -2113407,234,201,435 -2113408,188,156,344 -2113409,122,138,260 -2113410,116,124,240 -2113411,194,173,367 -2113412,281,293,574 -2113413,277,279,556 -2113414,197,184,381 -2113415,219,223,442 -2113416,237,252,489 -2113417,202,204,406 -2113418,150,164,314 -2113419,223,237,460 -2113420,243,256,499 -2113421,208,166,374 -2113422,260,223,483 -2113423,202,180,382 -2113424,147,124,271 -2113425,236,217,453 -2113426,165,159,324 -2113427,228,246,474 -2113428,231,233,464 -2113429,179,180,359 -2113430,187,211,398 -2113431,123,141,264 -2113432,292,311,603 -2113433,211,190,401 -2113434,230,228,458 -2113435,211,202,413 -2113436,95,110,205 -2113437,229,212,441 -2113438,267,285,552 -2113439,174,182,356 -2113501,271,269,540 -2113502,191,217,408 -2113503,315,349,664 -2113504,223,242,465 -2113505,163,182,345 -2113506,234,278,512 -2113507,300,366,666 -2113508,187,178,365 -2113509,186,218,404 -2113510,202,214,416 -2113511,192,200,392 -2113512,177,212,389 -2113513,265,251,516 -2113514,169,185,354 -2113515,188,245,433 -2113516,263,309,572 -2113517,264,346,610 -2113518,117,124,241 -2113519,210,258,468 -2113601,309,319,628 -2113602,303,222,525 -2113603,208,188,396 -2113604,162,176,338 -2113605,244,258,502 -2113606,249,229,478 -2113607,282,230,512 -2113608,275,257,532 -2113609,156,157,313 -2113610,247,244,491 -2113611,195,222,417 -2113612,172,157,329 -2113613,204,209,413 -2113614,184,198,382 -2113615,108,78,186 -2113616,202,193,395 -2113617,297,211,508 -2113618,230,256,486 -2113619,238,237,475 -2113620,186,184,370 -2113621,178,169,347 -2113622,163,161,324 -2113623,249,258,507 -2113624,294,285,579 -2113625,205,255,460 -2113626,253,275,528 -2113627,213,244,457 -2113628,282,339,621 -2113629,212,196,408 -2113630,215,212,427 -2113631,154,211,365 -2113632,193,218,411 -2113633,258,315,573 -2113634,203,234,437 -2113635,210,271,481 -2113636,122,137,259 -2113637,173,175,348 -2113638,147,141,288 -2113639,222,269,491 -2113640,110,111,221 -2113641,153,143,296 -2113701,0,0,0 -2113702,346,357,703 -2113703,135,134,269 -2113704,325,313,638 -2113705,179,188,367 -2113706,218,249,467 -2113707,246,251,497 -2113708,172,209,381 -2113709,252,273,525 -2113710,332,345,677 -2113711,235,222,457 -2113712,137,173,310 -2113713,201,186,387 -2113714,223,214,437 -2113715,225,261,486 -2113716,182,171,353 -2113717,335,280,615 -2113718,172,178,350 -2113719,263,253,516 -2113720,298,331,629 -2113721,162,146,308 -2113722,211,254,465 -2113723,275,290,565 -2113724,262,265,527 -2113725,257,282,539 -2113726,184,195,379 -2113727,256,305,561 -2113728,243,364,607 -2113729,366,339,705 -2113730,313,320,633 -2113731,153,172,325 -2113801,148,184,332 -2113802,223,203,426 -2113803,134,147,281 -2113804,179,229,408 -2113805,190,226,416 -2113806,128,142,270 -2113807,133,148,281 -2113808,192,212,404 -2113809,152,159,311 -2113810,176,215,391 -2113811,194,189,383 -2113812,290,338,628 -2113813,209,232,441 -2113814,247,300,547 -2113815,188,221,409 -2113816,189,200,389 -2113817,174,208,382 -2113818,221,239,460 -2113819,185,228,413 -2113820,270,290,560 -2113821,176,162,338 -2113822,183,227,410 -2113823,224,314,538 -2113824,215,224,439 -2113825,199,255,454 -2113826,172,189,361 -2113827,226,220,446 -2113828,137,152,289 -2113829,180,207,387 -2113830,241,229,470 -2113831,170,190,360 -2113832,127,125,252 -2113901,169,152,321 -2113902,184,256,440 -2113903,236,220,456 -2113904,137,149,286 -2113905,299,313,612 -2113906,185,206,391 -2113907,361,317,678 -2113908,155,104,259 -2113909,235,255,490 -2113910,272,191,463 -2113911,243,271,514 -2114001,142,143,285 -2114002,183,171,354 -2114003,124,142,266 -2114004,143,174,317 -2114005,147,180,327 -2114006,170,205,375 -2114007,160,177,337 -2114008,239,274,513 -2114009,212,216,428 -2114010,214,231,445 -2114011,175,183,358 -2114012,154,174,328 -2114013,0,0,0 -2114014,229,282,511 -2114015,203,219,422 -2114016,261,277,538 -2114017,155,178,333 -2114018,166,174,340 -2114019,171,176,347 -2114020,113,166,279 -2114021,186,236,422 -2114022,176,194,370 -2114023,169,213,382 -2114101,332,342,674 -2114102,225,215,440 -2114103,165,121,286 -2114104,335,300,635 -2114105,343,319,662 -2114106,373,425,798 -2114107,134,162,296 -2114108,143,152,295 -2114109,246,210,456 -2114110,137,139,276 -2114111,177,188,365 -2114112,308,306,614 -2114113,127,116,243 -2114114,209,224,433 -2114201,196,246,442 -2114202,186,191,377 -2114203,159,238,397 -2114204,233,270,503 -2114205,227,268,495 -2114206,276,228,504 -2114207,112,109,221 -2114208,242,235,477 -2114209,217,209,426 -2114210,216,246,462 -2114211,177,192,369 -2114212,225,250,475 -2114213,173,204,377 -2114214,149,82,231 -2114215,195,105,300 -2114216,147,162,309 -2114217,299,300,599 -2114218,129,112,241 -2114219,189,185,374 -2114220,232,244,476 -2114221,242,270,512 -2114222,133,138,271 -2114223,298,294,592 -2114301,197,233,430 -2114302,149,157,306 -2114303,217,237,454 -2114304,132,134,266 -2114305,271,295,566 -2114306,267,271,538 -2114307,251,295,546 -2114308,245,318,563 -2114309,245,279,524 -2114310,167,190,357 -2114311,225,227,452 -2114312,214,261,475 -2114313,110,125,235 -2114314,227,277,504 -2114315,215,252,467 -2114316,251,268,519 -2114317,255,272,527 -2114318,173,199,372 -2114319,90,176,266 -2114320,165,159,324 -2114321,166,179,345 -2114322,194,216,410 -2114323,182,204,386 -2114324,260,259,519 -2114325,202,192,394 -2114326,133,152,285 -2114327,224,212,436 -2114401,220,206,426 -2114402,206,244,450 -2114403,251,249,500 -2114404,187,171,358 -2114405,203,282,485 -2114406,228,255,483 -2114407,192,264,456 -2114408,179,211,390 -2114409,205,260,465 -2114410,221,239,460 -2114411,121,128,249 -2114412,252,270,522 -2114413,220,218,438 -2114414,206,219,425 -2114415,193,161,354 -2114416,187,195,382 -2114417,206,233,439 -2114418,240,275,515 -2114419,191,180,371 -2114420,211,191,402 -2114421,155,127,282 -2114422,148,155,303 -2114423,236,252,488 -2114424,242,228,470 -2114425,249,215,464 -2114426,242,215,457 -2114427,228,272,500 -2114428,229,244,473 -2114429,124,145,269 -2114430,215,214,429 -2114431,139,148,287 -2114432,228,252,480 -2114433,218,235,453 -2114434,121,168,289 -2114435,250,260,510 -2114436,186,242,428 -2114437,125,143,268 -2114438,147,147,294 -2114439,151,145,296 -2114440,243,216,459 -2114441,145,174,319 -2114442,232,218,450 -2114443,298,265,563 -2114444,407,384,791 -2114445,364,325,689 -2114446,263,212,475 -2114447,209,194,403 -2114448,240,263,503 -2114449,217,235,452 -2114450,273,304,577 -2114451,198,213,411 -2114452,275,243,518 -2114453,214,216,430 -2114454,261,343,604 -2114455,263,274,537 -2114456,144,126,270 -2114457,250,309,559 -2114458,171,184,355 -2114459,150,160,310 -2114460,210,211,421 -2114461,0,5,5 -2114501,224,216,440 -2114502,229,262,491 -2114503,224,233,457 -2114504,187,181,368 -2114505,222,252,474 -2114506,281,285,566 -2114507,134,155,289 -2114508,164,169,333 -2114509,0,0,0 -2114510,260,298,558 -2114511,192,181,373 -2114512,201,183,384 -2114513,173,186,359 -2114514,245,222,467 -2114515,192,230,422 -2114516,133,174,307 -2114517,250,266,516 -2114518,138,181,319 -2114519,170,176,346 -2114520,219,121,340 -2114521,160,167,327 -2114601,191,192,383 -2114602,124,129,253 -2114603,204,210,414 -2114604,173,168,341 -2114605,163,165,328 -2114606,318,288,606 -2114607,204,176,380 -2114608,120,131,251 -2114609,262,292,554 -2114610,202,234,436 -2114611,246,239,485 -2114612,173,168,341 -2114613,142,145,287 -2114614,289,304,593 -2114615,172,227,399 -2114616,141,175,316 -2114617,129,111,240 -2114618,177,169,346 -2114619,316,320,636 -2114701,230,248,478 -2114702,160,182,342 -2114703,131,131,262 -2114704,196,182,378 -2114705,237,249,486 -2114706,261,329,590 -2114707,125,125,250 -2114708,118,128,246 -2114709,248,283,531 -2114710,273,314,587 -2114711,222,262,484 -2114712,186,221,407 -2114713,296,305,601 -2114714,320,336,656 -2114715,187,218,405 -2114716,206,292,498 -2114717,229,222,451 -2114718,172,184,356 -2114719,249,308,557 -2114720,267,245,512 -2114721,200,216,416 -2114722,221,237,458 -2114723,227,295,522 -2114724,224,286,510 -2114725,252,312,564 -2114726,231,236,467 -2114727,218,256,474 -2114728,232,283,515 -2114729,196,237,433 -2114730,173,292,465 -2114731,136,176,312 -2114732,179,215,394 -2114733,218,236,454 -2114734,115,124,239 -2114735,126,146,272 -2114801,173,175,348 -2114802,220,259,479 -2114803,178,184,362 -2114804,237,224,461 -2114805,132,143,275 -2114806,244,244,488 -2114807,286,305,591 -2114808,216,244,460 -2114809,193,200,393 -2114810,146,148,294 -2114811,249,252,501 -2114812,260,269,529 -2114813,192,179,371 -2114814,170,182,352 -2114815,205,181,386 -2114816,249,221,470 -2114817,266,303,569 -2114818,122,142,264 -2114819,201,189,390 -2114820,137,181,318 -2114821,129,131,260 -2114822,236,255,491 -2114823,223,235,458 -2114824,196,197,393 -2114825,187,186,373 -2114826,155,148,303 -2114827,314,292,606 -2114828,283,290,573 -2114829,203,190,393 -2114830,207,215,422 -2114831,236,245,481 -2114832,274,304,578 -2114833,213,224,437 -2114834,181,193,374 -2114835,134,128,262 -2114836,125,119,244 -2114837,116,114,230 -2114838,216,220,436 -2114839,239,255,494 -2114840,184,198,382 -2114841,239,246,485 -2114842,122,151,273 -2114843,143,163,306 -2114844,151,155,306 -2114845,201,235,436 -2114846,0,0,0 -2114847,0,0,0 -2114848,150,151,301 -2114849,127,152,279 -2114850,201,264,465 -2114851,135,141,276 -2114852,167,168,335 -2114901,193,262,455 -2114902,197,215,412 -2114903,144,159,303 -2114904,195,244,439 -2114905,208,205,413 -2114906,264,304,568 -2114907,202,217,419 -2114908,227,272,499 -2114909,250,264,514 -2114910,176,183,359 -2114911,142,142,284 -2114912,128,170,298 -2114913,161,183,344 -2114914,195,192,387 -2114915,114,155,269 -2114916,249,245,494 -2114917,182,185,367 -2114918,241,270,511 -2114919,215,255,470 -2114920,198,207,405 -2114921,110,136,246 -2114922,115,139,254 -2114923,105,108,213 -2114924,199,211,410 -2114925,155,143,298 -2114926,151,199,350 -2114927,146,198,344 -2114928,248,286,534 -2114929,219,219,438 -2114930,246,274,520 -2114931,205,241,446 -2114932,237,255,492 -2114933,82,90,172 -2114934,253,262,515 -2114935,331,385,716 -2114936,211,214,425 -2114937,135,145,280 -2114938,86,194,280 -2114939,225,321,546 -2114940,220,246,466 -2114941,257,291,548 -2114942,149,186,335 -2114943,192,246,438 -2114944,269,282,551 -2114945,135,147,282 -2114946,272,320,592 -2114947,201,204,405 -2114948,137,164,301 -2114949,203,208,411 -2115001,165,156,321 -2115002,249,241,490 -2115003,228,226,454 -2115004,165,194,359 -2115005,214,216,430 -2115006,238,257,495 -2115007,121,110,231 -2115008,115,112,227 -2115009,161,193,354 -2115010,227,251,478 -2115011,192,171,363 -2115012,175,205,380 -2115013,273,315,588 -2115014,164,169,333 -2115015,273,336,609 -2115016,186,214,400 -2115017,158,162,320 -2115018,234,246,480 -2115019,216,226,442 -2115020,251,244,495 -2115021,297,295,592 -2115022,238,256,494 -2115023,184,235,419 -2115024,212,210,422 -2115025,148,182,330 -2115026,301,312,613 -2115027,543,521,1064 -2115028,85,103,188 -2115029,243,250,493 -2115030,151,201,352 -2115031,206,253,459 -2115032,217,246,463 -2115033,160,176,336 -2115034,166,177,343 -2115035,120,122,242 -2115036,159,186,345 -2115037,131,131,262 -2115038,141,145,286 -2115101,264,337,601 -2115102,145,169,314 -2115103,205,194,399 -2115104,247,238,485 -2115105,235,288,523 -2115106,249,277,526 -2115107,215,198,413 -2115108,119,147,266 -2115109,208,199,407 -2115110,183,224,407 -2115111,209,188,397 -2115112,107,110,217 -2115113,278,348,626 -2115114,257,285,542 -2115115,178,167,345 -2115116,315,232,547 -2115117,191,184,375 -2115118,226,213,439 -2115119,282,330,612 -2115120,94,125,219 -2115121,264,307,571 -2115122,181,238,419 -2115123,186,182,368 -2115124,125,133,258 -2115125,209,229,438 -2115126,144,187,331 -2115127,200,221,421 -2115128,268,311,579 -2115129,198,202,400 -2115130,191,181,372 -2115131,205,196,401 -2115132,99,94,193 -2115133,259,265,524 -2115134,214,260,474 -2115135,149,201,350 -2115136,315,152,467 -2115137,229,247,476 -2115138,209,210,419 -2115139,314,305,619 -2115140,208,187,395 -2115141,380,298,678 -2115142,240,238,478 -2115143,247,217,464 -2115144,268,285,553 -2115145,153,176,329 -2115146,238,230,468 -2115147,286,325,611 -2115201,296,281,577 -2115202,208,220,428 -2115203,128,118,246 -2115204,192,182,374 -2115205,241,247,488 -2115206,245,274,519 -2115207,231,240,471 -2115208,170,175,345 -2115209,141,162,303 -2115210,239,276,515 -2115211,226,226,452 -2115212,190,193,383 -2115213,154,155,309 -2115214,175,179,354 -2115215,211,222,433 -2115216,213,211,424 -2115217,195,159,354 -2115218,222,234,456 -2115219,233,241,474 -2115220,283,310,593 -2115221,125,224,349 -2115222,279,329,608 -2115223,161,185,346 -2115224,282,284,566 -2115225,142,143,285 -2115226,248,248,496 -2115227,286,312,598 -2115228,228,234,462 -2115229,213,258,471 -2115230,229,211,440 -2115231,202,258,460 -2115301,196,236,432 -2115302,199,272,471 -2115303,200,246,446 -2115304,208,228,436 -2115305,276,215,491 -2115306,216,250,466 -2115307,239,207,446 -2115308,279,289,568 -2115309,233,232,465 -2115310,186,276,462 -2115311,195,215,410 -2115312,205,188,393 -2115313,257,284,541 -2115314,150,170,320 -2115315,184,187,371 -2115316,269,311,580 -2115317,261,296,557 -2115318,187,195,382 -2115319,123,151,274 -2115320,213,240,453 -2115321,215,204,419 -2115322,273,289,562 -2115323,140,177,317 -2115324,177,249,426 -2115325,226,295,521 -2115326,164,192,356 -2115327,190,209,399 -2115328,210,229,439 -2115329,175,166,341 -2115330,223,242,465 -2115331,320,326,646 -2115332,171,173,344 -2115333,178,182,360 -2115334,215,233,448 -2115335,212,242,454 -2115336,185,237,422 -2115337,133,163,296 -2115338,189,213,402 -2115339,252,220,472 -2115340,166,168,334 -2115341,188,210,398 -2115342,160,176,336 -2115343,202,196,398 -2115344,240,272,512 -2115345,168,205,373 -2115346,232,253,485 -2115347,168,171,339 -2115348,247,259,506 -2115349,241,296,537 -2115350,184,196,380 -2115351,205,204,409 -2115352,140,108,248 -2115353,153,181,334 -2115354,176,206,382 -2115355,0,0,0 -2115356,145,164,309 -2115357,125,130,255 -2115401,158,146,304 -2115402,128,154,282 -2115403,152,187,339 -2115404,179,210,389 -2115405,123,130,253 -2115406,131,155,286 -2115407,182,171,353 -2115408,187,204,391 -2115409,196,200,396 -2115410,234,237,471 -2115411,226,270,496 -2115412,274,276,550 -2115413,184,198,382 -2115414,150,158,308 -2115415,120,119,239 -2115416,224,214,438 -2115417,202,225,427 -2115418,0,0,0 -2115501,204,209,413 -2115502,171,192,363 -2115503,303,293,596 -2115504,164,158,322 -2115505,153,259,412 -2115506,174,183,357 -2115507,115,123,238 -2115508,206,194,400 -2115509,151,178,329 -2115510,234,266,500 -2115511,264,265,529 -2115512,179,189,368 -2115513,143,141,284 -2115514,218,258,476 -2115515,142,141,283 -2115516,105,136,241 -2115517,154,148,302 -2115518,170,202,372 -2115519,188,173,361 -2115520,188,249,437 -2115521,182,192,374 -2115522,257,303,560 -2115523,114,115,229 -2115524,165,209,374 -2115525,207,230,437 -2115526,255,296,551 -2115527,101,121,222 -2115528,179,208,387 -2115529,110,128,238 -2115530,236,259,495 -2115531,143,185,328 -2115532,213,221,434 -2115533,192,214,406 -2115534,270,273,543 -2115535,166,194,360 -2115536,129,154,283 -2115537,121,145,266 -2115538,149,152,301 -2115539,130,124,254 -2115540,202,226,428 -2115541,109,125,234 -2115542,186,220,406 -2115543,87,108,195 -2115601,186,197,383 -2115602,268,292,560 -2115603,277,289,566 -2115604,154,155,309 -2115605,264,268,532 -2115606,3,0,3 -2115607,108,132,240 -2115608,5,3,8 -2115609,246,241,487 -2115610,250,273,523 -2115611,191,205,396 -2115612,184,195,379 -2115613,265,285,550 -2115614,170,149,319 -2115615,248,278,526 -2115616,149,146,295 -2115617,179,193,372 -2115618,221,215,436 -2115619,275,281,556 -2115620,248,249,497 -2115621,239,261,500 -2115622,146,166,312 -2115623,170,184,354 -2115624,178,172,350 -2115625,204,208,412 -2115626,169,181,350 -2115627,176,162,338 -2115628,160,161,321 -2115701,185,305,490 -2115702,149,156,305 -2115703,240,271,511 -2115704,175,179,354 -2115705,164,166,330 -2115706,189,213,402 -2115707,241,271,512 -2115708,242,269,511 -2115709,200,215,415 -2115710,288,297,585 -2115711,175,186,361 -2115712,272,289,561 -2115713,150,146,296 -2115714,150,132,282 -2115715,262,290,552 -2115716,223,243,466 -2115717,211,232,443 -2115718,134,153,287 -2115719,0,0,0 -2115720,176,184,360 -2115721,170,181,351 -2115722,130,140,270 -2115723,162,187,349 -2115724,230,209,439 -2115725,168,245,413 -2115726,190,177,367 -2115727,151,170,321 -2115728,132,137,269 -2115729,210,231,441 -2115730,184,179,363 -2115731,260,250,510 -2115732,273,289,562 -2115733,276,312,588 -2115734,281,287,568 -2115735,172,182,354 -2115736,190,206,396 -2115737,276,309,585 -2115738,180,183,363 -2115739,143,165,308 -2115740,113,116,229 -2115741,197,208,405 -2115742,219,221,440 -2115743,214,226,440 -2115744,128,145,273 -2115745,147,176,323 -2115746,195,210,405 -2115801,156,156,312 -2115802,174,185,359 -2115803,270,293,563 -2115804,202,213,415 -2115805,143,154,297 -2115806,170,187,357 -2115807,171,177,348 -2115808,135,142,277 -2115809,165,170,335 -2115810,123,132,255 -2115811,214,235,449 -2115812,230,254,484 -2115813,262,264,526 -2115814,134,159,293 -2115815,195,192,387 -2115816,243,232,475 -2115817,114,116,230 -2115818,213,243,456 -2115819,137,176,313 -2115820,246,225,471 -2115821,164,167,331 -2115822,157,177,334 -2115823,112,152,264 -2115824,146,196,342 -2115825,113,111,224 -2115826,157,155,312 -2115827,205,209,414 -2115828,306,367,673 -2115829,224,192,416 -2115830,151,140,291 -2115831,173,204,377 -2115832,242,243,485 -2115833,249,245,494 -2115834,311,288,599 -2115835,141,139,280 -2115836,280,281,561 -2115837,243,245,488 -2115838,168,192,360 -2115839,173,156,329 -2115840,199,238,437 -2115841,207,205,412 -2115842,234,245,479 -2115843,180,241,421 -2115844,295,351,646 -2115845,227,235,462 -2115846,137,138,275 -2115847,146,141,287 -2115848,253,294,547 -2115849,149,193,342 -2115850,160,191,351 -2115851,204,196,400 -2115852,183,211,394 -2115853,163,172,335 -2115854,180,206,386 -2115855,153,191,344 -2115856,103,136,239 -2115857,216,214,430 -2115858,196,212,408 -2115859,203,277,480 -2115860,281,298,579 -2115861,177,176,353 -2115862,175,245,420 -2115863,193,197,390 -2115864,244,271,515 -2115865,310,341,651 -2115866,0,0,0 -2115867,125,141,266 -2115868,131,124,255 -2115869,179,183,362 -2115901,273,270,543 -2115902,129,128,257 -2115903,149,163,312 -2115904,261,264,525 -2115905,231,231,462 -2115906,171,216,387 -2115907,244,248,492 -2115908,148,136,284 -2115909,157,160,317 -2115910,273,292,565 -2115911,186,185,371 -2115912,215,211,426 -2115913,111,125,236 -2115914,152,177,329 -2115915,201,178,379 -2115916,171,187,358 -2115917,201,195,396 -2115918,179,177,356 -2115919,182,241,423 -2115920,245,274,519 -2115921,261,265,526 -2115922,212,218,430 -2115923,144,157,301 -2115924,249,249,498 -2115925,3,0,3 -2115926,228,267,495 -2115927,172,202,374 -2115928,140,157,297 -2115929,120,156,276 -2115930,204,187,391 -2115931,140,138,278 -2115932,82,79,161 -2115933,234,281,515 -2115934,239,238,477 -2115935,119,119,238 -2115936,170,270,440 -2115937,109,119,228 -2115938,208,227,435 -2115939,226,229,455 -2115940,138,149,287 -2115941,220,239,459 -2115942,188,196,384 -2115943,201,203,404 -2115944,100,97,197 -2116001,120,126,246 -2116002,200,263,463 -2116003,177,193,370 -2116004,158,166,324 -2116005,121,112,233 -2116006,246,256,502 -2116007,241,229,470 -2116008,225,211,436 -2116009,136,143,279 -2116010,212,288,500 -2116011,184,207,391 -2116012,167,173,340 -2116013,201,236,437 -2116014,274,283,557 -2116015,152,138,290 -2116016,186,199,385 -2116017,269,304,573 -2116018,120,152,272 -2116019,203,283,486 -2116020,162,159,321 -2116021,131,143,274 -2116022,178,187,365 -2116023,252,274,526 -2116024,240,264,504 -2116025,307,310,617 -2116026,181,191,372 -2116027,238,229,467 -2116028,196,210,406 -2116029,183,175,358 -2116030,113,126,239 -2116031,234,237,471 -2116032,219,242,461 -2116033,102,108,210 -2116101,143,175,318 -2116102,239,266,505 -2116103,221,253,474 -2116104,170,188,358 -2116105,286,307,593 -2116106,205,214,419 -2116107,215,225,440 -2116108,151,145,296 -2116109,243,262,505 -2116110,149,155,304 -2116111,272,282,554 -2116112,182,193,375 -2116113,103,122,225 -2116114,159,183,342 -2116115,195,220,415 -2116116,228,217,445 -2116117,272,314,586 -2116118,274,251,525 -2116119,211,211,422 -2116120,197,193,390 -2116121,333,299,632 -2116122,195,213,408 -2116123,253,286,539 -2116124,265,290,555 -2116125,238,287,525 -2116126,142,158,300 -2116127,258,265,523 -2116128,278,254,532 -2116129,236,236,472 -2116130,205,239,444 -2116131,249,249,498 -2116132,229,248,477 -2116133,133,144,277 -2116134,181,199,380 -2116135,290,315,605 -2116136,329,301,630 -2116137,162,175,337 -2116138,263,261,524 -2116139,262,273,535 -2116140,150,158,308 -2116141,186,181,367 -2116142,283,315,598 -2116143,180,220,400 -2116144,0,3,3 -2116145,212,240,452 -2116201,184,199,383 -2116202,171,178,349 -2116203,170,230,400 -2116204,190,198,388 -2116205,127,168,295 -2116206,278,317,595 -2116207,172,152,324 -2116208,244,258,502 -2116209,159,168,327 -2116210,306,315,621 -2116211,270,259,529 -2116212,186,206,392 -2116213,235,270,505 -2116214,229,216,445 -2116215,169,194,363 -2116216,120,111,231 -2116217,163,349,512 -2116218,240,237,477 -2116219,268,275,543 -2116220,142,155,297 -2116221,309,331,640 -2116222,165,182,347 -2116223,159,186,345 -2116224,132,146,278 -2116225,229,272,501 -2116301,186,205,391 -2116302,172,182,354 -2116303,176,189,365 -2116304,246,263,509 -2116305,180,194,374 -2116306,259,226,485 -2116307,201,204,405 -2116308,249,291,540 -2116309,245,258,503 -2116310,187,183,370 -2116311,327,293,620 -2116312,169,174,343 -2116313,145,146,291 -2116314,216,197,413 -2116315,326,367,693 -2116316,269,310,579 -2116317,407,483,890 -2116318,239,264,503 -2116319,245,286,531 -2116320,180,213,393 -2116321,185,197,382 -2116322,155,224,379 -2116323,124,137,261 -2116324,196,229,425 -2116325,113,137,250 -2116326,172,184,356 -2116327,203,185,388 -2116328,189,185,374 -2116329,206,223,429 -2116330,320,329,649 -2116331,148,159,307 -2116332,155,159,314 -2116333,227,221,448 -2116334,132,145,277 -2116335,294,271,565 -2116336,290,259,549 -2116337,176,147,323 -2116338,158,165,323 -2116339,100,127,227 -2116340,153,167,320 -2116341,128,148,276 -2116401,246,257,503 -2116402,206,229,435 -2116403,138,176,314 -2116404,228,278,506 -2116405,215,239,454 -2116406,194,168,362 -2116407,265,283,548 -2116408,161,185,346 -2116409,212,226,438 -2116410,225,258,483 -2116411,255,239,494 -2116412,319,359,678 -2116413,206,244,450 -2116414,224,227,451 -2116415,260,289,549 -2116416,240,257,497 -2116417,282,333,615 -2116418,173,206,379 -2116419,225,239,464 -2116420,225,256,481 -2116421,170,192,362 -2116422,144,158,302 -2116423,230,222,452 -2116424,148,145,293 -2116425,208,231,439 -2116426,227,246,473 -2116427,301,289,590 -2116428,184,250,434 -2116429,265,267,532 -2116430,214,213,427 -2116431,269,304,573 -2116432,164,176,340 -2116433,175,194,369 -2116434,160,191,351 -2116435,174,148,322 -2116436,214,261,475 -2116437,119,127,246 -2116501,234,260,494 -2116502,230,268,498 -2116503,142,225,367 -2116504,171,176,347 -2116505,186,211,397 -2116506,137,283,420 -2116507,148,160,308 -2116508,113,135,248 -2116509,122,117,239 -2116510,236,247,483 -2116511,197,186,383 -2116512,238,266,504 -2116513,278,293,571 -2116514,188,205,393 -2116515,217,234,451 -2116516,130,182,312 -2116517,244,217,461 -2116518,174,281,455 -2116519,290,418,708 -2116520,203,232,435 -2116521,186,224,410 -2116522,156,198,354 -2116523,258,316,574 -2116524,192,213,405 -2116525,0,0,0 -2116526,125,138,263 -2116527,132,184,316 -2116601,274,254,528 -2116602,156,173,329 -2116603,239,245,484 -2116604,256,266,522 -2116605,242,250,492 -2116606,116,124,240 -2116607,160,151,311 -2116608,158,186,344 -2116609,99,111,210 -2116610,114,122,236 -2116611,118,103,221 -2116612,108,111,219 -2116613,184,219,403 -2116614,219,247,466 -2116615,188,183,371 -2116616,125,102,227 -2116617,270,242,512 -2116618,160,143,303 -2116619,194,173,367 -2116620,271,302,573 -2116621,297,313,610 -2116622,149,148,297 -2116623,142,133,275 -2116624,189,175,364 -2116625,163,168,331 -2116626,198,232,430 -2116627,229,246,475 -2116701,174,215,389 -2116702,279,329,608 -2116703,200,219,419 -2116704,205,229,434 -2116705,219,247,466 -2116706,232,262,494 -2116707,214,248,462 -2116708,229,235,464 -2116709,163,185,348 -2116710,215,256,471 -2116711,131,135,266 -2116712,179,192,371 -2116713,225,285,510 -2116714,209,196,405 -2116715,240,258,498 -2116716,264,299,563 -2116717,226,242,468 -2116718,174,174,348 -2116719,211,222,433 -2116720,110,118,228 -2116721,100,111,211 -2116722,166,177,343 -2116723,264,299,563 -2116801,3,3,6 -2116802,214,183,397 -2116803,169,190,359 -2116804,211,209,420 -2116805,186,214,400 -2116806,281,292,573 -2116807,165,167,332 -2116808,271,271,542 -2116809,239,248,487 -2116810,275,262,537 -2116811,118,130,248 -2116812,145,148,293 -2116813,261,287,548 -2116814,232,246,478 -2116815,203,216,419 -2116816,151,150,301 -2116817,203,224,427 -2116818,217,191,408 -2116819,250,270,520 -2116820,276,294,570 -2116821,189,197,386 -2116822,132,151,283 -2116823,245,270,515 -2116824,279,288,567 -2116825,155,159,314 -2116826,273,352,625 -2116827,151,169,320 -2116828,200,209,409 -2116829,143,152,295 -2116830,144,157,301 -2116831,154,157,311 -2116832,119,135,254 -2116901,178,196,374 -2116902,195,197,392 -2116903,253,282,535 -2116904,241,253,494 -2116905,155,195,350 -2116906,154,169,323 -2116907,239,248,487 -2116908,118,128,246 -2116909,152,188,340 -2116910,280,335,615 -2116911,151,168,319 -2116912,184,199,383 -2116913,231,265,496 -2116914,202,251,453 -2116915,158,229,387 -2116916,133,155,288 -2116917,224,275,499 -2116918,146,186,332 -2116919,120,117,237 -2116920,143,146,289 -2116921,166,157,323 -2116922,156,165,321 -2116923,230,219,449 -2116924,252,335,587 -2116925,250,279,529 -2116926,131,167,298 -2116927,105,180,285 -2116928,155,191,346 -2116929,240,261,501 -2116930,306,333,639 -2116931,221,259,480 -2116932,157,166,323 -2116933,271,295,566 -2116934,168,205,373 -2116935,192,251,443 -2116936,174,187,361 -2116937,167,200,367 -2116938,246,332,578 -2116939,192,219,411 -2116940,176,198,374 -2116941,290,313,603 -2116942,149,156,305 -2116943,183,197,380 -2116944,174,175,349 -2116945,119,141,260 -2116946,131,120,251 -2116947,178,170,348 -2116948,213,241,454 -2116949,187,206,393 -2116950,199,239,438 -2116951,213,209,422 -2116952,107,138,245 -2116953,200,216,416 -2117001,246,243,489 -2117002,147,160,307 -2117003,115,118,233 -2117004,166,197,363 -2117005,108,104,212 -2117006,263,293,556 -2117007,121,143,264 -2117008,139,159,298 -2117009,167,162,329 -2117010,175,162,337 -2117011,200,213,413 -2117012,213,251,464 -2117013,119,147,266 -2117014,185,200,385 -2117015,190,202,392 -2117016,170,187,357 -2117017,189,197,386 -2117018,177,193,370 -2117019,171,273,444 -2117020,238,277,515 -2117021,226,261,487 -2117022,266,267,533 -2117023,264,240,504 -2117024,116,122,238 -2117025,226,232,458 -2117026,291,277,568 -2117027,167,191,358 -2117028,233,260,493 -2117029,206,205,411 -2117030,139,245,384 -2117031,195,193,388 -2117032,263,316,579 -2117033,285,304,589 -2117034,196,212,408 -2117035,172,177,349 -2117036,197,209,406 -2117037,221,263,484 -2117038,191,215,406 -2117101,246,278,524 -2117102,187,259,446 -2117103,163,171,334 -2117104,109,116,225 -2117105,214,212,426 -2117106,293,303,596 -2117107,266,293,559 -2117108,268,303,571 -2117109,203,229,432 -2117110,320,319,639 -2117111,229,256,485 -2117112,210,239,449 -2117113,159,152,311 -2117114,124,112,236 -2117115,281,305,586 -2117116,264,265,529 -2117117,249,252,501 -2117118,184,220,404 -2117119,192,210,402 -2117120,156,152,308 -2117121,166,181,347 -2117122,165,194,359 -2117123,223,301,524 -2117201,260,269,529 -2117202,133,138,271 -2117203,187,218,405 -2117204,300,300,600 -2117205,185,179,364 -2117206,198,210,408 -2117207,264,307,571 -2117208,223,244,467 -2117209,218,229,447 -2117210,224,246,470 -2117211,266,285,551 -2117212,221,244,465 -2117213,169,182,351 -2117214,154,205,359 -2117215,171,188,359 -2117216,181,202,383 -2117217,226,266,492 -2117218,295,321,616 -2117219,243,262,505 -2117220,227,245,472 -2117221,221,254,475 -2117222,297,304,601 -2117223,201,213,414 -2117224,235,240,475 -2117225,199,224,423 -2117226,246,244,490 -2117227,252,257,509 -2117228,290,294,584 -2117229,264,259,523 -2117230,278,276,554 -2117231,180,179,359 -2117232,155,193,348 -2117233,104,113,217 -2117234,176,177,353 -2117235,129,141,270 -2117236,244,286,530 -2117237,104,122,226 -2117238,208,229,437 -2117301,182,182,364 -2117302,225,220,445 -2117303,299,344,643 -2117304,166,237,403 -2117305,185,209,394 -2117306,234,231,465 -2117307,208,199,407 -2117308,148,155,303 -2117309,214,234,448 -2117310,208,211,419 -2117311,127,171,298 -2117312,188,232,420 -2117313,205,208,413 -2117314,214,225,439 -2117315,179,185,364 -2117316,233,231,464 -2117317,181,210,391 -2117318,141,149,290 -2117319,119,117,236 -2117320,211,209,420 -2117321,139,150,289 -2117322,232,336,568 -2117323,138,245,383 -2117324,252,256,508 -2117325,169,176,345 -2117326,259,299,558 -2117327,159,173,332 -2117328,241,266,507 -2117329,299,326,625 -2117330,222,230,452 -2117331,191,222,413 -2117332,265,272,537 -2117333,219,216,435 -2117334,144,151,295 -2117335,254,268,522 -2117336,232,234,466 -2117401,281,289,570 -2117402,245,209,454 -2117403,205,256,461 -2117404,157,165,322 -2117405,283,271,554 -2117406,183,194,377 -2117407,163,172,335 -2117408,162,188,350 -2117409,214,222,436 -2117410,207,240,447 -2117411,215,209,424 -2117412,310,305,615 -2117413,147,146,293 -2117414,357,325,682 -2117415,159,171,330 -2117416,107,130,237 -2117417,208,207,415 -2117418,169,185,354 -2117419,196,224,420 -2117420,233,250,483 -2117421,228,232,460 -2117422,220,221,441 -2117423,257,292,549 -2117424,215,230,445 -2117425,159,177,336 -2117426,188,228,416 -2117427,168,192,360 -2117428,201,233,434 -2117429,200,215,415 -2117430,274,250,524 -2117431,103,103,206 -2117432,127,132,259 -2117433,153,186,339 -2117434,184,214,398 -2117435,205,247,452 -2117436,170,170,340 -2117437,145,172,317 -2117438,146,146,292 -2117439,266,276,542 -2117440,247,273,520 -2117441,205,205,410 -2117442,153,157,310 -2117443,158,169,327 -2117444,155,162,317 -2117445,198,211,409 -2117446,199,196,395 -2117447,196,208,404 -2117448,140,148,288 -2117449,124,284,408 -2117450,182,185,367 -2117451,142,171,313 -2117452,164,182,346 -2117501,260,293,553 -2117502,258,269,527 -2117503,254,255,509 -2117504,252,281,533 -2117505,158,170,328 -2117506,119,131,250 -2117507,309,350,659 -2117508,262,289,551 -2117509,274,275,549 -2117510,216,243,459 -2117511,168,154,322 -2117512,163,180,343 -2117513,224,239,463 -2117514,251,283,534 -2117515,156,175,331 -2117516,266,276,542 -2117517,224,244,468 -2117518,302,322,624 -2117519,188,177,365 -2117520,155,178,333 -2117521,188,179,367 -2117522,282,301,583 -2117523,167,193,360 -2117524,195,179,374 -2117525,166,172,338 -2117526,279,278,557 -2117527,222,233,455 -2117528,233,225,458 -2117529,233,271,504 -2117530,249,222,471 -2117531,173,181,354 -2117532,250,252,502 -2117533,204,222,426 -2117534,218,192,410 -2117535,211,225,436 -2117536,213,211,424 -2117537,157,156,313 -2117538,150,162,312 -2117539,217,232,449 -2117540,210,208,418 -2117541,212,212,424 -2117542,219,203,422 -2117543,290,313,603 -2117544,173,202,375 -2117545,187,181,368 -2117546,169,182,351 -2117547,104,106,210 -2117548,149,142,291 -2117549,151,164,315 -2117550,210,197,407 -2117551,142,129,271 -2117552,142,152,294 -2117553,204,226,430 -2117554,204,237,441 -2117555,259,264,523 -2117556,153,152,305 -2117557,185,179,364 -2117558,218,218,436 -2117559,193,201,394 -2117560,120,135,255 -2117561,102,119,221 -2117562,228,235,463 -2117601,156,169,325 -2117602,310,269,579 -2117603,188,197,385 -2117604,181,205,386 -2117605,253,279,532 -2117606,139,149,288 -2117607,168,183,351 -2117608,301,298,599 -2117609,135,171,306 -2117610,184,247,431 -2117611,150,175,325 -2117612,262,310,572 -2117613,234,243,477 -2117614,182,231,413 -2117615,266,310,576 -2117616,295,316,611 -2117617,167,201,368 -2117618,97,104,201 -2117619,200,209,409 -2117620,162,161,323 -2117621,173,186,359 -2117622,228,239,467 -2117623,191,215,406 -2117624,173,158,331 -2117625,274,270,544 -2117626,135,131,266 -2117627,235,220,455 -2117628,213,185,398 -2117629,212,195,407 -2117630,243,254,497 -2117631,258,269,527 -2117632,178,196,374 -2117633,306,305,611 -2117634,239,206,445 -2117635,136,145,281 -2117636,208,212,420 -2117637,156,163,319 -2117638,196,178,374 -2117639,167,182,349 -2117701,168,151,319 -2117702,232,222,454 -2117703,249,216,465 -2117704,157,151,308 -2117705,178,174,352 -2117706,119,157,276 -2117707,246,265,511 -2117708,164,183,347 -2117709,112,123,235 -2117710,213,224,437 -2117711,207,185,392 -2117712,160,180,340 -2117713,190,224,414 -2117714,159,182,341 -2117715,106,117,223 -2117716,101,103,204 -2117717,195,189,384 -2117718,123,152,275 -2117719,106,114,220 -2117720,98,133,231 -2117721,116,113,229 -2117722,224,206,430 -2117723,232,239,471 -2117724,150,173,323 -2117725,180,218,398 -2117726,161,179,340 -2117727,129,130,259 -2117728,204,202,406 -2117729,140,125,265 -2117730,221,291,512 -2117731,149,174,323 -2117732,123,112,235 -2117733,130,176,306 -2117734,152,185,337 -2117735,150,157,307 -2117736,162,177,339 -2117737,128,144,272 -2117738,212,174,386 -2117739,132,123,255 -2117740,291,332,623 -2117741,253,301,554 -2117742,284,303,587 -2117743,188,191,379 -2117744,147,133,280 -2117745,317,312,629 -2117746,198,207,405 -2117747,136,164,300 -2117748,179,191,370 -2117749,252,256,508 -2117750,145,149,294 -2117751,118,158,276 -2117752,322,324,646 -2117753,156,172,328 -2117754,119,143,262 -2117755,104,108,212 -2117801,124,135,259 -2117802,113,113,226 -2117803,189,198,387 -2117804,216,216,432 -2117805,243,291,534 -2117806,147,152,299 -2117807,123,133,256 -2117808,163,140,303 -2117809,170,159,329 -2117810,146,149,295 -2117811,152,137,289 -2117812,145,165,310 -2117813,147,146,293 -2117814,149,177,326 -2117815,267,292,559 -2117816,123,124,247 -2117817,238,265,503 -2117818,263,297,560 -2117819,145,149,294 -2117820,156,162,318 -2117821,145,143,288 -2117822,134,154,288 -2117823,138,156,294 -2117824,190,194,384 -2117825,208,189,397 -2117826,210,254,464 -2117827,238,271,509 -2117828,254,275,529 -2117829,273,300,573 -2117830,127,124,251 -2117831,251,261,512 -2117832,141,146,287 -2117833,274,289,563 -2117834,215,231,446 -2117835,242,225,467 -2117836,216,260,476 -2117837,182,200,382 -2117838,218,239,457 -2117839,243,246,489 -2117840,197,213,410 -2117841,104,116,220 -2117842,176,220,396 -2117843,150,175,325 -2117901,219,228,447 -2117902,125,140,265 -2117903,131,142,273 -2117904,196,256,452 -2117905,193,202,395 -2117906,257,269,526 -2117907,175,191,366 -2117908,193,225,418 -2117909,226,272,498 -2117910,233,266,499 -2117911,230,236,466 -2117912,113,146,259 -2117913,130,166,296 -2117914,205,220,425 -2117915,259,304,563 -2117916,235,265,500 -2117917,168,157,325 -2117918,163,228,391 -2117919,161,180,341 -2117920,151,183,334 -2117921,64,76,140 -2117922,129,126,255 -2117923,287,281,568 -2117924,111,123,234 -2117925,224,230,454 -2117926,214,259,473 -2117927,150,177,327 -2117928,120,126,246 -2118001,153,158,311 -2118002,131,170,301 -2118003,196,237,433 -2118004,274,292,566 -2118005,170,175,345 -2118006,196,177,373 -2118007,253,278,531 -2118008,164,170,334 -2118009,177,155,332 -2118010,178,216,394 -2118011,202,217,419 -2118012,248,219,467 -2118013,274,287,561 -2118014,267,289,556 -2118015,133,168,301 -2118016,224,235,459 -2118017,182,188,370 -2118101,303,320,623 -2118102,191,226,417 -2118103,182,202,384 -2118104,184,182,366 -2118105,124,116,240 -2118106,282,301,583 -2118107,231,232,463 -2118108,216,160,376 -2118109,151,176,327 -2118110,227,247,474 -2118111,291,317,608 -2118112,192,216,408 -2118113,214,210,424 -2118114,206,212,418 -2118115,180,177,357 -2118116,243,253,496 -2118117,230,220,450 -2118118,260,248,508 -2118119,171,176,347 -2118120,165,157,322 -2118201,263,269,532 -2118202,197,216,413 -2118203,310,344,654 -2118204,376,386,762 -2118205,150,113,263 -2118206,198,163,361 -2118207,329,309,638 -2118208,204,187,391 -2118209,165,157,322 -2118210,160,151,311 -2118211,162,143,305 -2118212,193,204,397 -2118213,199,232,431 -2118214,234,241,475 -2118215,186,203,389 -2118216,196,216,412 -2118217,177,175,352 -2118218,193,191,384 -2118219,330,307,637 -2118220,265,253,518 -2118221,256,268,524 -2118222,184,194,378 -2118223,173,183,356 -2118224,301,295,596 -2118225,318,335,653 -2118226,291,266,557 -2118227,178,187,365 -2118301,158,162,320 -2118302,180,188,368 -2118303,112,110,222 -2118304,263,289,552 -2118305,425,373,798 -2118306,426,418,844 -2118307,223,228,451 -2118308,145,138,283 -2118309,123,139,262 -2118310,278,270,548 -2118311,207,199,406 -2118312,311,318,629 -2118313,243,210,453 -2118314,358,425,783 -2118315,224,217,441 -2118316,0,0,0 -2118317,0,0,0 -2118318,200,196,396 -2118319,258,261,519 -2118320,0,0,0 -2118321,246,239,485 -2118401,8,6,14 -2118501,196,202,398 -2118502,127,130,257 -2118503,163,140,303 -2118504,260,266,526 -2118505,126,148,274 -2118506,283,298,581 -2118507,173,180,353 -2118508,225,213,438 -2118509,294,283,577 -2118510,234,239,473 -2118511,158,165,323 -2118512,195,219,414 -2118513,132,146,278 -2118514,120,120,240 -2118515,282,300,582 -2118516,225,222,447 -2118517,231,233,464 -2118518,151,157,308 -2118519,0,0,0 -2118520,263,256,519 -2118521,164,138,302 -2118522,114,137,251 -2118523,129,178,307 -2118524,333,315,648 -2118525,218,205,423 -2118526,191,204,395 -2118527,171,155,326 -2118528,65,165,230 -2118529,154,147,301 -2118530,119,125,244 -2118601,163,194,357 -2118602,0,0,0 -2118603,216,233,449 -2118604,255,320,575 -2118605,186,252,438 -2118606,188,204,392 -2118607,163,181,344 -2118608,162,208,370 -2118609,148,202,350 -2118610,253,292,545 -2118611,136,167,303 -2118612,207,212,419 -2118613,197,247,444 -2118614,100,114,214 -2118615,155,142,297 -2118616,232,241,473 -2118617,219,236,455 -2118618,268,248,516 -2118619,172,195,367 -2118620,204,227,431 -2118621,275,294,569 -2118622,227,238,465 -2118623,281,293,574 -2118624,129,172,301 -2118625,217,265,482 -2118626,266,304,570 -2118627,193,216,409 -2118628,195,242,437 -2118629,202,213,415 -2118630,251,277,528 -2118631,226,253,479 -2118701,297,310,607 -2118702,105,104,209 -2118703,228,259,487 -2118704,284,285,569 -2118705,99,98,197 -2118706,157,157,314 -2118707,136,141,277 -2118708,271,277,548 -2118709,278,279,557 -2118710,209,216,425 -2118711,231,231,462 -2118712,157,170,327 -2118713,138,64,202 -2118801,190,164,354 -2118802,182,228,410 -2118803,259,286,545 -2118804,259,267,526 -2118805,301,310,611 -2118806,175,168,343 -2118807,162,173,335 -2118808,238,255,493 -2118809,247,284,531 -2118810,203,229,432 -2118811,237,258,495 -2118812,179,192,371 -2118813,214,246,460 -2118814,278,295,573 -2118815,122,133,255 -2118816,289,323,612 -2118817,249,249,498 -2118818,165,215,380 -2118819,275,275,550 -2118820,140,156,296 -2118821,244,251,495 -2118822,225,211,436 -2118823,233,248,481 -2118824,171,194,365 -2118825,211,202,413 -2118826,105,107,212 -2118827,142,146,288 -2118828,166,152,318 -2118829,293,348,641 -2118830,187,253,440 -2118831,167,197,364 -2118832,244,240,484 -2118833,118,129,247 -2118834,174,210,384 -2118835,171,173,344 -2118836,290,286,576 -2118837,263,330,593 -2118838,152,174,326 -2118839,134,158,292 -2118840,194,224,418 -2118841,201,204,405 -2118842,173,173,346 -2118843,182,191,373 -2118844,126,122,248 -2118845,131,156,287 -2118846,123,141,264 -2118847,200,218,418 -2118848,162,180,342 -2118849,108,104,212 -2118850,131,151,282 -2118901,301,288,589 -2118902,272,268,540 -2118903,191,194,385 -2118904,224,283,507 -2118905,163,182,345 -2118906,220,235,455 -2118907,295,309,604 -2118908,161,177,338 -2118909,174,192,366 -2118910,222,235,457 -2118911,174,158,332 -2118912,261,276,537 -2118913,241,269,510 -2118914,139,160,299 -2118915,190,200,390 -2118916,157,179,336 -2118917,232,239,471 -2118918,151,110,261 -2118919,189,198,387 -2118920,309,306,615 -2118921,187,188,375 -2118922,131,146,277 -2118923,125,134,259 -2118924,163,156,319 -2118925,157,145,302 -2118926,268,296,564 -2118927,167,146,313 -2118928,135,154,289 -2118929,136,180,316 -2118930,150,177,327 -2119001,141,195,336 -2119002,166,192,358 -2119003,116,141,257 -2119004,132,180,312 -2119005,126,162,288 -2119006,187,201,388 -2119007,154,170,324 -2119008,182,228,410 -2119009,139,169,308 -2119010,216,216,432 -2119011,243,274,517 -2119012,135,144,279 -2119013,128,160,288 -2119014,299,301,600 -2119015,5,0,5 -2119016,173,162,335 -2119017,178,183,361 -2119018,181,178,359 -2119019,204,217,421 -2119020,109,125,234 -2119021,154,162,316 -2119022,221,225,446 -2119023,206,240,446 -2119024,196,188,384 -2119025,178,206,384 -2119026,161,155,316 -2119027,163,189,352 -2119028,167,196,363 -2119029,119,132,251 -2119030,182,180,362 -2119031,147,162,309 -2119032,131,127,258 -2119033,221,267,488 -2119034,84,93,177 -2119101,183,196,379 -2119102,112,97,209 -2119103,67,47,114 -2119104,172,170,342 -2119105,337,330,667 -2119106,105,123,228 -2119107,206,231,437 -2119108,168,161,329 -2119109,263,245,508 -2119110,201,220,421 -2119111,207,214,421 -2119112,176,189,365 -2119113,241,225,466 -2119114,140,128,268 -2119115,293,302,595 -2119116,246,249,495 -2119117,112,124,236 -2119118,129,126,255 -2119119,14,4,18 -2119120,177,172,349 -2119121,190,151,341 -2119122,178,189,367 -2119123,124,127,251 -2119201,0,0,0 -2119301,152,148,300 -2119302,192,209,401 -2119303,144,145,289 -2119304,252,305,557 -2119305,215,212,427 -2119306,9,3,12 -2119307,157,203,360 -2119308,204,204,408 -2119309,213,246,459 -2119310,206,237,443 -2119311,186,168,354 -2119312,202,206,408 -2119313,223,211,434 -2119314,267,297,564 -2119315,134,156,290 -2119316,222,246,468 -2119317,189,199,388 -2119318,270,308,578 -2119319,164,181,345 -2119320,219,233,452 -2119321,224,224,448 -2119322,145,202,347 -2119323,135,153,288 -2119324,258,293,551 -2119325,315,312,627 -2119326,297,306,603 -2119327,304,302,606 -2119328,208,226,434 -2119329,203,202,405 -2119330,214,268,482 -2119331,186,225,411 -2119332,225,251,476 -2119333,220,250,470 -2119334,216,219,435 -2119335,305,293,598 -2119336,241,292,533 -2119337,180,191,371 -2119338,221,217,438 -2119339,204,244,448 -2119340,197,211,408 -2119341,164,168,332 -2119342,282,296,578 -2119343,253,259,512 -2119401,201,222,423 -2119402,248,280,528 -2119403,187,223,410 -2119404,210,273,483 -2119405,180,215,395 -2119406,124,144,268 -2119407,111,149,260 -2119408,151,158,309 -2119409,192,178,370 -2119410,189,186,375 -2119411,274,324,598 -2119412,146,155,301 -2119413,171,207,378 -2119414,129,183,312 -2119415,197,211,408 -2119416,195,229,424 -2119417,175,208,383 -2119418,162,191,353 -2119419,334,307,641 -2119420,114,132,246 -2119421,166,189,355 -2119422,275,279,554 -2119423,212,224,436 -2119424,207,236,443 -2119425,259,328,587 -2119426,239,240,479 -2119427,127,119,246 -2119428,145,166,311 -2119429,132,168,300 -2119430,152,178,330 -2119431,240,280,520 -2119432,179,201,380 -2119433,149,171,320 -2119434,219,230,449 -2119435,180,211,391 -2119436,188,219,407 -2119437,112,93,205 -2119438,245,285,530 -2119439,171,167,338 -2119440,249,307,556 -2119441,137,135,272 -2119442,172,187,359 -2119443,327,357,684 -2119444,209,208,417 -2119445,128,139,267 -2119446,171,197,368 -2119447,129,131,260 -2119448,123,159,282 -2119449,186,199,385 -2119501,239,241,480 -2119502,168,175,343 -2119503,108,136,244 -2119504,189,221,410 -2119505,268,283,551 -2119506,185,196,381 -2119507,262,290,552 -2119508,164,168,332 -2119509,237,246,483 -2119510,224,260,484 -2119511,250,278,528 -2119512,194,230,424 -2119513,318,335,653 -2119514,276,299,575 -2119515,295,303,598 -2119516,228,308,536 -2119517,143,163,306 -2119518,239,260,499 -2119519,169,195,364 -2119520,319,302,621 -2119521,198,219,417 -2119522,218,229,447 -2119523,149,153,302 -2119524,189,197,386 -2119525,145,164,309 -2119526,173,183,356 -2119527,155,194,349 -2119528,140,148,288 -2119529,138,146,284 -2119530,219,248,467 -2119531,216,202,418 -2119532,186,176,362 -2119533,278,303,581 -2119534,218,256,474 -2119535,240,230,470 -2119536,169,203,372 -2119537,239,228,467 -2119538,176,167,343 -2119539,124,174,298 -2119540,261,244,505 -2119541,190,213,403 -2119542,211,176,387 -2119543,207,220,427 -2119544,231,237,468 -2119545,112,127,239 -2119546,140,136,276 -2119547,80,70,150 -2119548,125,108,233 -2119549,107,133,240 -2119601,228,221,449 -2119602,184,203,387 -2119603,130,122,252 -2119604,196,186,382 -2119605,271,229,500 -2119606,192,252,444 -2119607,210,237,447 -2119608,250,258,508 -2119609,161,184,345 -2119610,197,202,399 -2119611,516,470,986 -2119612,299,270,569 -2119613,253,322,575 -2119614,164,176,340 -2119615,204,200,404 -2119616,181,178,359 -2119617,278,238,516 -2119618,186,189,375 -2119619,158,208,366 -2119620,124,147,271 -2119621,161,152,313 -2119622,170,170,340 -2119701,260,263,523 -2119702,182,189,371 -2119703,270,266,536 -2119704,226,264,490 -2119705,317,326,643 -2119706,225,247,472 -2119707,187,163,350 -2119708,116,148,264 -2119709,185,161,346 -2119710,238,257,495 -2119711,188,194,382 -2119712,179,188,367 -2119713,174,174,348 -2119714,216,203,419 -2119715,290,306,596 -2119716,125,132,257 -2119717,167,157,324 -2119718,174,176,350 -2119719,183,172,355 -2119720,156,281,437 -2119721,193,214,407 -2119722,187,184,371 -2119723,230,239,469 -2119724,228,241,469 -2119725,230,230,460 -2119726,205,227,432 -2119727,169,176,345 -2119728,170,170,340 -2119729,183,186,369 -2119730,231,237,468 -2119731,166,241,407 -2119732,151,173,324 -2119733,160,157,317 -2119734,141,163,304 -2119735,167,170,337 -2119736,131,132,263 -2119737,154,141,295 -2119738,115,133,248 -2119739,159,245,404 -2119740,259,257,516 -2119741,167,183,350 -2119742,113,134,247 -2119743,215,256,471 -2119744,171,178,349 -2119745,166,182,348 -2119746,174,164,338 -2119747,168,176,344 -2119748,116,111,227 -2119749,197,158,355 -2119750,171,228,399 -2119751,182,198,380 -2119752,107,122,229 -2119753,162,159,321 -2119801,183,189,372 -2119802,124,155,279 -2119803,294,286,580 -2119804,189,198,387 -2119805,122,138,260 -2119806,183,204,387 -2119807,248,276,524 -2119808,256,296,552 -2119809,141,127,268 -2119810,298,360,658 -2119811,204,203,407 -2119812,127,135,262 -2119813,207,233,440 -2119814,210,241,451 -2119815,167,255,422 -2119816,173,174,347 -2119817,194,193,387 -2119818,227,232,459 -2119819,170,189,359 -2119820,181,213,394 -2119821,202,249,451 -2119822,206,243,449 -2119823,238,247,485 -2119824,199,201,400 -2119825,188,219,407 -2119826,224,245,469 -2119827,272,274,546 -2119828,224,244,468 -2119829,206,196,402 -2119830,168,169,337 -2119831,115,111,226 -2119832,242,234,476 -2119833,151,155,306 -2119901,291,320,611 -2119902,242,225,467 -2119903,169,179,348 -2119904,207,228,435 -2119905,266,269,535 -2119906,5,0,5 -2119907,251,269,520 -2119908,206,194,400 -2119909,221,217,438 -2119910,200,197,397 -2119911,283,305,588 -2119912,175,201,376 -2119913,278,308,586 -2119914,248,234,482 -2119915,174,169,343 -2119916,274,257,531 -2119917,125,148,273 -2119918,188,211,399 -2119919,252,274,526 -2119920,267,275,542 -2119921,212,238,450 -2119922,170,194,364 -2119923,178,192,370 -2119924,178,158,336 -2119925,186,215,401 -2119926,210,220,430 -2119927,169,193,362 -2119928,200,223,423 -2119929,147,153,300 -2119930,202,160,362 -2119931,198,191,389 -2119932,207,239,446 -2120001,113,134,247 -2120002,179,191,370 -2120003,211,225,436 -2120004,192,214,406 -2120005,261,299,560 -2120006,148,136,284 -2120007,158,175,333 -2120008,313,330,643 -2120009,154,177,331 -2120010,182,189,371 -2120011,257,262,519 -2120012,248,248,496 -2120013,180,173,353 -2120014,261,287,548 -2120015,238,203,441 -2120016,150,163,313 -2120017,192,223,415 -2120018,300,321,621 -2120019,222,253,475 -2120020,265,284,549 -2120021,176,183,359 -2120022,213,243,456 -2120023,111,168,279 -2120024,214,235,449 -2120025,228,307,535 -2120026,132,169,301 -2120101,195,201,396 -2120102,267,256,523 -2120103,287,292,579 -2120104,207,187,394 -2120105,196,212,408 -2120106,190,224,414 -2120107,162,164,326 -2120108,151,161,312 -2120109,241,238,479 -2120110,254,254,508 -2120111,190,190,380 -2120112,246,223,469 -2120113,246,246,492 -2120114,172,194,366 -2120115,201,195,396 -2120116,136,135,271 -2120117,168,171,339 -2120118,188,198,386 -2120119,116,143,259 -2120201,132,119,251 -2120202,120,131,251 -2120203,99,144,243 -2120204,141,164,305 -2120205,206,241,447 -2120206,280,303,583 -2120207,115,111,226 -2120208,265,270,535 -2120209,258,277,535 -2120210,190,260,450 -2120211,143,163,306 -2120212,176,222,398 -2120213,145,165,310 -2120214,217,260,477 -2120215,186,211,397 -2120216,157,149,306 -2120217,172,172,344 -2120218,231,230,461 -2120219,111,112,223 -2120220,120,121,241 -2120221,229,230,459 -2120222,229,279,508 -2120223,278,323,601 -2120224,176,215,391 -2120225,253,252,505 -2120226,186,179,365 -2120227,220,259,479 -2120228,130,134,264 -2120229,204,218,422 -2120230,257,287,544 -2120231,146,170,316 -2120232,212,220,432 -2120233,238,247,485 -2120234,101,125,226 -2120235,158,175,333 -2120236,142,137,279 -2120237,137,141,278 -2120238,163,163,326 -2120239,150,181,331 -2120240,228,266,494 -2120241,131,153,284 -2120301,125,132,257 -2120302,100,94,194 -2120303,155,163,318 -2120304,143,162,305 -2120305,310,302,612 -2120306,248,225,473 -2120307,223,235,458 -2120308,269,234,503 -2120309,197,202,399 -2120310,211,233,444 -2120311,205,199,404 -2120312,251,262,513 -2120313,227,240,467 -2120314,211,263,474 -2120315,189,202,391 -2120316,206,217,423 -2120317,177,192,369 -2120318,128,152,280 -2120319,285,251,536 -2120320,187,230,417 -2120321,320,321,641 -2120322,160,165,325 -2120323,249,240,489 -2120324,197,201,398 -2120325,203,218,421 -2120326,159,163,322 -2120327,191,204,395 -2120328,186,208,394 -2120329,215,251,466 -2120330,153,190,343 -2120331,228,238,466 -2120332,185,250,435 -2120333,201,220,421 -2120334,284,41,325 -2120335,147,136,283 -2120336,6,5,11 -2120337,226,264,490 -2120338,293,294,587 -2120339,173,283,456 -2120340,211,230,441 -2120341,148,134,282 -2120342,203,234,437 -2120343,135,158,293 -2120344,115,101,216 -2120345,95,117,212 -2120346,148,155,303 -2120401,289,285,574 -2120402,171,179,350 -2120403,152,148,300 -2120404,260,293,553 -2120405,213,252,465 -2120406,242,303,545 -2120407,127,126,253 -2120408,234,272,506 -2120409,216,200,416 -2120410,189,215,404 -2120411,107,110,217 -2120412,233,263,496 -2120413,193,203,396 -2120414,239,243,482 -2120415,189,185,374 -2120416,187,214,401 -2120417,218,192,410 -2120418,282,299,581 -2120419,123,127,250 -2120420,175,180,355 -2120421,136,158,294 -2120422,179,175,354 -2120501,227,247,474 -2120502,154,155,309 -2120503,198,195,393 -2120504,350,339,689 -2120505,296,312,608 -2120506,396,607,1003 -2120507,262,279,541 -2120508,245,319,564 -2120509,241,272,513 -2120510,164,169,333 -2120511,259,297,556 -2120512,239,250,489 -2120513,447,465,912 -2120514,214,206,420 -2120515,292,327,619 -2120516,181,215,396 -2120517,3,3,6 -2120518,286,267,553 -2120519,0,0,0 -2120520,299,287,586 -2120521,191,210,401 -2120601,233,225,458 -2120602,182,190,372 -2120603,253,240,493 -2120604,191,199,390 -2120605,279,269,548 -2120606,205,248,453 -2120607,250,236,486 -2120608,142,145,287 -2120609,231,221,452 -2120610,294,275,569 -2120611,260,285,545 -2120612,210,235,445 -2120613,296,280,576 -2120614,186,195,381 -2120615,226,245,471 -2120616,199,196,395 -2120617,238,242,480 -2120618,197,219,416 -2120619,180,214,394 -2120620,267,308,575 -2120621,232,189,421 -2120622,240,224,464 -2120623,284,282,566 -2120624,182,162,344 -2120625,254,271,525 -2120626,235,209,444 -2120627,196,212,408 -2120628,269,281,550 -2120629,176,219,395 -2120630,264,262,526 -2120631,221,189,410 -2120632,309,308,617 -2120633,147,149,296 -2120634,284,281,565 -2120635,3,0,3 -2120636,307,303,610 -2120637,290,299,589 -2120638,183,179,362 -2120639,219,209,428 -2120640,186,179,365 -2120641,271,296,567 -2120642,267,313,580 -2120643,138,155,293 -2120644,202,215,417 -2120645,296,305,601 -2120646,352,266,618 -2120647,238,252,490 -2120648,169,178,347 -2120649,329,289,618 -2120650,130,185,315 -2120651,161,168,329 -2120652,213,236,449 -2120653,236,276,512 -2120654,166,174,340 -2120655,177,177,354 -2120656,265,277,542 -2120657,325,349,674 -2120658,271,306,577 -2120659,274,296,570 -2120660,203,202,405 -2120661,339,233,572 -2120662,231,262,493 -2120663,274,271,545 -2120664,145,147,292 -2120665,155,185,340 -2120701,156,172,328 -2120702,168,197,365 -2120703,193,177,370 -2120704,211,205,416 -2120705,204,226,430 -2120706,241,248,489 -2120707,211,234,445 -2120708,201,209,410 -2120709,179,198,377 -2120710,198,216,414 -2120711,139,166,305 -2120712,212,223,435 -2120713,255,283,538 -2120714,269,290,559 -2120715,225,218,443 -2120716,258,277,535 -2120717,285,286,571 -2120718,205,227,432 -2120719,205,199,404 -2120720,205,209,414 -2120721,198,211,409 -2120722,175,193,368 -2120723,223,236,459 -2120724,227,211,438 -2120725,252,264,516 -2120726,228,212,440 -2120727,226,249,475 -2120728,241,215,456 -2120729,223,224,447 -2120730,152,207,359 -2120731,217,257,474 -2120732,190,153,343 -2120733,205,215,420 -2120734,220,219,439 -2120735,286,331,617 -2120736,223,202,425 -2120737,280,285,565 -2120738,255,226,481 -2120739,156,183,339 -2120740,194,211,405 -2120741,262,244,506 -2120742,225,251,476 -2120743,236,336,572 -2120744,102,226,328 -2120745,137,141,278 -2120746,152,171,323 -2120747,188,198,386 -2120748,140,151,291 -2120749,125,215,340 -2120750,187,187,374 -2120751,156,150,306 -2120752,175,185,360 -2120753,226,242,468 -2120754,172,204,376 -2120755,177,202,379 -2120756,143,142,285 -2120757,254,250,504 -2120758,284,282,566 -2120801,206,203,409 -2120802,324,340,664 -2120803,227,241,468 -2120804,0,0,0 -2120805,208,204,412 -2120806,159,187,346 -2120807,212,230,442 -2120808,304,265,569 -2120809,192,170,362 -2120810,135,140,275 -2120811,265,265,530 -2120812,130,144,274 -2120813,221,239,460 -2120814,247,276,523 -2120815,165,185,350 -2120816,221,245,466 -2120817,297,315,612 -2120818,256,273,529 -2120819,184,183,367 -2120820,128,121,249 -2120821,266,252,518 -2120822,228,219,447 -2120823,17,6,23 -2120824,194,218,412 -2120825,231,225,456 -2120826,231,268,499 -2120827,204,206,410 -2120828,320,311,631 -2120829,194,190,384 -2120830,181,218,399 -2120831,253,264,517 -2120832,278,271,549 -2120833,256,233,489 -2120834,161,163,324 -2120835,179,194,373 -2120836,257,249,506 -2120837,69,62,131 -2120838,263,223,486 -2120839,219,242,461 -2120840,308,277,585 -2120841,164,137,301 -2120842,298,310,608 -2120843,89,77,166 -2120844,181,178,359 -2120845,7,0,7 -2120846,202,218,420 -2120847,193,192,385 -2120848,0,0,0 -2120849,213,223,436 -2120850,131,143,274 -2120851,253,263,516 -2120852,273,279,552 -2120853,122,127,249 -2120854,138,147,285 -2120855,163,165,328 -2120856,198,179,377 -2120857,234,242,476 -2120858,163,154,317 -2120901,249,259,508 -2120902,111,128,239 -2120903,224,253,477 -2120904,148,160,308 -2120905,164,162,326 -2120906,216,219,435 -2120907,202,196,398 -2120908,193,223,416 -2120909,157,152,309 -2120910,252,246,498 -2120911,144,150,294 -2120912,173,168,341 -2120913,230,235,465 -2120914,132,129,261 -2120915,262,269,531 -2120916,203,216,419 -2120917,236,243,479 -2120918,195,234,429 -2120919,270,292,562 -2120920,134,146,280 -2120921,169,187,356 -2120922,213,219,432 -2120923,174,172,346 -2120924,259,315,574 -2120925,169,170,339 -2120926,102,100,202 -2120927,119,120,239 -2120928,107,113,220 -2120929,239,255,494 -2120930,178,172,350 -2120931,213,211,424 -2120932,117,109,226 -2120933,192,200,392 -2120934,255,278,533 -2120935,183,192,375 -2120936,241,285,526 -2120937,164,157,321 -2120938,196,204,400 -2120939,216,232,448 -2120940,134,116,250 -2120941,171,169,340 -2120942,242,222,464 -2120943,174,151,325 -2120944,187,202,389 -2120945,197,318,515 -2120946,130,154,284 -2120947,175,156,331 -2120948,103,111,214 -2120949,193,190,383 -2120950,270,278,548 -2120951,190,185,375 -2120952,173,165,338 -2120953,167,170,337 -2120954,211,213,424 -2120955,206,188,394 -2120956,161,161,322 -2120957,131,132,263 -2120958,261,249,510 -2120959,93,130,223 -2120960,187,190,377 -2121001,139,151,290 -2121002,253,237,490 -2121003,120,116,236 -2121004,198,219,417 -2121005,122,120,242 -2121006,228,219,447 -2121007,116,108,224 -2121008,179,169,348 -2121009,182,166,348 -2121010,234,235,469 -2121101,87,85,172 -2121102,233,213,446 -2121103,211,192,403 -2121104,140,113,253 -2121105,128,123,251 -2121106,292,293,585 -2121107,119,105,224 -2121108,56,53,109 -2121109,151,138,289 -2121110,176,168,344 -2121111,104,109,213 -2121112,141,147,288 -2121201,216,190,406 -2121202,138,141,279 -2121203,121,101,222 -2121204,200,191,391 -2121205,125,122,247 -2121206,150,138,288 -2121207,107,92,199 -2121208,76,71,147 -2121209,0,0,0 -2121210,0,0,0 -2121211,182,186,368 -2121212,165,180,345 -2121213,177,167,344 -2121214,180,160,340 -2121215,172,178,350 -2121216,140,133,273 -2121217,126,124,250 -2121218,97,110,207 -2121219,69,76,145 -2121220,121,106,227 -2121301,295,310,605 -2121302,173,174,347 -2121303,119,121,240 -2121304,300,272,572 -2121305,306,299,605 -2121306,125,141,266 -2121307,172,165,337 -2121308,209,216,425 -2121309,171,184,355 -2121310,115,109,224 -2121311,387,377,764 -2121312,101,100,201 -2121313,204,219,423 -2121314,160,161,321 -2121315,196,220,416 -2121316,196,168,364 -2121317,143,186,329 -2121318,207,203,410 -2121319,122,113,235 -2121320,122,110,232 -2121321,96,97,193 -2121322,102,92,194 -2121323,167,175,342 -2121324,143,127,270 -2121325,154,126,280 -2121401,207,212,419 -2121402,176,203,379 -2121403,150,129,279 -2121404,216,231,447 -2121405,186,178,364 -2121406,225,240,465 -2121407,212,203,415 -2121408,275,269,544 -2121409,144,131,275 -2121410,235,232,467 -2121411,261,257,518 -2121412,185,168,353 -2121413,136,133,269 -2121414,184,195,379 -2121415,187,185,372 -2121416,182,182,364 -2121417,144,152,296 -2121501,129,117,246 -2121502,194,227,421 -2121503,160,152,312 -2121504,141,149,290 -2121505,228,214,442 -2121506,0,0,0 -2121507,242,243,485 -2121508,158,141,299 -2121509,271,294,565 -2121510,93,97,190 -2121511,224,230,454 -2121512,348,353,701 -2121513,255,253,508 -2121514,194,197,391 -2121515,201,177,378 -2121516,149,150,299 -2121517,292,315,607 -2121518,211,255,466 -2121519,216,224,440 -2121520,229,210,439 -2121521,223,236,459 -2121522,276,288,564 -2121523,233,246,479 -2121524,152,183,335 -2121525,285,301,586 -2121526,160,161,321 -2121527,178,184,362 -2121528,92,111,203 -2121529,217,225,442 -2121530,210,233,443 -2121531,194,193,387 -2121532,231,251,482 -2121533,130,117,247 -2121534,116,114,230 -2121601,212,192,404 -2121602,548,572,1120 -2121603,196,199,395 -2121604,183,226,409 -2121605,345,351,696 -2121606,135,137,272 -2121607,194,213,407 -2121608,193,203,396 -2121609,270,266,536 -2121610,0,0,0 -2121611,206,231,437 -2121612,177,183,360 -2121701,100,110,210 -2121702,210,224,434 -2121703,162,129,291 -2121704,175,163,338 -2121705,191,194,385 -2121706,213,201,414 -2121707,138,147,285 -2121708,105,95,200 -2121709,249,228,477 -2121710,126,109,235 -2121711,295,305,600 -2121712,108,124,232 -2121713,254,229,483 -2121714,137,139,276 -2121715,199,203,402 -2121716,96,111,207 -2121717,149,165,314 -2121718,151,181,332 -2121801,139,126,265 -2121802,319,293,612 -2121803,126,131,257 -2121804,262,281,543 -2121805,251,250,501 -2121806,184,181,365 -2121807,157,162,319 -2121808,119,109,228 -2121809,137,131,268 -2121810,254,227,481 -2121811,256,249,505 -2121812,237,230,467 -2121813,290,307,597 -2121814,107,97,204 -2121815,458,431,889 -2121816,278,318,596 -2121817,257,275,532 -2121818,172,175,347 -2121819,243,249,492 -2121820,112,110,222 -2121821,289,270,559 -2121822,244,228,472 -2121823,220,252,472 -2121824,113,121,234 -2121825,299,279,578 -2121826,100,104,204 -2121827,10,6,16 -2121828,174,190,364 -2121829,158,157,315 -2121830,271,274,545 -2121831,189,210,399 -2121832,205,209,414 -2121833,217,277,494 -2121834,174,158,332 -2121835,182,183,365 -2121836,126,148,274 -2121837,225,230,455 -2121838,318,325,643 -2121839,105,99,204 -2121840,176,179,355 -2121841,262,259,521 -2121842,200,223,423 -2121843,246,240,486 -2121844,183,170,353 -2121845,251,263,514 -2121846,189,199,388 -2121847,129,132,261 -2121848,149,127,276 -2121849,167,168,335 -2121850,130,136,266 -2121851,154,167,321 -2121852,130,117,247 -2121853,270,265,535 -2121854,0,0,0 -2121855,272,288,560 -2121856,201,198,399 -2121857,211,220,431 -2121858,125,110,235 -2121859,177,163,340 -2121860,140,146,286 -2121861,277,264,541 -2121862,8,15,23 -2121863,0,0,0 -2121864,244,230,474 -2121865,121,136,257 -2121866,174,169,343 -2121867,163,320,483 -2121868,0,0,0 -2121869,0,4,4 -2121870,302,346,648 -2121871,271,251,522 -2121901,194,209,403 -2121902,227,212,439 -2121903,201,199,400 -2121904,184,185,369 -2121905,225,204,429 -2121906,225,229,454 -2121907,289,306,595 -2121908,157,144,301 -2121909,170,166,336 -2121910,174,173,347 -2121911,153,166,319 -2121912,144,156,300 -2121913,154,157,311 -2121914,215,210,425 -2121915,272,266,538 -2121916,225,246,471 -2121917,268,260,528 -2121918,272,276,548 -2121919,246,240,486 -2121920,257,290,547 -2121921,210,167,377 -2121922,164,147,311 -2121923,185,203,388 -2121924,207,193,400 -2121925,188,169,357 -2121926,163,165,328 -2121927,138,151,289 -2121928,233,252,485 -2121929,226,229,455 -2121930,322,360,682 -2121931,0,0,0 -2121932,173,165,338 -2121933,116,125,241 -2121934,181,188,369 -2121935,145,152,297 -2121936,132,136,268 -2121937,196,198,394 -2121938,171,164,335 -2121939,114,108,222 -2121940,181,173,354 -2121941,258,266,524 -2121942,169,169,338 -2121943,166,161,327 -2121944,214,222,436 -2121945,169,167,336 -2121946,237,197,434 -2121947,163,164,327 -2121948,176,191,367 -2121949,186,200,386 -2121950,251,254,505 -2121951,211,229,440 -2122001,139,138,277 -2122002,0,0,0 -2122003,273,268,541 -2122004,274,254,528 -2122005,236,232,468 -2122006,246,249,495 -2122007,248,230,478 -2122008,140,135,275 -2122009,196,186,382 -2122010,206,181,387 -2122011,184,188,372 -2122012,187,220,407 -2122013,201,232,433 -2122014,179,186,365 -2122015,204,187,391 -2122016,278,286,564 -2122017,149,143,292 -2122018,209,207,416 -2122019,199,203,402 -2122020,177,152,329 -2122021,218,249,467 -2122022,269,274,543 -2122023,215,223,438 -2122024,244,281,525 -2122025,85,94,179 -2122026,214,219,433 -2122027,174,158,332 -2122028,307,392,699 -2122029,249,258,507 -2122030,186,196,382 -2122031,118,132,250 -2122032,186,195,381 -2122033,247,244,491 -2122034,176,167,343 -2122035,242,256,498 -2122036,159,172,331 -2122037,255,317,572 -2122038,201,215,416 -2122039,120,138,258 -2122040,114,102,216 -2122041,171,181,352 -2122042,195,205,400 -2122043,182,176,358 -2122044,180,202,382 -2122045,185,184,369 -2122046,152,152,304 -2122101,196,207,403 -2122102,210,205,415 -2122103,198,218,416 -2122104,296,276,572 -2122105,246,248,494 -2122106,262,257,519 -2122107,296,306,602 -2122108,206,272,478 -2122109,180,164,344 -2122110,275,317,592 -2122111,212,227,439 -2122112,214,212,426 -2122113,274,285,559 -2122114,246,255,501 -2122115,151,160,311 -2122116,158,148,306 -2122117,229,224,453 -2122118,250,253,503 -2122119,152,156,308 -2122120,215,206,421 -2122121,245,224,469 -2122122,128,142,270 -2122123,141,141,282 -2122124,241,244,485 -2122125,309,324,633 -2122126,122,111,233 -2122127,153,147,300 -2122128,108,108,216 -2122129,155,165,320 -2122201,154,154,308 -2122202,514,540,1054 -2122203,373,363,736 -2122204,0,0,0 -2122205,264,241,505 -2122206,342,351,693 -2122207,668,699,1367 -2122208,326,379,705 -2122209,325,324,649 -2122210,382,394,776 -2122211,71,59,130 -2122212,314,301,615 -2122213,772,801,1573 -2122214,306,302,608 -2122215,136,126,262 -2122216,218,219,437 -2122217,163,196,359 -2122218,0,0,0 -2122219,154,194,348 -2122220,199,197,396 -2122221,143,182,325 -2122222,985,1050,2035 -2122223,182,199,381 -2122224,250,280,530 -2122225,213,214,427 -2122226,147,151,298 -2122227,148,149,297 -2122228,203,210,413 -2122229,155,166,321 -2122230,160,166,326 -2122231,295,274,569 -2122232,409,437,846 -2122233,279,277,556 -2122234,217,248,465 -2122235,324,312,636 -2122236,244,237,481 -2122237,203,196,399 -2122238,255,214,469 -2122239,267,264,531 -2122240,195,216,411 -2122241,213,213,426 -2122242,24,29,53 -2122243,92,143,235 -2122244,588,630,1218 -2122245,431,463,894 -2122246,1000,1028,2028 -2122247,1314,1367,2681 -2122248,1524,1518,3042 -2122249,209,223,432 -2122250,1020,1059,2079 -2122251,263,266,529 -2122252,339,306,645 -2122253,393,388,781 -2122254,232,246,478 -2122255,270,292,562 -2122301,169,172,341 -2122302,287,280,567 -2122303,168,174,342 -2122304,331,324,655 -2122305,314,293,607 -2122306,182,181,363 -2122307,169,178,347 -2122308,208,204,412 -2122309,252,245,497 -2122310,157,160,317 -2122311,179,163,342 -2122312,301,282,583 -2122313,197,208,405 -2122314,259,265,524 -2122315,159,132,291 -2122316,111,124,235 -2122317,158,149,307 -2122318,209,228,437 -2122319,201,213,414 -2122320,190,225,415 -2122321,197,247,444 -2122322,175,166,341 -2122323,196,204,400 -2122324,3,4,7 -2122325,4,4,8 -2122326,254,232,486 -2122327,141,141,282 -2122328,209,186,395 -2122329,198,217,415 -2122330,168,196,364 -2122331,189,188,377 -2122332,152,152,304 -2122333,279,304,583 -2122334,202,205,407 -2122335,0,0,0 -2122336,273,271,544 -2122337,212,187,399 -2122338,191,208,399 -2122339,170,146,316 -2122340,195,196,391 -2122341,206,210,416 -2122342,268,250,518 -2122343,233,229,462 -2122344,5,0,5 -2122345,243,216,459 -2122346,249,280,529 -2122347,233,243,476 -2122348,212,222,434 -2122349,209,187,396 -2122350,0,0,0 -2122351,172,149,321 -2122352,108,91,199 -2122353,213,200,413 -2122354,230,209,439 -2122401,250,228,478 -2122402,229,234,463 -2122403,174,199,373 -2122404,329,357,686 -2122405,190,205,395 -2122406,338,374,712 -2122407,196,175,371 -2122408,172,151,323 -2122409,200,181,381 -2122410,359,334,693 -2122411,152,150,302 -2122412,386,400,786 -2122413,209,196,405 -2122414,261,228,489 -2122415,216,219,435 -2122416,133,145,278 -2122417,271,275,546 -2122418,206,216,422 -2122419,136,136,272 -2122420,149,143,292 -2122421,263,231,494 -2122422,249,236,485 -2122423,68,66,134 -2122424,105,98,203 -2122425,235,234,469 -2122426,219,223,442 -2122427,350,348,698 -2122501,189,181,370 -2122502,343,302,645 -2122503,151,148,299 -2122504,222,216,438 -2122505,144,140,284 -2122506,119,109,228 -2122507,252,260,512 -2122508,101,97,198 -2122509,285,307,592 -2122510,240,237,477 -2122511,185,152,337 -2122512,209,185,394 -2122513,3,0,3 -2122514,169,181,350 -2122515,0,0,0 -2122516,247,245,492 -2122517,128,134,262 -2122518,139,173,312 -2122519,256,248,504 -2122520,130,127,257 -2122521,230,228,458 -2122601,164,187,351 -2122602,261,297,558 -2122603,255,288,543 -2122604,268,294,562 -2122605,279,330,609 -2122606,285,281,566 -2122607,163,192,355 -2122608,286,270,556 -2122609,216,244,460 -2122610,139,134,273 -2122611,134,125,259 -2122612,235,227,462 -2122613,253,240,493 -2122614,174,174,348 -2122615,159,156,315 -2122616,3,0,3 -2122617,118,126,244 -2122701,0,0,0 -2122801,286,272,558 -2122802,177,176,353 -2122803,92,176,268 -2122804,5,0,5 -2122805,0,4,4 -2122806,209,223,432 -2122807,188,182,370 -2122808,179,175,354 -2122809,170,184,354 -2122810,233,247,480 -2122811,271,278,549 -2122812,252,248,500 -2122813,169,159,328 -2122814,154,157,311 -2122815,134,143,277 -2122816,101,96,197 -2122817,242,241,483 -2122818,7,0,7 -2122819,261,242,503 -2122820,217,232,449 -2122821,166,188,354 -2122822,227,208,435 -2122823,235,228,463 -2122824,30,42,72 -2122825,4,3,7 -2122826,99,98,197 -2122901,193,212,405 -2122902,238,266,504 -2122903,190,185,375 -2122904,187,185,372 -2122905,146,140,286 -2122906,247,252,499 -2122907,206,226,432 -2122908,272,317,589 -2122909,216,245,461 -2122910,202,202,404 -2122911,267,281,548 -2122912,183,202,385 -2122913,173,177,350 -2122914,248,255,503 -2122915,110,108,218 -2122916,143,171,314 -2122917,155,206,361 -2122918,200,226,426 -2122919,111,109,220 -2122920,161,164,325 -2122921,261,282,543 -2122922,195,206,401 -2122923,218,227,445 -2122924,219,227,446 -2122925,99,100,199 -2122926,219,253,472 -2122927,228,227,455 -2122928,152,161,313 -2122929,235,257,492 -2122930,199,212,411 -2122931,128,124,252 -2122932,114,103,217 -2122933,180,185,365 -2122934,161,177,338 -2122935,241,231,472 -2122936,143,120,263 -2122937,185,162,347 -2122938,280,248,528 -2122939,225,270,495 -2122940,248,275,523 -2122941,142,166,308 -2122942,122,127,249 -2122943,269,252,521 -2122944,162,172,334 -2122945,171,188,359 -2122946,194,176,370 -2122947,183,201,384 -2122948,145,134,279 -2122949,198,186,384 -2122950,188,208,396 -2122951,209,238,447 -2122952,259,322,581 -2122953,183,193,376 -2122954,258,262,520 -2122955,156,143,299 -2122956,272,279,551 -2122957,96,116,212 -2122958,112,130,242 -2122959,166,167,333 -2122960,159,162,321 -2122961,155,172,327 -2122962,247,242,489 -2123001,176,206,382 -2123002,171,176,347 -2123003,124,168,292 -2123004,130,142,272 -2123005,179,187,366 -2123006,228,238,466 -2123007,173,219,392 -2123008,195,213,408 -2123009,225,239,464 -2123010,208,258,466 -2123011,196,212,408 -2123012,257,268,525 -2123013,163,154,317 -2123014,172,165,337 -2123015,183,182,365 -2123016,123,193,316 -2123017,64,79,143 -2123101,211,230,441 -2123102,248,254,502 -2123103,119,129,248 -2123104,276,309,585 -2123105,184,198,382 -2123106,222,217,439 -2123107,226,225,451 -2123108,212,229,441 -2123109,271,259,530 -2123110,115,120,235 -2123111,219,207,426 -2123112,152,137,289 -2123113,235,256,491 -2123114,120,138,258 -2123115,208,179,387 -2123116,186,175,361 -2123117,218,264,482 -2123118,187,153,340 -2123119,179,182,361 -2123120,253,234,487 -2123121,173,190,363 -2123122,264,278,542 -2123201,171,181,352 -2123202,297,297,594 -2123203,208,200,408 -2123204,142,135,277 -2123205,204,206,410 -2123206,107,88,195 -2123207,314,338,652 -2123208,60,63,123 -2123209,230,227,457 -2123210,264,312,576 -2123211,244,291,535 -2123212,107,112,219 -2123213,213,207,420 -2123214,139,175,314 -2123215,295,324,619 -2123216,192,200,392 -2123217,150,189,339 -2123218,252,229,481 -2123219,230,267,497 -2123220,252,223,475 -2123221,214,214,428 -2123222,190,194,384 -2123223,238,242,480 -2123224,213,199,412 -2123225,0,0,0 -2123226,4,7,11 -2123227,149,182,331 -2123228,169,168,337 -2123229,69,69,138 -2123230,79,139,218 -2123301,133,148,281 -2123302,230,219,449 -2123303,149,126,275 -2123304,90,75,165 -2123305,139,122,261 -2123306,64,60,124 -2123307,228,197,425 -2123308,166,143,309 -2123309,249,244,493 -2123310,198,199,397 -2123401,186,195,381 -2123402,298,306,604 -2123403,217,231,448 -2123404,141,181,322 -2123405,214,212,426 -2123406,179,191,370 -2123407,203,204,407 -2123408,200,212,412 -2123409,190,194,384 -2123501,184,166,350 -2123502,175,146,321 -2123503,224,208,432 -2123504,192,208,400 -2123505,275,253,528 -2123506,164,168,332 -2123507,284,288,572 -2123508,126,136,262 -2123509,301,333,634 -2123510,224,215,439 -2123511,251,248,499 -2123512,170,174,344 -2123513,277,284,561 -2123514,172,167,339 -2123515,141,142,283 -2123516,248,230,478 -2123517,210,213,423 -2123518,146,139,285 -2123519,228,223,451 -2123520,180,143,323 -2123521,183,191,374 -2123601,315,344,659 -2123602,306,281,587 -2123603,198,250,448 -2123604,260,281,541 -2123605,5,0,5 -2123606,139,149,288 -2123607,198,216,414 -2123608,116,106,222 -2123609,163,110,273 -2123610,291,308,599 -2123611,147,127,274 -2123612,148,145,293 -2123613,157,179,336 -2123614,174,202,376 -2123615,294,289,583 -2123616,98,107,205 -2123617,129,132,261 -2123618,102,109,211 -2123701,0,0,0 -2123702,273,262,535 -2123703,263,272,535 -2123704,194,236,430 -2123705,242,235,477 -2123706,351,416,767 -2123707,259,255,514 -2123708,241,230,471 -2123709,172,166,338 -2123710,217,230,447 -2123711,0,0,0 -2123712,268,266,534 -2123713,0,0,0 -2123714,189,167,356 -2123715,281,293,574 -2123716,240,252,492 -2123717,197,196,393 -2123718,253,272,525 -2123719,152,149,301 -2123720,173,172,345 -2123721,226,222,448 -2123722,315,285,600 -2123723,189,209,398 -2123724,164,153,317 -2123725,179,180,359 -2123726,209,243,452 -2123727,228,244,472 -2123728,222,234,456 -2123729,206,189,395 -2123730,185,198,383 -2123731,141,148,289 -2123801,220,203,423 -2123802,268,252,520 -2123803,269,252,521 -2123804,197,175,372 -2123805,168,159,327 -2123806,259,245,504 -2123807,161,142,303 -2123808,200,192,392 -2123809,167,153,320 -2123810,152,136,288 -2123811,139,128,267 -2123812,281,248,529 -2123813,122,140,262 -2123814,188,173,361 -2123815,158,155,313 -2123816,199,188,387 -2123817,196,178,374 -2123818,166,181,347 -2123819,185,204,389 -2123820,137,137,274 -2123821,162,173,335 -2123822,210,227,437 -2123823,272,291,563 -2123824,116,129,245 -2123825,134,126,260 -2123826,180,194,374 -2123827,143,141,284 -2123828,196,216,412 -2123829,103,111,214 -2123830,216,202,418 -2123831,211,191,402 -2123832,164,159,323 -2123833,187,186,373 -2123834,153,179,332 -2123835,159,196,355 -2123836,198,179,377 -2123837,133,136,269 -2123838,188,210,398 -2123839,194,210,404 -2123840,162,159,321 -2123841,146,165,311 -2123842,98,202,300 -2123843,130,147,277 -2123844,204,206,410 -2123845,246,234,480 -2123846,105,121,226 -2123847,158,157,315 -2123848,227,226,453 -2123849,263,265,528 -2123850,303,296,599 -2123851,208,155,363 -2123852,260,250,510 -2123853,229,287,516 -2123854,185,213,398 -2123855,306,303,609 -2123856,230,202,432 -2123857,188,184,372 -2123858,129,126,255 -2123859,178,181,359 -2123860,194,200,394 -2123861,0,0,0 -2123862,0,0,0 -2123863,0,0,0 -2123864,237,237,474 -2123865,344,374,718 -2123866,261,244,505 -2123867,187,175,362 -2123868,248,249,497 -2123869,328,358,686 -2123870,241,260,501 -2123871,195,180,375 -2123872,185,181,366 -2123873,149,156,305 -2123874,144,175,319 -2123901,276,288,564 -2123902,282,265,547 -2123903,226,214,440 -2123904,142,144,286 -2123905,164,171,335 -2123906,282,255,537 -2123907,259,262,521 -2123908,174,194,368 -2123909,254,403,657 -2123910,205,212,417 -2123911,205,198,403 -2123912,189,179,368 -2123913,169,162,331 -2123914,179,182,361 -2123915,317,369,686 -2123916,263,266,529 -2123917,320,398,718 -2123918,272,257,529 -2123919,182,189,371 -2123920,147,151,298 -2123921,144,162,306 -2123922,187,207,394 -2123923,254,283,537 -2123924,217,242,459 -2123925,266,274,540 -2123926,322,338,660 -2123927,290,275,565 -2123928,119,146,265 -2123929,248,256,504 -2123930,193,184,377 -2123931,279,302,581 -2123932,193,231,424 -2123933,234,233,467 -2123934,224,224,448 -2123935,135,167,302 -2123936,142,157,299 -2123937,175,180,355 -2123938,295,303,598 -2123939,167,170,337 -2123940,202,190,392 -2123941,211,221,432 -2123942,113,122,235 -2123943,171,191,362 -2123944,164,147,311 -2123945,231,248,479 -2123946,244,233,477 -2123947,128,156,284 -2124001,129,146,275 -2124002,281,289,570 -2124003,339,359,698 -2124004,277,269,546 -2124005,231,204,435 -2124006,159,175,334 -2124007,0,0,0 -2124008,175,185,360 -2124009,130,142,272 -2124010,119,127,246 -2124011,166,173,339 -2124012,138,145,283 -2124013,235,218,453 -2124014,266,253,519 -2124015,356,338,694 -2124016,316,307,623 -2124017,146,148,294 -2124018,282,277,559 -2124019,210,210,420 -2124020,205,195,400 -2124021,196,242,438 -2124022,255,274,529 -2124023,136,134,270 -2124024,91,103,194 -2124025,128,153,281 -2124026,297,293,590 -2124027,190,199,389 -2124028,134,147,281 -2124029,182,178,360 -2124030,175,195,370 -2124031,185,206,391 -2124032,107,115,222 -2124101,211,216,427 -2124102,234,239,473 -2124103,238,256,494 -2124104,237,217,454 -2124105,373,411,784 -2124106,114,128,242 -2124107,141,159,300 -2124108,217,237,454 -2124109,233,257,490 -2124110,163,180,343 -2124111,192,209,401 -2124112,270,281,551 -2124113,146,178,324 -2124114,169,173,342 -2124115,219,233,452 -2124116,166,179,345 -2124117,146,139,285 -2124118,193,202,395 -2124119,236,263,499 -2124120,160,179,339 -2124121,283,321,604 -2124122,273,304,577 -2124123,131,126,257 -2124124,255,255,510 -2124125,219,230,449 -2124126,240,240,480 -2124127,246,283,529 -2124128,273,264,537 -2124129,173,176,349 -2124130,223,237,460 -2124131,311,333,644 -2124132,325,299,624 -2124133,560,542,1102 -2124134,134,173,307 -2124135,164,244,408 -2124136,252,305,557 -2124137,218,200,418 -2124138,136,155,291 -2124139,195,198,393 -2124140,228,225,453 -2124141,182,158,340 -2124142,177,161,338 -2124143,178,154,332 -2124144,212,225,437 -2124145,354,331,685 -2124146,274,281,555 -2124147,99,98,197 -2124148,232,197,429 -2124149,108,81,189 -2124150,157,159,316 -2124151,104,108,212 -2124152,172,186,358 -2124153,223,223,446 -2124154,245,351,596 -2124155,211,213,424 -2124201,289,291,580 -2124202,218,205,423 -2124203,268,285,553 -2124204,314,331,645 -2124205,366,336,702 -2124206,233,253,486 -2124207,199,193,392 -2124208,276,279,555 -2124209,260,228,488 -2124210,199,208,407 -2124211,177,211,388 -2124212,370,336,706 -2124213,241,229,470 -2124214,150,155,305 -2124215,315,325,640 -2124216,95,50,145 -2124217,129,125,254 -2124218,303,306,609 -2124219,176,214,390 -2124220,230,222,452 -2124221,171,160,331 -2124222,275,233,508 -2124223,21,25,46 -2124224,228,246,474 -2124225,269,253,522 -2124226,0,0,0 -2124227,119,110,229 -2124301,189,186,375 -2124302,118,144,262 -2124303,0,3,3 -2124304,3,0,3 -2124305,172,37,209 -2124306,235,250,485 -2124307,96,116,212 -2124308,138,138,276 -2124309,194,207,401 -2124310,209,198,407 -2124311,157,166,323 -2124312,276,271,547 -2124313,121,117,238 -2124314,286,259,545 -2124315,140,164,304 -2124316,123,112,235 -2124317,238,249,487 -2124318,293,294,587 -2124319,242,223,465 -2124320,311,333,644 -2124321,231,221,452 -2124322,0,0,0 -2124323,230,244,474 -2124324,165,147,312 -2124325,132,152,284 -2124326,184,193,377 -2124327,305,319,624 -2124328,233,242,475 -2124329,252,229,481 -2124330,218,172,390 -2124331,151,130,281 -2124332,106,121,227 -2124333,228,235,463 -2124334,183,184,367 -2124335,219,231,450 -2124336,218,254,472 -2124337,193,187,380 -2124338,135,112,247 -2124339,192,186,378 -2124340,254,262,516 -2124341,194,180,374 -2124342,129,123,252 -2124343,230,226,456 -2124344,147,153,300 -2124401,221,220,441 -2124402,161,170,331 -2124403,239,226,465 -2124404,265,255,520 -2124405,175,165,340 -2124406,107,111,218 -2124407,372,412,784 -2124408,296,264,560 -2124409,191,199,390 -2124410,311,333,644 -2124411,732,763,1495 -2124412,209,205,414 -2124413,98,76,174 -2124414,285,294,579 -2124415,296,298,594 -2124416,262,270,532 -2124417,137,118,255 -2124418,189,221,410 -2124419,127,163,290 -2124420,246,277,523 -2124421,182,172,354 -2124422,161,156,317 -2124423,247,229,476 -2124424,250,225,475 -2124425,152,149,301 -2124426,174,170,344 -2124427,153,154,307 -2124428,212,204,416 -2124429,273,287,560 -2124430,167,163,330 -2124431,217,250,467 -2124432,325,323,648 -2124433,244,253,497 -2124434,271,259,530 -2124435,191,176,367 -2124436,248,258,506 -2124437,274,263,537 -2124438,369,379,748 -2124439,206,203,409 -2124440,347,383,730 -2124441,267,263,530 -2124442,280,286,566 -2124443,454,447,901 -2124444,271,247,518 -2124445,266,262,528 -2124446,149,171,320 -2124447,140,151,291 -2124448,154,141,295 -2124449,3205,3228,6433 -2124450,333,351,684 -2124451,290,330,620 -2124452,142,127,269 -2124453,194,186,380 -2124454,140,114,254 -2124455,184,177,361 -2124456,145,129,274 -2124457,165,172,337 -2124458,218,195,413 -2124459,121,115,236 -2124460,158,154,312 -2124461,132,138,270 -2124462,137,121,258 -2124501,250,250,500 -2124502,223,207,430 -2124503,153,162,315 -2124504,142,152,294 -2124505,209,208,417 -2124506,183,196,379 -2124507,171,179,350 -2124508,238,236,474 -2124509,132,113,245 -2124510,156,159,315 -2124511,141,137,278 -2124512,133,162,295 -2124513,176,208,384 -2124514,228,262,490 -2124515,177,191,368 -2124516,142,130,272 -2124517,152,149,301 -2124518,217,211,428 -2124519,189,184,373 -2124520,93,103,196 -2124521,117,126,243 -2124522,102,103,205 -2124523,272,276,548 -2124524,168,186,354 -2124525,131,163,294 -2124526,281,265,546 -2124527,110,128,238 -2124528,316,297,613 -2124529,182,195,377 -2124530,327,332,659 -2124531,269,284,553 -2124532,257,245,502 -2124533,166,162,328 -2124534,0,0,0 -2124535,0,0,0 -2124536,0,0,0 -2124537,3,7,10 -2124538,170,190,360 -2124539,244,242,486 -2124540,239,242,481 -2124541,231,265,496 -2124542,241,294,535 -2124543,270,265,535 -2124544,88,103,191 -2124545,134,116,250 -2124546,268,267,535 -2124547,130,120,250 -2124548,207,215,422 -2124601,272,276,548 -2124602,286,274,560 -2124603,221,201,422 -2124604,181,181,362 -2124605,187,184,371 -2124606,230,224,454 -2124607,195,199,394 -2124608,143,175,318 -2124609,213,214,427 -2124610,257,232,489 -2124611,228,219,447 -2124612,208,226,434 -2124613,124,131,255 -2124614,246,246,492 -2124615,273,263,536 -2124616,177,143,320 -2124617,275,272,547 -2124618,155,135,290 -2124619,199,175,374 -2124620,175,174,349 -2124621,158,145,303 -2124622,177,96,273 -2124623,157,138,295 -2124624,169,168,337 -2124625,319,314,633 -2124626,418,446,864 -2124627,181,179,360 -2124628,172,181,353 -2124629,140,144,284 -2124701,284,258,542 -2124702,199,186,385 -2124703,266,277,543 -2124704,287,311,598 -2124705,232,245,477 -2124706,299,293,592 -2124707,141,151,292 -2124708,262,305,567 -2124709,262,238,500 -2124710,214,244,458 -2124711,277,292,569 -2124712,232,241,473 -2124713,294,316,610 -2124714,252,298,550 -2124715,289,321,610 -2124716,233,264,497 -2124717,228,227,455 -2124718,215,239,454 -2124719,192,178,370 -2124720,220,265,485 -2124721,266,263,529 -2124722,282,280,562 -2124723,291,285,576 -2124724,345,324,669 -2124725,323,330,653 -2124726,241,229,470 -2124727,259,233,492 -2124728,208,218,426 -2124729,110,106,216 -2124730,101,120,221 -2124801,69,73,142 -2124901,226,251,477 -2124902,248,230,478 -2124903,316,320,636 -2124904,227,230,457 -2124905,197,245,442 -2124906,214,233,447 -2124907,319,283,602 -2124908,411,399,810 -2124909,20,11,31 -2124910,213,196,409 -2124911,217,224,441 -2124912,393,419,812 -2124913,218,238,456 -2124914,168,181,349 -2124915,194,189,383 -2124916,214,227,441 -2124917,119,140,259 -2124918,302,289,591 -2124919,153,168,321 -2124920,264,282,546 -2124921,277,261,538 -2124922,199,204,403 -2124923,235,224,459 -2124924,204,205,409 -2124925,188,217,405 -2124926,253,299,552 -2124927,205,209,414 -2124928,306,287,593 -2124929,181,193,374 -2124930,155,159,314 -2124931,130,134,264 -2124932,244,248,492 -2124933,269,285,554 -2124934,217,235,452 -2124935,3,0,3 -2124936,140,157,297 -2124937,149,145,294 -2124938,167,197,364 -2124939,199,241,440 -2124940,186,209,395 -2124941,173,187,360 -2124942,162,147,309 -2124943,229,248,477 -2124944,215,244,459 -2124945,215,206,421 -2124946,130,113,243 -2124947,166,195,361 -2125001,213,211,424 -2125002,186,183,369 -2125003,221,251,472 -2125004,235,248,483 -2125005,196,217,413 -2125006,186,204,390 -2125007,268,270,538 -2125008,9,3,12 -2125009,234,263,497 -2125010,223,218,441 -2125011,225,206,431 -2125012,138,154,292 -2125013,165,163,328 -2125014,199,202,401 -2125015,104,101,205 -2125016,130,137,267 -2125017,5,5,10 -2125018,137,159,296 -2125019,0,0,0 -2125101,106,103,209 -2125102,205,196,401 -2125103,191,176,367 -2125104,206,190,396 -2125105,312,296,608 -2125106,295,263,558 -2125107,318,295,613 -2125108,112,108,220 -2125109,285,293,578 -2125110,172,188,360 -2125111,167,190,357 -2125112,356,346,702 -2125113,200,209,409 -2125114,305,300,605 -2125115,196,206,402 -2125116,205,203,408 -2125117,141,158,299 -2125118,307,297,604 -2125119,153,147,300 -2125120,312,345,657 -2125121,144,142,286 -2125122,9,0,9 -2125123,151,137,288 -2125124,200,195,395 -2125125,144,200,344 -2125126,132,125,257 -2125127,147,145,292 -2125128,149,169,318 -2125201,6,0,6 -2125202,281,258,539 -2125203,136,167,303 -2125204,244,280,524 -2125205,140,147,287 -2125206,177,176,353 -2125207,164,184,348 -2125208,293,321,614 -2125209,156,158,314 -2125210,262,250,512 -2125211,212,198,410 -2125212,244,258,502 -2125213,273,256,529 -2125214,282,265,547 -2125215,248,218,466 -2125216,317,346,663 -2125217,299,302,601 -2125218,208,211,419 -2125219,226,233,459 -2125220,272,319,591 -2125221,168,223,391 -2125222,229,247,476 -2125223,179,177,356 -2125224,224,230,454 -2125225,214,229,443 -2125226,218,226,444 -2125227,208,208,416 -2125228,228,247,475 -2125229,260,309,569 -2125230,140,159,299 -2125231,328,357,685 -2125232,167,194,361 -2125233,187,200,387 -2125234,125,158,283 -2125235,215,230,445 -2125236,182,158,340 -2125237,208,263,471 -2125238,266,266,532 -2125239,230,260,490 -2125240,230,269,499 -2125241,120,121,241 -2125242,214,220,434 -2125243,294,295,589 -2125244,204,193,397 -2125245,346,392,738 -2125246,161,185,346 -2125247,143,153,296 -2125248,224,231,455 -2125249,138,130,268 -2125250,251,247,498 -2125251,0,0,0 -2125252,107,101,208 -2125253,160,157,317 -2125254,146,140,286 -2125255,199,228,427 -2125256,162,152,314 -2125257,179,173,352 -2125258,111,129,240 -2125259,185,171,356 -2125260,129,145,274 -2125261,102,103,205 -2125301,183,187,370 -2125302,198,218,416 -2125303,188,194,382 -2125304,313,312,625 -2125305,139,165,304 -2125306,227,225,452 -2125307,279,278,557 -2125308,246,248,494 -2125309,270,289,559 -2125310,180,176,356 -2125311,269,251,520 -2125312,184,193,377 -2125313,212,178,390 -2125314,215,198,413 -2125315,294,292,586 -2125316,242,271,513 -2125317,214,219,433 -2125318,115,136,251 -2125319,275,271,546 -2125320,241,266,507 -2125321,191,179,370 -2125322,292,291,583 -2125323,316,335,651 -2125324,153,148,301 -2125325,310,310,620 -2125326,163,180,343 -2125327,282,301,583 -2125328,156,144,300 -2125329,177,172,349 -2125330,212,211,423 -2125331,219,220,439 -2125332,218,283,501 -2125333,273,243,516 -2125334,205,212,417 -2125335,216,216,432 -2125336,231,235,466 -2125337,174,189,363 -2125338,217,204,421 -2125339,141,141,282 -2125340,143,163,306 -2125341,258,313,571 -2125342,260,261,521 -2125343,261,241,502 -2125344,186,195,381 -2125345,234,245,479 -2125346,289,265,554 -2125347,109,139,248 -2125348,153,178,331 -2125349,135,133,268 -2125350,194,185,379 -2125351,291,240,531 -2125352,180,187,367 -2125353,228,199,427 -2125354,249,246,495 -2125355,277,238,515 -2125356,109,134,243 -2125357,130,124,254 -2125358,332,300,632 -2125359,139,156,295 -2125360,235,373,608 -2125361,208,220,428 -2125362,233,241,474 -2125363,271,264,535 -2125364,139,154,293 -2125365,0,0,0 -2125401,208,194,402 -2125402,218,234,452 -2125403,300,286,586 -2125404,160,149,309 -2125405,193,209,402 -2125406,246,247,493 -2125407,4,3,7 -2125408,210,246,456 -2125409,233,241,474 -2125410,191,216,407 -2125411,215,248,463 -2125412,109,120,229 -2125413,283,319,602 -2125414,250,234,484 -2125415,209,212,421 -2125416,339,350,689 -2125417,165,178,343 -2125418,4,4,8 -2125419,259,270,529 -2125420,237,222,459 -2125421,219,233,452 -2125422,279,282,561 -2125423,159,144,303 -2125424,200,216,416 -2125425,220,214,434 -2125426,0,0,0 -2125427,0,0,0 -2125428,151,156,307 -2125429,257,229,486 -2125430,241,232,473 -2125431,290,273,563 -2125432,109,123,232 -2125433,136,122,258 -2125434,178,165,343 -2125501,212,212,424 -2125502,175,189,364 -2125503,238,241,479 -2125504,438,453,891 -2125505,218,236,454 -2125506,266,274,540 -2125507,242,257,499 -2125508,160,158,318 -2125509,104,128,232 -2125510,212,212,424 -2125511,103,78,181 -2125512,303,327,630 -2125513,214,195,409 -2125514,192,188,380 -2125515,177,157,334 -2125601,136,116,252 -2125602,177,183,360 -2125603,196,186,382 -2125604,147,161,308 -2125605,274,291,565 -2125606,184,194,378 -2125607,0,0,0 -2125608,287,282,569 -2125609,208,217,425 -2125610,158,176,334 -2125611,183,168,351 -2125612,217,232,449 -2125613,192,212,404 -2125614,158,153,311 -2125615,97,114,211 -2125616,274,279,553 -2125617,107,105,212 -2125618,194,192,386 -2125619,265,296,561 -2125620,220,235,455 -2125621,269,274,543 -2125622,270,264,534 -2125623,93,175,268 -2125624,277,250,527 -2125625,201,218,419 -2125626,263,257,520 -2125627,269,285,554 -2125628,119,103,222 -2125629,277,283,560 -2125630,256,247,503 -2125631,138,146,284 -2125632,250,258,508 -2125633,228,240,468 -2125634,127,144,271 -2125635,237,234,471 -2125636,123,145,268 -2125637,150,167,317 -2125638,166,151,317 -2125639,116,104,220 -2125701,0,0,0 -2125702,249,240,489 -2125703,357,337,694 -2125704,304,291,595 -2125705,205,202,407 -2125706,223,234,457 -2125707,215,212,427 -2125708,259,249,508 -2125709,202,195,397 -2125710,240,256,496 -2125711,227,226,453 -2125712,236,254,490 -2125713,114,116,230 -2125714,274,302,576 -2125715,183,187,370 -2125716,185,210,395 -2125717,119,170,289 -2125718,244,206,450 -2125719,178,190,368 -2125801,0,0,0 -2125802,7,8,15 -2125803,235,245,480 -2125804,172,164,336 -2125805,268,268,536 -2125806,204,240,444 -2125807,283,310,593 -2125808,0,0,0 -2125809,175,198,373 -2125810,222,213,435 -2125811,147,160,307 -2125812,233,217,450 -2125813,273,258,531 -2125814,250,245,495 -2125815,242,224,466 -2125816,258,249,507 -2125817,225,222,447 -2125818,130,121,251 -2125819,219,262,481 -2125820,138,134,272 -2125821,195,177,372 -2125822,243,233,476 -2125823,219,221,440 -2125824,294,292,586 -2125825,155,154,309 -2125826,235,234,469 -2125827,171,177,348 -2125828,208,205,413 -2125901,221,231,452 -2125902,118,114,232 -2125903,176,172,348 -2125904,163,153,316 -2125905,169,165,334 -2125906,232,237,469 -2125907,234,229,463 -2125908,204,211,415 -2125909,264,289,553 -2125910,154,164,318 -2125911,194,224,418 -2125912,257,252,509 -2125913,252,256,508 -2125914,155,182,337 -2125915,211,206,417 -2125916,0,0,0 -2125917,94,94,188 -2125918,176,158,334 -2125919,153,166,319 -2125920,127,165,292 -2125921,143,146,289 -2125922,222,242,464 -2125923,226,239,465 -2125924,96,234,330 -2125925,142,185,327 -2125926,151,166,317 -2125927,244,229,473 -2125928,132,78,210 -2125929,271,300,571 -2125930,229,229,458 -2125931,215,184,399 -2125932,140,149,289 -2125933,165,179,344 -2125934,119,113,232 -2125935,178,183,361 -2125936,240,257,497 -2125937,154,147,301 -2125938,108,104,212 -2126001,0,0,0 -2126002,147,165,312 -2126003,4,3,7 -2126004,203,166,369 -2126005,222,223,445 -2126006,15,17,32 -2126007,301,269,570 -2126008,173,188,361 -2126009,162,173,335 -2126010,188,210,398 -2126011,205,192,397 -2126012,109,111,220 -2126013,280,285,565 -2126014,247,232,479 -2126015,190,233,423 -2126016,228,224,452 -2126017,160,135,295 -2126018,189,217,406 -2126019,191,240,431 -2126020,131,160,291 -2126021,209,293,502 -2126022,248,242,490 -2126023,245,266,511 -2126024,70,153,223 -2126025,152,139,291 -2126026,218,281,499 -2126027,197,201,398 -2126028,180,177,357 -2126029,225,217,442 -2126030,170,166,336 -2126031,179,194,373 -2126032,155,188,343 -2126033,186,211,397 -2126034,206,218,424 -2126035,229,234,463 -2126036,178,178,356 -2126037,132,128,260 -2126038,226,261,487 -2126039,185,355,540 -2126040,156,177,333 -2126041,187,227,414 -2126042,213,229,442 -2126043,166,158,324 -2126044,214,212,426 -2126045,166,173,339 -2126046,191,194,385 -2126047,158,178,336 -2126101,240,221,461 -2126102,250,279,529 -2126103,334,351,685 -2126104,280,253,533 -2126105,202,186,388 -2126106,209,220,429 -2126107,133,138,271 -2126108,322,324,646 -2126109,183,333,516 -2126110,154,139,293 -2126111,199,213,412 -2126112,227,216,443 -2126113,148,137,285 -2126114,177,161,338 -2126115,130,117,247 -2126116,254,261,515 -2126117,168,179,347 -2126118,162,229,391 -2126119,184,190,374 -2126120,127,127,254 -2126121,248,250,498 -2126122,104,105,209 -2126123,88,108,196 -2126124,148,141,289 -2126125,238,268,506 -2126126,195,188,383 -2126127,280,266,546 -2126128,183,181,364 -2126129,212,241,453 -2126130,234,236,470 -2126131,216,208,424 -2126132,180,173,353 -2126133,313,301,614 -2126134,174,172,346 -2126135,157,156,313 -2126136,97,98,195 -2126137,133,131,264 -2126138,151,186,337 -2126139,168,195,363 -2126201,145,132,277 -2126202,102,118,220 -2126203,169,175,344 -2126204,228,223,451 -2126205,196,207,403 -2126206,118,117,235 -2126207,132,134,266 -2126208,201,179,380 -2126209,132,137,269 -2126210,260,275,535 -2126211,176,176,352 -2126212,97,81,178 -2126213,157,204,361 -2126214,156,173,329 -2126215,164,151,315 -2126216,166,149,315 -2126217,153,133,286 -2126218,110,95,205 -2126219,99,108,207 -2126220,172,178,350 -2126221,185,182,367 -2126222,108,129,237 -2126223,111,126,237 -2126224,219,201,420 -2126225,165,155,320 -2126226,116,116,232 -2126227,199,216,415 -2126228,186,174,360 -2126229,150,133,283 -2126230,122,131,253 -2126231,144,141,285 -2126232,170,153,323 -2126301,261,266,527 -2126302,242,241,483 -2126303,178,194,372 -2126304,109,111,220 -2126305,138,154,292 -2126306,187,188,375 -2126307,185,214,399 -2126308,145,175,320 -2126309,162,185,347 -2126310,138,114,252 -2126311,265,275,540 -2126312,187,183,370 -2126313,131,140,271 -2126314,167,167,334 -2126315,173,178,351 -2126316,155,140,295 -2126317,281,303,584 -2126318,265,265,530 -2126319,335,334,669 -2126320,228,190,418 -2126321,112,134,246 -2126322,153,166,319 -2126323,309,264,573 -2126324,209,187,396 -2126325,233,228,461 -2126326,253,310,563 -2126327,3,0,3 -2126328,0,0,0 -2126329,208,225,433 -2126330,261,272,533 -2126401,119,146,265 -2126402,0,0,0 -2126403,215,226,441 -2126404,174,218,392 -2126405,222,222,444 -2126406,175,200,375 -2126407,227,256,483 -2126408,141,151,292 -2126409,251,262,513 -2126410,190,254,444 -2126411,130,171,301 -2126412,137,154,291 -2126413,239,233,472 -2126414,189,199,388 -2126415,230,244,474 -2126416,85,109,194 -2126417,299,299,598 -2126418,143,141,284 -2126419,251,274,525 -2126420,265,293,558 -2126421,113,118,231 -2126422,140,159,299 -2126423,228,265,493 -2126424,233,246,479 -2126425,233,206,439 -2126426,153,157,310 -2126427,285,281,566 -2126428,142,166,308 -2126429,176,188,364 -2126430,0,0,0 -2126431,261,259,520 -2126432,232,242,474 -2126433,191,215,406 -2126434,284,323,607 -2126435,346,383,729 -2126436,176,189,365 -2126437,211,234,445 -2126438,159,237,396 -2126439,113,153,266 -2126440,162,151,313 -2126441,200,224,424 -2126442,107,115,222 -2126443,106,105,211 -2126444,148,164,312 -2126445,114,129,243 -2126446,212,230,442 -2126447,221,322,543 -2126448,192,195,387 -2126449,227,307,534 -2126450,147,158,305 -2126451,129,119,248 -2126452,198,186,384 -2126453,159,168,327 -2126454,154,176,330 -2126455,172,197,369 -2126456,140,148,288 -2126457,130,310,440 -2126458,194,198,392 -2126459,271,297,568 -2126460,179,200,379 -2126461,231,235,466 -2126462,219,220,439 -2126463,153,216,369 -2126464,150,170,320 -2126465,103,132,235 -2126466,148,176,324 -2126467,144,138,282 -2126468,154,164,318 -2126469,213,221,434 -2126470,143,156,299 -2126471,269,320,589 -2126472,129,136,265 -2126473,246,250,496 -2126474,183,234,417 -2126475,205,200,405 -2126476,195,246,441 -2126477,205,210,415 -2126501,216,243,459 -2126502,196,210,406 -2126503,162,176,338 -2126504,180,193,373 -2126505,171,214,385 -2126506,225,230,455 -2126507,195,193,388 -2126508,229,251,480 -2126509,232,261,493 -2126510,201,209,410 -2126511,246,239,485 -2126512,279,269,548 -2126513,302,301,603 -2126514,267,266,533 -2126515,304,271,575 -2126516,138,130,268 -2126517,216,211,427 -2126518,187,182,369 -2126519,251,263,514 -2126520,271,277,548 -2126521,116,136,252 -2126522,87,107,194 -2126523,269,265,534 -2126524,251,244,495 -2126525,228,241,469 -2126526,150,163,313 -2126527,170,172,342 -2126528,176,178,354 -2126529,275,253,528 -2126530,152,161,313 -2126531,259,266,525 -2126532,224,223,447 -2126533,203,213,416 -2126534,177,166,343 -2126535,226,210,436 -2126536,128,134,262 -2126537,173,168,341 -2126538,130,106,236 -2126539,223,205,428 -2126540,109,96,205 -2126541,179,241,420 -2126542,137,127,264 -2126543,145,172,317 -2126544,247,256,503 -2126601,131,115,246 -2126602,137,133,270 -2126603,4,5,9 -2126604,7,4,11 -2126605,0,0,0 -2126606,213,294,507 -2126607,241,253,494 -2126608,209,243,452 -2126609,143,140,283 -2126610,0,0,0 -2126611,167,156,323 -2126612,122,196,318 -2126613,113,131,244 -2126614,226,237,463 -2126615,168,171,339 -2126616,35,28,63 -2126617,230,216,446 -2126618,233,250,483 -2126619,162,206,368 -2126620,136,135,271 -2126621,172,164,336 -2126622,204,215,419 -2126623,199,221,420 -2126624,139,122,261 -2126625,200,220,420 -2126626,131,154,285 -2126627,161,186,347 -2126628,58,50,108 -2126629,0,0,0 -2126630,161,195,356 -2126631,164,187,351 -2126632,227,332,559 -2126633,126,165,291 -2126634,134,150,284 -2126635,248,241,489 -2126636,162,169,331 -2126637,171,155,326 -2126638,273,286,559 -2126639,152,161,313 -2126640,209,206,415 -2126641,237,272,509 -2126642,176,193,369 -2126643,273,288,561 -2126644,254,281,535 -2126645,181,190,371 -2126646,276,272,548 -2126647,136,136,272 -2126648,196,196,392 -2126701,193,208,401 -2126702,267,264,531 -2126703,248,241,489 -2126704,207,217,424 -2126705,186,186,372 -2126706,243,256,499 -2126707,280,292,572 -2126708,175,153,328 -2126709,266,284,550 -2126710,159,162,321 -2126711,251,268,519 -2126712,228,233,461 -2126713,194,207,401 -2126714,231,227,458 -2126715,148,157,305 -2126716,172,161,333 -2126717,100,136,236 -2126718,273,274,547 -2126719,242,222,464 -2126720,179,208,387 -2126721,237,233,470 -2126722,179,172,351 -2126723,94,97,191 -2126724,231,258,489 -2126725,202,206,408 -2126726,186,214,400 -2126727,272,287,559 -2126728,120,137,257 -2126729,170,175,345 -2126730,157,168,325 -2126731,157,179,336 -2126732,265,267,532 -2126733,240,265,505 -2126734,188,171,359 -2126735,240,236,476 -2126736,233,215,448 -2126737,254,278,532 -2126738,115,121,236 -2126739,220,247,467 -2126740,179,214,393 -2126741,127,131,258 -2126742,130,173,303 -2126743,272,291,563 -2126744,160,199,359 -2126745,163,155,318 -2126746,116,115,231 -2126747,149,152,301 -2126801,125,145,270 -2126802,184,168,352 -2126803,142,170,312 -2126804,208,205,413 -2126805,262,258,520 -2126806,226,216,442 -2126807,217,233,450 -2126808,335,353,688 -2126809,230,217,447 -2126810,175,198,373 -2126811,215,213,428 -2126812,196,189,385 -2126813,163,155,318 -2126814,144,140,284 -2126815,238,248,486 -2126816,274,286,560 -2126817,256,282,538 -2126818,250,227,477 -2126819,173,169,342 -2126820,197,188,385 -2126821,221,210,431 -2126822,96,113,209 -2126823,112,108,220 -2126901,215,289,504 -2126902,229,239,468 -2126903,197,204,401 -2126904,167,200,367 -2126905,212,223,435 -2126906,242,309,551 -2126907,259,283,542 -2126908,222,244,466 -2126909,162,159,321 -2126910,163,200,363 -2126911,289,351,640 -2126912,222,193,415 -2126913,109,124,233 -2126914,185,217,402 -2126915,147,254,401 -2126916,225,237,462 -2126917,287,290,577 -2126918,178,184,362 -2126919,203,206,409 -2126920,271,261,532 -2126921,315,337,652 -2126922,240,313,553 -2127001,244,300,544 -2127002,273,283,556 -2127003,162,147,309 -2127004,275,313,588 -2127005,211,229,440 -2127006,196,211,407 -2127007,219,215,434 -2127008,161,192,353 -2127009,228,220,448 -2127010,298,301,599 -2127011,262,292,554 -2127012,300,307,607 -2127013,195,213,408 -2127014,240,254,494 -2127015,174,152,326 -2127016,217,209,426 -2127017,172,178,350 -2127018,163,183,346 -2127019,197,221,418 -2127020,172,180,352 -2127021,100,104,204 -2127022,139,149,288 -2127023,207,219,426 -2127024,284,283,567 -2127025,282,283,565 -2127026,198,219,417 -2127027,162,188,350 -2127028,142,159,301 -2127029,185,181,366 -2127030,112,101,213 -2127031,114,131,245 -2127032,193,214,407 -2127033,117,140,257 -2127034,211,217,428 -2127035,133,146,279 -2127036,0,0,0 -2127037,148,156,304 -2127038,123,119,242 -2127039,0,0,0 -2127040,0,0,0 -2127101,0,0,0 -2127102,188,232,420 -2127103,288,282,570 -2127104,123,151,274 -2127105,267,268,535 -2127106,240,217,457 -2127107,170,171,341 -2127108,174,216,390 -2127109,267,263,530 -2127110,180,169,349 -2127111,208,216,424 -2127112,168,184,352 -2127113,247,267,514 -2127114,116,103,219 -2127115,152,146,298 -2127116,318,321,639 -2127117,222,237,459 -2127118,177,177,354 -2127119,200,213,413 -2127120,113,140,253 -2127121,231,260,491 -2127122,191,199,390 -2127123,319,319,638 -2127124,195,201,396 -2127125,104,95,199 -2127126,208,320,528 -2127127,138,155,293 -2127128,95,132,227 -2127129,3,0,3 -2127201,150,153,303 -2127202,158,166,324 -2127203,152,169,321 -2127204,231,304,535 -2127205,285,311,596 -2127206,211,205,416 -2127207,174,187,361 -2127208,157,180,337 -2127209,207,207,414 -2127210,151,178,329 -2127211,227,222,449 -2127212,177,185,362 -2127213,261,255,516 -2127214,208,258,466 -2127215,288,288,576 -2127216,233,234,467 -2127217,200,231,431 -2127218,206,219,425 -2127219,245,245,490 -2127220,150,148,298 -2127221,189,210,399 -2127222,163,146,309 -2127223,179,173,352 -2127224,155,141,296 -2127225,54,62,116 -2127301,151,162,313 -2127302,158,177,335 -2127303,169,165,334 -2127304,178,192,370 -2127305,175,263,438 -2127306,213,210,423 -2127307,234,258,492 -2127308,123,133,256 -2127309,183,156,339 -2127310,182,185,367 -2127311,138,148,286 -2127312,184,193,377 -2127313,218,236,454 -2127314,220,223,443 -2127315,182,175,357 -2127316,185,216,401 -2127317,172,172,344 -2127318,129,133,262 -2127319,175,194,369 -2127320,177,185,362 -2127321,248,240,488 -2127322,209,212,421 -2127323,210,287,497 -2127324,235,234,469 -2127325,205,189,394 -2127326,170,176,346 -2127327,122,122,244 -2127328,213,202,415 -2127329,229,234,463 -2127330,176,189,365 -2127401,133,124,257 -2127402,200,205,405 -2127403,151,132,283 -2127404,201,188,389 -2127405,245,239,484 -2127406,258,251,509 -2127407,136,149,285 -2127408,149,192,341 -2127409,131,140,271 -2127410,123,116,239 -2127411,143,137,280 -2127412,273,283,556 -2127413,110,123,233 -2127414,190,186,376 -2127415,107,97,204 -2127416,256,230,486 -2127417,95,101,196 -2127418,187,200,387 -2127419,102,113,215 -2127420,174,159,333 -2127421,160,166,326 -2127422,209,193,402 -2127423,145,131,276 -2127424,119,108,227 -2127425,154,152,306 -2127426,92,68,160 -2127427,117,117,234 -2127428,138,155,293 -2127429,175,159,334 -2127430,252,288,540 -2127431,113,116,229 -2127501,213,217,430 -2127502,255,231,486 -2127503,205,214,419 -2127504,189,218,407 -2127505,279,281,560 -2127506,248,258,506 -2127507,198,206,404 -2127508,113,101,214 -2127509,0,0,0 -2127510,247,247,494 -2127511,210,219,429 -2127512,171,185,356 -2127513,233,228,461 -2127514,178,185,363 -2127515,248,280,528 -2127516,0,0,0 -2127517,237,209,446 -2127518,225,245,470 -2127519,183,184,367 -2127520,174,164,338 -2127521,158,157,315 -2127522,149,153,302 -2127523,128,146,274 -2127524,116,129,245 -2127525,136,170,306 -2127601,95,101,196 -2127602,161,162,323 -2127603,235,291,526 -2127604,194,194,388 -2127605,161,172,333 -2127606,181,211,392 -2127607,203,242,445 -2127608,144,188,332 -2127609,210,251,461 -2127610,271,331,602 -2127611,158,153,311 -2127612,157,163,320 -2127613,276,294,570 -2127614,280,269,549 -2127615,0,0,0 -2127616,235,222,457 -2127617,157,153,310 -2127618,177,189,366 -2127619,141,182,323 -2127620,289,270,559 -2127621,127,114,241 -2127622,146,145,291 -2127623,131,109,240 -2127624,149,150,299 -2127625,221,227,448 -2127626,196,222,418 -2127627,262,260,522 -2127628,168,174,342 -2127629,100,100,200 -2127630,101,84,185 -2127631,176,160,336 -2127632,233,245,478 -2127633,173,156,329 -2127634,172,166,338 -2127635,199,202,401 -2127701,166,168,334 -2127702,246,291,537 -2127703,241,253,494 -2127704,271,258,529 -2127705,268,268,536 -2127706,180,221,401 -2127707,158,156,314 -2127708,280,347,627 -2127709,175,160,335 -2127710,163,174,337 -2127711,115,114,229 -2127712,218,224,442 -2127713,278,279,557 -2127714,255,225,480 -2127715,0,0,0 -2127716,272,329,601 -2127717,174,186,360 -2127718,219,229,448 -2127719,232,375,607 -2127720,181,177,358 -2127801,118,115,233 -2127802,33,33,66 -2127803,170,160,330 -2127804,179,156,335 -2127805,147,116,263 -2127806,237,225,462 -2127807,245,207,452 -2127808,132,130,262 -2127809,273,294,567 -2127810,162,164,326 -2127811,94,101,195 -2127812,122,117,239 -2127813,164,178,342 -2127814,166,165,331 -2127815,201,250,451 -2127816,204,200,404 -2127817,143,150,293 -2127818,271,275,546 -2127819,221,206,427 -2127820,271,293,564 -2127821,12,10,22 -2127822,289,326,615 -2127823,209,236,445 -2127824,160,187,347 -2127825,251,261,512 -2127826,237,222,459 -2127827,208,196,404 -2127828,162,181,343 -2127829,218,245,463 -2127830,234,343,577 -2127831,254,246,500 -2127832,214,207,421 -2127833,216,245,461 -2127834,303,323,626 -2127835,211,224,435 -2127836,172,160,332 -2127837,131,218,349 -2127838,3,0,3 -2127839,186,212,398 -2127840,150,174,324 -2127841,199,206,405 -2127842,168,158,326 -2127843,148,149,297 -2127844,115,124,239 -2127845,165,143,308 -2127846,354,384,738 -2127847,285,276,561 -2127901,270,273,543 -2127902,105,105,210 -2127903,198,176,374 -2127904,283,286,569 -2127905,284,322,606 -2127906,190,184,374 -2127907,187,217,404 -2127908,131,146,277 -2127909,234,229,463 -2127910,195,175,370 -2127911,168,183,351 -2127912,133,116,249 -2127913,222,255,477 -2127914,135,130,265 -2128001,219,211,430 -2128002,231,212,443 -2128003,170,158,328 -2128004,175,192,367 -2128005,139,179,318 -2128006,167,186,353 -2128007,222,256,478 -2128008,189,264,453 -2128009,207,198,405 -2128010,159,179,338 -2128011,132,121,253 -2128012,331,322,653 -2128013,221,238,459 -2128014,181,186,367 -2128015,129,139,268 -2128016,181,189,370 -2128017,115,128,243 -2128018,109,102,211 -2128101,273,308,581 -2128102,167,166,333 -2128103,88,97,185 -2128104,191,188,379 -2128105,181,195,376 -2128106,242,273,515 -2128107,160,155,315 -2128108,194,205,399 -2128109,226,221,447 -2128110,289,296,585 -2128111,229,220,449 -2128112,209,206,415 -2128113,326,356,682 -2128114,181,183,364 -2128115,277,267,544 -2128116,246,250,496 -2128117,282,287,569 -2128118,260,256,516 -2128119,225,233,458 -2128120,299,265,564 -2128121,237,250,487 -2128122,135,148,283 -2128123,267,277,544 -2128124,265,283,548 -2128125,206,199,405 -2128126,242,218,460 -2128127,256,268,524 -2128128,251,276,527 -2128129,237,232,469 -2128130,241,256,497 -2128131,248,265,513 -2128132,255,246,501 -2128133,203,215,418 -2128134,205,190,395 -2128135,103,105,208 -2128136,203,172,375 -2128137,123,131,254 -2128138,217,228,445 -2128139,131,147,278 -2128140,179,174,353 -2128141,257,246,503 -2128142,265,252,517 -2128143,134,124,258 -2128144,227,232,459 -2128145,275,329,604 -2128146,209,211,420 -2128147,150,139,289 -2128201,229,230,459 -2128202,156,129,285 -2128203,205,174,379 -2128204,130,137,267 -2128205,199,190,389 -2128206,104,110,214 -2128207,105,103,208 -2128208,152,141,293 -2128209,201,194,395 -2128210,133,132,265 -2128211,166,170,336 -2128212,199,198,397 -2128213,181,144,325 -2128214,207,190,397 -2128215,239,251,490 -2128216,181,166,347 -2128217,9,9,18 -2128218,214,217,431 -2128219,196,200,396 -2128220,302,273,575 -2128221,88,93,181 -2128222,231,254,485 -2128223,241,257,498 -2128224,165,182,347 -2128225,115,114,229 -2128226,114,116,230 -2128227,0,0,0 -2128228,167,155,322 -2128229,0,0,0 -2128230,6,4,10 -2128231,3,0,3 -2128232,248,244,492 -2128301,158,182,340 -2128302,232,228,460 -2128303,130,123,253 -2128304,158,155,313 -2128305,186,183,369 -2128306,288,317,605 -2128307,144,147,291 -2128308,160,153,313 -2128309,255,243,498 -2128310,140,170,310 -2128311,261,262,523 -2128312,175,174,349 -2128313,210,200,410 -2128314,166,182,348 -2128315,165,178,343 -2128316,188,169,357 -2128317,236,229,465 -2128318,152,130,282 -2128319,199,193,392 -2128320,176,198,374 -2128321,170,166,336 -2128322,137,134,271 -2128323,135,132,267 -2128324,189,170,359 -2128325,171,172,343 -2128326,104,96,200 -2128401,148,133,281 -2128402,200,195,395 -2128403,203,218,421 -2128404,203,203,406 -2128405,209,184,393 -2128406,114,138,252 -2128407,109,100,209 -2128408,194,200,394 -2128409,122,122,244 -2128410,193,219,412 -2128411,207,213,420 -2128412,175,164,339 -2128413,238,242,480 -2128414,121,120,241 -2128415,159,196,355 -2128416,204,194,398 -2128417,224,205,429 -2128418,117,98,215 -2128419,214,217,431 -2128420,383,346,729 -2128421,173,185,358 -2128422,186,176,362 -2128423,272,255,527 -2128424,164,175,339 -2128425,109,102,211 -2128426,176,161,337 -2128427,110,109,219 -2128501,96,97,193 -2128502,91,90,181 -2128503,141,130,271 -2128504,167,172,339 -2128505,153,144,297 -2128506,117,144,261 -2128507,171,165,336 -2128508,122,130,252 -2128509,205,192,397 -2128510,97,98,195 -2128511,203,197,400 -2128512,70,87,157 -2128513,80,76,156 -2128514,103,92,195 -2128515,144,132,276 -2128516,206,198,404 -2128517,126,122,248 -2128518,109,108,217 -2128519,139,139,278 -2128520,136,147,283 -2128521,147,147,294 -2128522,193,170,363 -2128523,115,118,233 -2128524,248,236,484 -2128525,199,208,407 -2128526,160,143,303 -2128601,76,68,144 -2128602,157,162,319 -2128603,190,187,377 -2128604,219,220,439 -2128605,182,183,365 -2128606,164,177,341 -2128607,128,129,257 -2128608,135,135,270 -2128609,0,3,3 -2128610,182,182,364 -2128611,221,231,452 -2128612,160,159,319 -2128613,162,150,312 -2128614,207,219,426 -2128615,235,220,455 -2128616,171,200,371 -2128617,203,196,399 -2128618,232,257,489 -2128619,94,90,184 -2128620,157,163,320 -2128621,150,173,323 -2128622,116,153,269 -2128623,129,117,246 -2128624,289,343,632 -2128625,108,109,217 -2128626,112,118,230 -2128627,217,204,421 -2128628,171,190,361 -2128629,225,295,520 -2128630,197,184,381 -2128631,222,194,416 -2128632,133,132,265 -2128633,111,100,211 -2128634,185,199,384 -2128635,101,109,210 -2128636,91,91,182 -2128637,105,95,200 -2128638,148,150,298 -2128639,150,137,287 -2128640,112,117,229 -2128641,64,71,135 -2128642,243,231,474 -2128643,179,176,355 -2128644,146,156,302 -2128645,0,0,0 -2128646,98,140,238 -2128647,122,133,255 -2128648,108,112,220 -2128649,173,161,334 -2128650,124,123,247 -2128651,137,118,255 -2128652,144,154,298 -2128653,0,0,0 -2128701,267,229,496 -2128702,236,236,472 -2128703,191,210,401 -2128704,573,576,1149 -2128705,255,248,503 -2128706,178,179,357 -2128707,305,301,606 -2128708,213,194,407 -2128709,341,360,701 -2128710,107,116,223 -2128711,246,230,476 -2128712,248,242,490 -2128713,182,193,375 -2128714,271,259,530 -2128715,132,120,252 -2128716,110,95,205 -2128717,223,223,446 -2128801,196,167,363 -2128802,118,120,238 -2128803,107,112,219 -2128804,162,154,316 -2128805,155,157,312 -2128806,121,115,236 -2128807,181,157,338 -2128808,277,269,546 -2128809,221,251,472 -2128810,176,168,344 -2128811,224,217,441 -2128812,216,201,417 -2128813,342,329,671 -2128814,221,245,466 -2128815,153,150,303 -2128816,276,256,532 -2128817,138,169,307 -2128818,159,182,341 -2128819,135,154,289 -2128820,161,169,330 -2128821,111,114,225 -2128822,139,130,269 -2128823,113,109,222 -2128901,15,15,30 -2128902,209,195,404 -2128903,106,118,224 -2128904,233,261,494 -2128905,245,249,494 -2128906,159,153,312 -2128907,154,130,284 -2128908,174,192,366 -2128909,278,254,532 -2128910,261,270,531 -2128911,158,164,322 -2128912,211,183,394 -2128913,103,88,191 -2128914,258,263,521 -2128915,40,37,77 -2128916,206,191,397 -2128917,147,157,304 -2128918,257,261,518 -2128919,74,60,134 -2128920,172,170,342 -2128921,206,211,417 -2128922,163,166,329 -2128923,109,126,235 -2128924,101,91,192 -2128925,256,239,495 -2128926,216,215,431 -2128927,207,206,413 -2128928,204,204,408 -2128929,246,234,480 -2128930,117,145,262 -2128931,144,137,281 -2128932,229,219,448 -2128933,84,99,183 -2128934,220,230,450 -2128935,180,205,385 -2128936,266,218,484 -2128937,232,204,436 -2128938,198,192,390 -2128939,5,3,8 -2128940,97,112,209 -2128941,95,99,194 -2128942,188,159,347 -2128943,167,181,348 -2128944,140,138,278 -2128945,214,220,434 -2128946,0,0,0 -2128947,155,135,290 -2128948,165,163,328 -2128949,93,76,169 -2128950,113,115,228 -2128951,176,166,342 -2128952,129,129,258 -2128953,269,232,501 -2129001,368,408,776 -2129002,263,282,545 -2129003,114,99,213 -2129004,165,154,319 -2129005,301,258,559 -2129006,127,108,235 -2129007,238,230,468 -2129008,129,113,242 -2129009,180,188,368 -2129010,164,171,335 -2129011,224,241,465 -2129012,177,163,340 -2129013,130,135,265 -2129014,118,121,239 -2129015,251,266,517 -2129016,102,103,205 -2129017,244,205,449 -2129101,644,717,1361 -2129102,476,532,1008 -2129103,361,375,736 -2129104,241,236,477 -2129105,315,314,629 -2129106,481,489,970 -2129107,286,272,558 -2129108,151,158,309 -2129109,221,252,473 -2129110,227,227,454 -2129111,191,213,404 -2129112,3,3,6 -2129113,152,135,287 -2129114,171,277,448 -2129115,158,240,398 -2129116,229,225,454 -2129117,225,243,468 -2129118,224,208,432 -2129119,124,150,274 -2129120,992,1040,2032 -2129121,235,229,464 -2129201,279,296,575 -2129202,671,693,1364 -2129203,749,827,1576 -2129204,347,360,707 -2129205,433,516,949 -2129206,193,174,367 -2129207,167,230,397 -2129208,167,212,379 -2129209,171,203,374 -2129210,329,349,678 -2129211,294,268,562 -2129212,274,272,546 -2129213,115,105,220 -2129214,194,229,423 -2129215,236,288,524 -2129216,293,334,627 -2129217,240,282,522 -2129218,219,222,441 -2129219,299,338,637 -2129220,231,237,468 -2129221,202,189,391 -2129222,247,252,499 -2129223,179,162,341 -2129224,323,345,668 -2129225,190,194,384 -2129226,487,496,983 -2129227,233,270,503 -2129228,378,374,752 -2129229,139,148,287 -2129230,156,187,343 -2129231,221,243,464 -2129232,91,108,199 -2129233,228,224,452 -2129234,1095,1088,2183 -2129235,203,171,374 -2129236,102,92,194 -2129301,302,308,610 -2129302,234,257,491 -2129303,124,172,296 -2129304,208,214,422 -2129305,125,136,261 -2129306,216,253,469 -2129307,408,421,829 -2129308,243,238,481 -2129309,239,364,603 -2129310,192,201,393 -2129311,221,252,473 -2129312,270,320,590 -2129313,144,156,300 -2129314,319,335,654 -2129315,186,180,366 -2129316,247,232,479 -2129317,229,221,450 -2129318,275,291,566 -2129319,256,231,487 -2129320,223,240,463 -2129321,171,194,365 -2129322,113,133,246 -2129323,157,185,342 -2129324,233,313,546 -2129325,186,248,434 -2129326,220,212,432 -2129327,249,292,541 -2129328,173,218,391 -2129329,301,283,584 -2129330,375,385,760 -2129331,214,214,428 -2129332,278,295,573 -2129333,153,184,337 -2129334,216,276,492 -2129335,277,304,581 -2129336,155,166,321 -2129337,75,88,163 -2129338,176,204,380 -2129339,113,145,258 -2129340,184,249,433 -2129341,162,204,366 -2129342,278,323,601 -2129343,234,229,463 -2129344,137,179,316 -2129345,85,127,212 -2129346,171,193,364 -2129347,139,139,278 -2129348,132,118,250 -2129349,98,104,202 -2129350,126,141,267 -2129351,176,231,407 -2129352,99,130,229 -2129401,317,300,617 -2129402,390,390,780 -2129403,545,555,1100 -2129404,183,197,380 -2129405,290,295,585 -2129406,543,537,1080 -2129407,1545,1539,3084 -2129408,231,227,458 -2129409,267,254,521 -2129410,408,393,801 -2129411,315,326,641 -2129412,174,178,352 -2129413,140,141,281 -2129414,281,290,571 -2129415,174,155,329 -2129416,209,213,422 -2129417,239,247,486 -2129418,236,266,502 -2129419,235,213,448 -2129420,218,230,448 -2129421,207,217,424 -2129422,344,340,684 -2129423,386,364,750 -2129424,156,146,302 -2129425,161,153,314 -2129426,227,243,470 -2129427,167,171,338 -2129428,168,168,336 -2129429,98,112,210 -2129430,790,794,1584 -2129431,339,363,702 -2129432,302,321,623 -2129433,149,120,269 -2129434,152,160,312 -2129435,133,138,271 -2129436,412,399,811 -2129437,0,0,0 -2129438,317,383,700 -2129501,106,112,218 -2129502,0,0,0 -2129503,0,0,0 -2129504,151,152,303 -2129505,242,215,457 -2129506,344,320,664 -2129507,149,146,295 -2129508,257,223,480 -2129509,4,0,4 -2129510,343,340,683 -2129511,174,173,347 -2129512,288,259,547 -2129513,248,260,508 -2129514,147,154,301 -2129515,285,256,541 -2129516,195,203,398 -2129517,185,185,370 -2129518,268,243,511 -2129519,213,203,416 -2129520,211,198,409 -2129521,211,243,454 -2129522,170,164,334 -2129523,149,192,341 -2129524,221,225,446 -2129525,334,331,665 -2129526,262,292,554 -2129601,174,182,356 -2129602,100,102,202 -2129603,124,131,255 -2129604,177,166,343 -2129605,185,206,391 -2129606,140,129,269 -2129607,265,239,504 -2129608,0,0,0 -2129609,0,0,0 -2129610,159,158,317 -2129611,287,286,573 -2129612,208,214,422 -2129613,93,102,195 -2129614,117,107,224 -2129615,219,209,428 -2129616,212,217,429 -2129617,279,295,574 -2129618,274,247,521 -2129619,94,94,188 -2129620,234,247,481 -2129621,198,212,410 -2129622,243,212,455 -2129623,144,141,285 -2129624,288,332,620 -2129625,261,266,527 -2129626,234,220,454 -2129627,246,258,504 -2129628,200,215,415 -2129629,175,157,332 -2129630,125,121,246 -2129631,154,158,312 -2129632,161,147,308 -2129633,177,169,346 -2129634,180,188,368 -2129635,154,156,310 -2129636,226,246,472 -2129637,202,201,403 -2129638,227,238,465 -2129639,241,236,477 -2129640,219,211,430 -2129641,214,199,413 -2129642,230,231,461 -2129643,260,236,496 -2129644,272,271,543 -2129645,306,273,579 -2129646,130,127,257 -2129647,304,305,609 -2129648,226,244,470 -2129649,98,99,197 -2129650,165,149,314 -2129651,211,210,421 -2129652,185,177,362 -2129653,127,122,249 -2129654,159,162,321 -2129655,174,173,347 -2129656,183,186,369 -2129657,210,181,391 -2129658,180,177,357 -2129659,216,208,424 -2129660,171,173,344 -2129661,156,158,314 -2129662,115,128,243 -2129663,130,134,264 -2129664,188,182,370 -2129665,173,177,350 -2129666,97,113,210 -2129667,185,179,364 -2129668,139,124,263 -2129669,203,175,378 -2129701,208,214,422 -2129702,152,159,311 -2129703,216,204,420 -2129704,237,247,484 -2129705,291,304,595 -2129706,205,224,429 -2129707,160,141,301 -2129708,193,245,438 -2129709,320,316,636 -2129710,209,201,410 -2129711,170,172,342 -2129712,172,181,353 -2129713,204,232,436 -2129714,228,220,448 -2129715,210,226,436 -2129716,226,236,462 -2129717,210,197,407 -2129718,197,209,406 -2129719,192,219,411 -2129720,4,0,4 -2129721,223,237,460 -2129722,203,192,395 -2129723,154,152,306 -2129724,149,154,303 -2129725,146,146,292 -2129726,134,124,258 -2129801,198,201,399 -2129802,219,227,446 -2129803,195,198,393 -2129804,216,185,401 -2129805,223,213,436 -2129806,162,143,305 -2129807,139,157,296 -2129808,293,255,548 -2129809,183,171,354 -2129810,256,265,521 -2129811,211,238,449 -2129812,280,290,570 -2129813,163,162,325 -2129814,253,245,498 -2129815,257,277,534 -2129816,169,176,345 -2129817,117,109,226 -2129818,241,290,531 -2129819,93,99,192 -2129820,135,133,268 -2129821,269,282,551 -2129822,191,193,384 -2129823,0,0,0 -2129824,247,248,495 -2129825,253,252,505 -2129826,232,226,458 -2129827,221,232,453 -2129828,200,201,401 -2129829,288,272,560 -2129830,181,208,389 -2129831,219,222,441 -2129832,0,0,0 -2129833,172,164,336 -2129834,227,215,442 -2129835,227,208,435 -2129836,217,228,445 -2129837,278,287,565 -2129838,180,200,380 -2129839,294,317,611 -2129840,324,327,651 -2129841,192,181,373 -2129842,164,172,336 -2129843,265,264,529 -2129844,224,241,465 -2129845,243,248,491 -2129846,265,235,500 -2129847,0,0,0 -2129848,254,265,519 -2129849,283,268,551 -2129850,297,321,618 -2129851,181,188,369 -2129852,178,176,354 -2129853,160,131,291 -2129854,209,223,432 -2129855,149,142,291 -2129856,154,149,303 -2129857,234,214,448 -2129858,118,116,234 -2129859,145,142,287 -2129860,289,267,556 -2129861,103,96,199 -2129862,180,160,340 -2129863,121,124,245 -2129864,159,147,306 -2129865,154,155,309 -2129901,202,184,386 -2129902,134,129,263 -2129903,180,185,365 -2129904,187,174,361 -2129905,119,113,232 -2129906,186,166,352 -2129907,246,250,496 -2129908,177,163,340 -2129909,210,173,383 -2129910,244,244,488 -2129911,290,274,564 -2129912,188,187,375 -2129913,253,241,494 -2129914,319,296,615 -2129915,206,321,527 -2129916,116,116,232 -2129917,122,104,226 -2129918,160,133,293 -2130001,130,141,271 -2130002,218,193,411 -2130003,242,223,465 -2130004,282,288,570 -2130005,213,185,398 -2130006,149,156,305 -2130007,193,177,370 -2130008,240,254,494 -2130009,177,175,352 -2130010,304,303,607 -2130011,402,367,769 -2130012,532,536,1068 -2130013,166,156,322 -2130014,1187,1183,2370 -2130015,366,345,711 -2130016,141,143,284 -2130017,192,167,359 -2130018,241,219,460 -2130019,189,221,410 -2130020,294,309,603 -2130021,202,234,436 -2130022,133,132,265 -2130023,189,187,376 -2130024,198,206,404 -2130025,270,246,516 -2130026,218,222,440 -2130027,190,165,355 -2130028,245,240,485 -2130029,179,163,342 -2130030,104,134,238 -2130031,156,140,296 -2130032,176,173,349 -2130033,273,274,547 -2130034,240,224,464 -2130035,100,105,205 -2130036,0,0,0 -2130037,86,97,183 -2130038,196,221,417 -2130039,182,172,354 -2130040,167,179,346 -2130101,125,135,260 -2130102,243,289,532 -2130103,223,249,472 -2130104,301,315,616 -2130105,152,162,314 -2130106,305,409,714 -2130107,863,918,1781 -2130108,201,224,425 -2130109,231,243,474 -2130110,180,205,385 -2130111,240,236,476 -2130112,853,899,1752 -2130201,225,201,426 -2130202,137,169,306 -2130203,288,289,577 -2130204,255,262,517 -2130205,145,143,288 -2130206,149,162,311 -2130207,219,203,422 -2130208,155,161,316 -2130209,207,217,424 -2130210,112,91,203 -2130211,221,217,438 -2130212,291,298,589 -2130213,1536,1578,3114 -2130214,200,214,414 -2130215,173,192,365 -2130216,302,322,624 -2130217,193,198,391 -2130218,0,0,0 -2130219,222,219,441 -2130220,259,244,503 -2130221,119,160,279 -2130222,173,175,348 -2130223,225,222,447 -2130224,167,141,308 -2130225,226,217,443 -2130226,445,463,908 -2130227,365,361,726 -2130228,226,214,440 -2130301,177,171,348 -2130302,242,234,476 -2130303,149,153,302 -2130304,887,841,1728 -2130305,109,95,204 -2130306,263,260,523 -2130307,194,192,386 -2130308,264,267,531 -2130309,256,241,497 -2130310,119,101,220 -2130311,151,158,309 -2130312,138,100,238 -2130313,181,169,350 -2130314,246,355,601 -2130401,268,267,535 -2130402,144,147,291 -2130403,156,140,296 -2130404,257,274,531 -2130405,264,251,515 -2130406,203,230,433 -2130407,223,201,424 -2130408,310,315,625 -2130409,327,326,653 -2130410,554,536,1090 -2130411,71,59,130 -2130412,200,224,424 -2130413,154,150,304 -2130414,168,238,406 -2130415,449,433,882 -2130416,159,160,319 -2130417,107,95,202 -2130418,113,106,219 -2130419,97,122,219 -2130420,125,124,249 -2130501,185,197,382 -2130502,255,255,510 -2130503,317,339,656 -2130504,143,128,271 -2130505,354,329,683 -2130506,243,256,499 -2130507,192,197,389 -2130508,173,157,330 -2130509,367,316,683 -2130510,219,220,439 -2130511,324,332,656 -2130512,181,184,365 -2130513,259,257,516 -2130514,111,128,239 -2130515,354,367,721 -2130516,216,228,444 -2130517,256,242,498 -2130518,266,256,522 -2130519,210,228,438 -2130520,238,278,516 -2130521,322,330,652 -2130522,135,144,279 -2130523,217,237,454 -2130524,242,220,462 -2130525,215,192,407 -2130526,3,0,3 -2130527,340,324,664 -2130528,194,217,411 -2130529,348,349,697 -2130530,265,260,525 -2130531,294,280,574 -2130532,234,228,462 -2130533,187,181,368 -2130534,118,131,249 -2130535,261,233,494 -2130536,309,322,631 -2130537,314,331,645 -2130538,327,332,659 -2130539,253,260,513 -2130540,229,216,445 -2130541,200,215,415 -2130542,372,361,733 -2130543,570,548,1118 -2130544,147,140,287 -2130545,379,355,734 -2130546,165,160,325 -2130547,208,212,420 -2130548,171,194,365 -2130601,324,372,696 -2130602,186,183,369 -2130603,218,210,428 -2130604,2446,2450,4896 -2130605,199,201,400 -2130606,230,218,448 -2130607,304,277,581 -2130608,328,288,616 -2130609,0,0,0 -2130610,724,798,1522 -2130611,147,169,316 -2130612,171,162,333 -2130613,415,382,797 -2130614,120,139,259 -2130701,177,177,354 -2130702,285,268,553 -2130703,219,208,427 -2130704,274,289,563 -2130705,291,299,590 -2130706,235,252,487 -2130707,183,183,366 -2130708,239,247,486 -2130709,232,242,474 -2130710,219,237,456 -2130711,309,323,632 -2130712,188,188,376 -2130713,190,168,358 -2130714,146,165,311 -2130715,186,181,367 -2130716,184,194,378 -2130717,274,262,536 -2130718,121,124,245 -2130719,476,516,992 -2130720,303,283,586 -2130721,190,183,373 -2130722,181,181,362 -2130723,157,155,312 -2130724,282,275,557 -2130725,265,245,510 -2130726,165,170,335 -2130727,220,225,445 -2130728,181,174,355 -2130729,144,128,272 -2130730,208,196,404 -2130731,174,168,342 -2130732,184,186,370 -2130733,162,183,345 -2130734,226,213,439 -2130735,201,202,403 -2130736,179,172,351 -2130737,231,229,460 -2130738,224,203,427 -2130739,162,165,327 -2130740,246,228,474 -2130741,272,294,566 -2130742,298,302,600 -2130743,272,243,515 -2130744,236,228,464 -2130745,255,287,542 -2130746,293,278,571 -2130747,330,349,679 -2130748,297,285,582 -2130749,250,238,488 -2130750,210,192,402 -2130751,263,257,520 -2130752,129,139,268 -2130753,233,254,487 -2130754,217,199,416 -2130755,284,291,575 -2130756,0,0,0 -2130757,206,176,382 -2130758,100,96,196 -2130759,210,185,395 -2130760,175,191,366 -2130761,158,174,332 -2130762,191,189,380 -2130763,135,158,293 -2130764,219,230,449 -2130765,160,186,346 -2130766,200,177,377 -2130801,241,264,505 -2130802,151,144,295 -2130803,193,222,415 -2130804,164,174,338 -2130805,222,204,426 -2130806,107,111,218 -2130807,0,0,0 -2130808,106,90,196 -2130809,203,192,395 -2130810,194,215,409 -2130811,162,155,317 -2130812,121,116,237 -2130813,185,200,385 -2130814,237,223,460 -2130815,134,146,280 -2130816,142,161,303 -2130817,339,283,622 -2130818,219,206,425 -2130819,120,108,228 -2130820,227,219,446 -2130821,167,141,308 -2130822,153,120,273 -2130901,145,147,292 -2130902,186,212,398 -2130903,243,248,491 -2130904,243,241,484 -2130905,222,223,445 -2130906,209,205,414 -2130907,268,246,514 -2130908,176,170,346 -2130909,135,145,280 -2130910,233,222,455 -2130911,137,130,267 -2130912,225,215,440 -2130913,165,180,345 -2130914,232,215,447 -2130915,183,187,370 -2130916,293,298,591 -2130917,247,259,506 -2130918,201,210,411 -2130919,139,126,265 -2130920,141,142,283 -2130921,184,162,346 -2130922,166,211,377 -2130923,210,208,418 -2130924,197,233,430 -2130925,145,163,308 -2130926,194,178,372 -2130927,91,145,236 -2130928,194,206,400 -2130929,114,137,251 -2130930,100,87,187 -2130931,0,0,0 -2130932,161,138,299 -2131001,270,263,533 -2131002,207,190,397 -2131003,369,320,689 -2131004,123,116,239 -2131005,201,183,384 -2131006,123,127,250 -2131007,199,210,409 -2131008,111,103,214 -2131009,221,226,447 -2131010,227,207,434 -2131011,396,403,799 -2131012,264,203,467 -2131013,192,120,312 -2131014,237,201,438 -2131015,189,171,360 -2131016,204,192,396 -2131017,262,206,468 -2131018,128,145,273 -2131019,282,279,561 -2131020,297,279,576 -2131021,4,4,8 -2131022,165,152,317 -2131023,281,267,548 -2131024,214,228,442 -2131025,225,210,435 -2131026,210,189,399 -2131027,0,0,0 -2131028,129,113,242 -2131029,11,9,20 -2131030,299,272,571 -2131101,259,234,493 -2131102,155,161,316 -2131103,224,181,405 -2131104,147,107,254 -2131105,234,206,440 -2131106,238,229,467 -2131107,289,274,563 -2131108,208,192,400 -2131109,246,240,486 -2131110,191,162,353 -2131111,273,226,499 -2131112,173,232,405 -2131113,282,281,563 -2131114,203,156,359 -2131115,337,320,657 -2131116,10,3,13 -2131117,236,214,450 -2131118,151,149,300 -2131119,231,176,407 -2131120,263,217,480 -2131121,260,232,492 -2131122,181,148,329 -2131123,181,166,347 -2131124,332,297,629 -2131125,263,208,471 -2131126,253,233,486 -2131127,277,274,551 -2131128,209,208,417 -2131129,260,270,530 -2131130,218,179,397 -2131131,155,138,293 -2131132,376,351,727 -2131133,169,138,307 -2131134,212,182,394 -2131135,202,194,396 -2131136,214,179,393 -2131137,123,120,243 -2131138,187,181,368 -2131139,232,174,406 -2131140,309,236,545 -2131141,117,150,267 -2131142,322,223,545 -2131143,324,241,565 -2131144,162,144,306 -2131145,287,259,546 -2131146,304,303,607 -2131147,182,203,385 -2131148,242,201,443 -2131149,202,188,390 -2131150,223,289,512 -2131151,236,247,483 -2131152,261,285,546 -2131153,180,203,383 -2131154,198,208,406 -2131155,69,61,130 -2131156,206,186,392 -2131157,215,147,362 -2131158,178,168,346 -2131159,222,223,445 -2131160,78,173,251 -2131161,148,125,273 -2131162,145,149,294 -2131201,127,144,271 -2131202,248,251,499 -2131203,198,210,408 -2131204,170,186,356 -2131205,287,283,570 -2131206,230,211,441 -2131207,259,277,536 -2131208,173,167,340 -2131209,154,123,277 -2131210,201,206,407 -2131211,167,183,350 -2131212,188,198,386 -2131213,199,201,400 -2131214,257,247,504 -2131215,91,107,198 -2131216,241,303,544 -2131217,121,133,254 -2131218,189,186,375 -2131219,183,225,408 -2131220,185,197,382 -2131221,192,180,372 -2131222,159,155,314 -2131223,256,251,507 -2131224,173,169,342 -2131225,298,288,586 -2131226,216,214,430 -2131227,300,288,588 -2131228,178,167,345 -2131229,288,296,584 -2131230,158,183,341 -2131231,150,130,280 -2131232,200,196,396 -2131233,313,295,608 -2131234,117,180,297 -2131235,156,142,298 -2131236,279,283,562 -2131237,250,229,479 -2131238,211,232,443 -2131239,104,105,209 -2131240,0,0,0 -2131241,141,128,269 -2131242,282,290,572 -2131243,167,149,316 -2131244,229,245,474 -2131245,191,195,386 -2131246,265,260,525 -2131247,292,271,563 -2131248,186,196,382 -2131249,232,233,465 -2131250,170,167,337 -2131251,243,232,475 -2131252,193,208,401 -2131253,171,174,345 -2131254,136,136,272 -2131255,132,113,245 -2131301,136,130,266 -2131302,203,212,415 -2131303,184,163,347 -2131304,136,147,283 -2131305,147,143,290 -2131306,177,193,370 -2131307,210,252,462 -2131308,182,185,367 -2131309,17,24,41 -2131310,315,323,638 -2131311,223,241,464 -2131312,230,257,487 -2131313,254,256,510 -2131314,188,175,363 -2131315,180,183,363 -2131316,172,200,372 -2131317,161,170,331 -2131318,288,279,567 -2131319,197,215,412 -2131320,286,289,575 -2131321,161,158,319 -2131322,214,208,422 -2131323,225,233,458 -2131324,142,133,275 -2131325,220,222,442 -2131326,160,167,327 -2131401,286,297,583 -2131402,755,783,1538 -2131403,464,461,925 -2131404,358,382,740 -2131405,348,362,710 -2131406,155,208,363 -2131407,179,180,359 -2131408,342,347,689 -2131409,88,71,159 -2131410,129,114,243 -2131411,270,247,517 -2131412,134,139,273 -2131413,181,189,370 -2131414,128,129,257 -2131415,242,259,501 -2131416,117,130,247 -2131417,183,176,359 -2131418,189,196,385 -2131419,268,249,517 -2131420,190,169,359 -2131421,105,102,207 -2131422,196,217,413 -2131423,3,3,6 -2131424,3,0,3 -2131425,198,202,400 -2131426,276,265,541 -2131427,237,251,488 -2131428,254,249,503 -2131429,195,200,395 -2131430,129,125,254 -2131431,157,178,335 -2131432,160,174,334 -2131433,272,261,533 -2131434,173,170,343 -2131435,202,215,417 -2131436,200,200,400 -2131437,234,257,491 -2131438,213,229,442 -2131439,209,231,440 -2131440,253,263,516 -2131441,147,146,293 -2131442,207,196,403 -2131443,178,189,367 -2131444,237,241,478 -2131445,233,214,447 -2131446,256,246,502 -2131501,211,212,423 -2131502,182,152,334 -2131503,326,306,632 -2131504,184,161,345 -2131505,136,124,260 -2131506,250,245,495 -2131507,171,156,327 -2131508,243,254,497 -2131509,130,136,266 -2131510,335,305,640 -2131511,201,238,439 -2131512,149,125,274 -2131513,296,314,610 -2131514,213,215,428 -2131515,185,193,378 -2131516,154,142,296 -2131517,221,221,442 -2131518,268,263,531 -2131519,281,294,575 -2131520,211,245,456 -2131521,168,187,355 -2131522,279,249,528 -2131523,266,252,518 -2131524,296,271,567 -2131525,262,252,514 -2131526,327,281,608 -2131527,199,191,390 -2131528,248,244,492 -2131529,236,238,474 -2131530,257,265,522 -2131531,256,272,528 -2131532,306,273,579 -2131533,377,328,705 -2131534,241,241,482 -2131535,341,338,679 -2131536,257,301,558 -2131537,302,291,593 -2131538,228,244,472 -2131539,239,242,481 -2131540,260,301,561 -2131541,309,284,593 -2131542,214,236,450 -2131543,346,323,669 -2131544,124,121,245 -2131545,256,247,503 -2131546,332,297,629 -2131547,215,206,421 -2131548,272,276,548 -2131549,136,170,306 -2131550,265,288,553 -2131551,302,303,605 -2131552,273,280,553 -2131553,213,180,393 -2131554,203,208,411 -2131555,203,201,404 -2131556,337,331,668 -2131557,316,306,622 -2131558,269,273,542 -2131601,141,140,281 -2131602,172,168,340 -2131603,270,254,524 -2131604,174,170,344 -2131605,200,198,398 -2131606,153,169,322 -2131607,304,287,591 -2131608,214,211,425 -2131609,225,218,443 -2131610,328,318,646 -2131611,236,266,502 -2131612,250,219,469 -2131613,257,257,514 -2131614,243,225,468 -2131615,97,104,201 -2131616,189,185,374 -2131617,251,288,539 -2131618,0,0,0 -2131701,118,109,227 -2131702,166,170,336 -2131703,223,210,433 -2131704,155,127,282 -2131705,126,134,260 -2131706,188,180,368 -2131707,152,149,301 -2131708,222,340,562 -2131709,246,232,478 -2131710,223,227,450 -2131711,177,185,362 -2131712,288,276,564 -2131713,199,208,407 -2131714,242,240,482 -2131715,167,175,342 -2131716,311,258,569 -2131717,233,223,456 -2131718,180,187,367 -2131719,291,252,543 -2131720,260,303,563 -2131721,153,161,314 -2131722,199,196,395 -2131723,287,295,582 -2131724,238,239,477 -2131725,194,183,377 -2131726,181,153,334 -2131727,240,224,464 -2131728,203,182,385 -2131729,98,101,199 -2131730,279,234,513 -2131731,0,3,3 -2131732,304,281,585 -2131733,0,0,0 -2131734,255,217,472 -2131735,275,231,506 -2131736,252,216,468 -2131737,226,196,422 -2131738,218,175,393 -2131739,178,162,340 -2131740,274,269,543 -2131741,304,292,596 -2131742,225,182,407 -2131743,250,277,527 -2131744,0,0,0 -2131745,218,144,362 -2131746,262,232,494 -2131747,267,262,529 -2131748,216,196,412 -2131749,184,137,321 -2131801,240,220,460 -2131802,219,218,437 -2131803,194,199,393 -2131804,256,263,519 -2131805,285,302,587 -2131806,312,303,615 -2131807,263,255,518 -2131808,256,240,496 -2131809,168,157,325 -2131810,160,158,318 -2131811,284,292,576 -2131812,212,202,414 -2131813,269,281,550 -2131814,198,195,393 -2131815,141,160,301 -2131816,301,294,595 -2131817,153,147,300 -2131818,246,254,500 -2131819,249,254,503 -2131820,193,199,392 -2131821,328,308,636 -2131822,267,280,547 -2131823,221,241,462 -2131824,253,274,527 -2131825,251,266,517 -2131826,157,144,301 -2131901,191,188,379 -2131902,194,160,354 -2131903,229,214,443 -2131904,316,303,619 -2131905,265,272,537 -2131906,213,208,421 -2131907,165,191,356 -2131908,222,221,443 -2131909,218,214,432 -2131910,157,165,322 -2131911,261,271,532 -2131912,173,176,349 -2131913,146,167,313 -2131914,315,310,625 -2131915,216,231,447 -2131916,210,209,419 -2131917,203,230,433 -2131918,136,149,285 -2131919,241,253,494 -2131920,185,177,362 -2131921,272,285,557 -2131922,250,237,487 -2131923,233,192,425 -2131924,245,259,504 -2131925,168,152,320 -2131926,169,171,340 -2131927,199,218,417 -2131928,166,134,300 -2131929,313,285,598 -2131930,120,127,247 -2131931,351,377,728 -2131932,131,129,260 -2131933,215,239,454 -2131934,149,140,289 -2131935,267,295,562 -2131936,192,186,378 -2131937,188,244,432 -2131938,0,0,0 -2131939,198,184,382 -2132001,302,287,589 -2132002,412,401,813 -2132003,227,155,382 -2132004,328,278,606 -2132005,259,230,489 -2132006,218,216,434 -2132007,3,0,3 -2132008,236,236,472 -2132009,152,140,292 -2132010,170,158,328 -2132011,152,127,279 -2132012,317,301,618 -2132013,261,257,518 -2132014,266,309,575 -2132015,223,204,427 -2132016,183,166,349 -2132017,280,261,541 -2132018,190,163,353 -2132019,159,146,305 -2132020,352,298,650 -2132021,224,193,417 -2132022,212,198,410 -2132023,124,103,227 -2132024,223,234,457 -2132025,268,248,516 -2132026,263,274,537 -2132027,171,151,322 -2132028,387,359,746 -2132029,234,199,433 -2132030,261,234,495 -2132031,279,247,526 -2132032,331,234,565 -2132033,169,134,303 -2132034,491,478,969 -2132035,293,263,556 -2132036,182,152,334 -2132037,164,279,443 -2132038,217,213,430 -2132101,291,303,594 -2132102,160,146,306 -2132103,236,238,474 -2132104,193,225,418 -2132105,251,278,529 -2132106,121,140,261 -2132107,162,158,320 -2132108,181,204,385 -2132109,232,268,500 -2132110,266,300,566 -2132111,198,214,412 -2132112,207,206,413 -2132113,226,216,442 -2132114,251,268,519 -2132115,258,266,524 -2132116,127,121,248 -2132117,254,258,512 -2132118,174,173,347 -2132119,170,141,311 -2132120,203,224,427 -2132121,269,295,564 -2132122,193,198,391 -2132123,128,148,276 -2132124,218,209,427 -2132125,212,248,460 -2132126,137,137,274 -2132127,252,259,511 -2132128,181,192,373 -2132129,150,179,329 -2132130,282,271,553 -2132131,238,244,482 -2132132,188,206,394 -2132133,123,110,233 -2132134,174,168,342 -2132135,173,178,351 -2132136,102,107,209 -2132137,185,212,397 -2132138,191,294,485 -2132139,116,115,231 -2132140,83,107,190 -2132141,234,239,473 -2132142,208,217,425 -2132143,110,107,217 -2132144,152,151,303 -2132145,210,256,466 -2132146,201,188,389 -2132147,193,192,385 -2132148,125,162,287 -2132149,115,122,237 -2132150,145,162,307 -2132151,156,166,322 -2132152,140,157,297 -2132153,151,165,316 -2132154,162,157,319 -2132201,239,221,460 -2132202,219,230,449 -2132203,180,183,363 -2132204,201,194,395 -2132205,113,114,227 -2132206,176,174,350 -2132207,151,147,298 -2132208,211,276,487 -2132209,139,118,257 -2132210,140,175,315 -2132211,130,138,268 -2132212,209,213,422 -2132213,178,177,355 -2132214,188,176,364 -2132215,194,212,406 -2132216,149,133,282 -2132217,124,157,281 -2132218,162,237,399 -2132219,176,194,370 -2132220,165,209,374 -2132221,242,234,476 -2132222,144,145,289 -2132223,207,234,441 -2132224,167,178,345 -2132225,317,328,645 -2132226,105,85,190 -2132227,236,229,465 -2132228,161,169,330 -2132229,201,208,409 -2132230,231,216,447 -2132231,189,202,391 -2132232,253,247,500 -2132233,271,278,549 -2132234,200,189,389 -2132235,143,138,281 -2132236,115,149,264 -2132237,99,102,201 -2132238,132,143,275 -2132239,291,305,596 -2132240,154,168,322 -2132241,183,165,348 -2132242,138,129,267 -2132243,198,204,402 -2132244,176,171,347 -2132245,128,117,245 -2132246,204,176,380 -2132247,0,0,0 -2132248,128,143,271 -2132249,123,117,240 -2132250,171,169,340 -2132251,176,184,360 -2132252,171,186,357 -2132301,218,236,454 -2132302,206,237,443 -2132303,114,122,236 -2132304,110,127,237 -2132305,188,229,417 -2132306,235,235,470 -2132307,215,235,450 -2132308,239,281,520 -2132309,200,214,414 -2132310,246,249,495 -2132311,220,223,443 -2132312,0,0,0 -2132313,207,229,436 -2132314,245,253,498 -2132315,97,116,213 -2132316,169,188,357 -2132317,209,220,429 -2132318,251,253,504 -2132319,237,255,492 -2132320,185,179,364 -2132321,173,163,336 -2132322,210,234,444 -2132323,184,196,380 -2132324,238,238,476 -2132325,198,186,384 -2132326,234,231,465 -2132327,244,234,478 -2132328,293,312,605 -2132329,215,230,445 -2132330,247,258,505 -2132331,262,276,538 -2132332,187,220,407 -2132333,207,209,416 -2132334,197,206,403 -2132335,125,146,271 -2132336,113,124,237 -2132337,117,129,246 -2132401,126,126,252 -2132402,309,301,610 -2132403,202,235,437 -2132404,318,314,632 -2132405,110,112,222 -2132406,271,298,569 -2132407,222,231,453 -2132408,217,197,414 -2132409,262,303,565 -2132410,3,0,3 -2132411,283,383,666 -2132412,183,182,365 -2132413,155,155,310 -2132414,196,215,411 -2132415,137,148,285 -2132416,284,298,582 -2132417,285,299,584 -2132418,177,197,374 -2132419,296,313,609 -2132420,230,251,481 -2132421,286,296,582 -2132422,165,151,316 -2132423,227,251,478 -2132424,169,191,360 -2132425,214,236,450 -2132426,179,160,339 -2132427,201,234,435 -2132428,200,169,369 -2132429,149,155,304 -2132430,96,107,203 -2132431,268,289,557 -2132432,236,245,481 -2132433,189,202,391 -2132434,145,153,298 -2132435,329,336,665 -2132436,185,236,421 -2132437,168,188,356 -2132438,223,223,446 -2132439,208,262,470 -2132440,208,210,418 -2132441,0,0,0 -2132501,125,110,235 -2132502,282,290,572 -2132503,262,257,519 -2132504,287,314,601 -2132505,285,284,569 -2132506,158,181,339 -2132507,196,189,385 -2132508,176,165,341 -2132509,217,202,419 -2132510,180,178,358 -2132511,194,179,373 -2132512,192,189,381 -2132513,203,218,421 -2132514,0,0,0 -2132515,210,192,402 -2132516,224,254,478 -2132517,372,382,754 -2132518,173,180,353 -2132519,216,220,436 -2132520,169,163,332 -2132521,0,4,4 -2132522,232,235,467 -2132523,252,275,527 -2132524,668,649,1317 -2132525,271,263,534 -2132526,192,195,387 -2132527,294,297,591 -2132528,271,332,603 -2132529,247,240,487 -2132530,203,237,440 -2132531,130,110,240 -2132532,166,215,381 -2132533,92,163,255 -2132534,204,224,428 -2132535,152,164,316 -2132536,167,177,344 -2132537,198,187,385 -2132538,190,173,363 -2132539,118,119,237 -2132540,158,145,303 -2132541,229,231,460 -2132542,166,153,319 -2132543,0,0,0 -2132601,142,145,287 -2132602,233,234,467 -2132603,144,144,288 -2132604,0,0,0 -2132605,316,291,607 -2132606,238,236,474 -2132607,193,188,381 -2132608,203,190,393 -2132609,274,281,555 -2132610,175,172,347 -2132611,281,310,591 -2132612,202,221,423 -2132613,217,218,435 -2132614,214,193,407 -2132615,282,283,565 -2132616,241,240,481 -2132617,181,214,395 -2132618,239,224,463 -2132619,322,303,625 -2132620,182,191,373 -2132621,183,201,384 -2132622,279,290,569 -2132623,155,119,274 -2132624,167,145,312 -2132625,166,167,333 -2132626,275,284,559 -2132627,275,253,528 -2132628,164,157,321 -2132629,321,318,639 -2132630,215,221,436 -2132631,315,336,651 -2132632,166,227,393 -2132633,125,139,264 -2132634,83,61,144 -2132635,198,188,386 -2132636,253,271,524 -2132637,236,259,495 -2132638,270,269,539 -2132639,242,239,481 -2132640,6,6,12 -2132641,44,35,79 -2132642,187,182,369 -2132643,147,140,287 -2132644,147,145,292 -2132645,0,0,0 -2132646,138,150,288 -2132647,171,159,330 -2132648,177,211,388 -2132649,175,177,352 -2132650,112,127,239 -2132651,115,107,222 -2132652,172,170,342 -2132653,111,132,243 -2132701,225,202,427 -2132702,186,168,354 -2132703,280,241,521 -2132704,206,233,439 -2132705,152,167,319 -2132706,273,262,535 -2132707,257,242,499 -2132708,212,176,388 -2132709,201,206,407 -2132710,196,205,401 -2132711,164,180,344 -2132712,193,197,390 -2132713,205,206,411 -2132714,243,235,478 -2132715,242,246,488 -2132716,152,146,298 -2132717,190,203,393 -2132718,173,202,375 -2132719,177,201,378 -2132720,227,232,459 -2132721,196,182,378 -2132722,228,220,448 -2132723,167,165,332 -2132724,219,222,441 -2132725,225,204,429 -2132726,224,253,477 -2132727,205,197,402 -2132728,0,0,0 -2132729,169,176,345 -2132730,147,130,277 -2132731,252,248,500 -2132732,291,294,585 -2132733,190,210,400 -2132734,132,127,259 -2132735,202,210,412 -2132736,197,216,413 -2132737,192,379,571 -2132738,205,214,419 -2132739,181,168,349 -2132740,247,276,523 -2132741,235,257,492 -2132742,305,309,614 -2132743,197,196,393 -2132744,161,171,332 -2132745,151,149,300 -2132746,0,0,0 -2132747,134,140,274 -2132748,207,218,425 -2132801,197,151,348 -2132802,238,262,500 -2132803,124,119,243 -2132804,299,247,546 -2132805,221,216,437 -2132806,0,0,0 -2132807,206,183,389 -2132808,284,239,523 -2132809,183,164,347 -2132810,177,147,324 -2132811,148,140,288 -2132812,127,120,247 -2132813,183,170,353 -2132814,221,198,419 -2132815,257,223,480 -2132816,224,238,462 -2132817,138,133,271 -2132818,182,187,369 -2132819,318,294,612 -2132901,224,234,458 -2132902,271,253,524 -2132903,179,187,366 -2132904,173,157,330 -2132905,225,228,453 -2132906,215,219,434 -2132907,197,199,396 -2132908,311,325,636 -2132909,293,292,585 -2132910,142,142,284 -2132911,229,187,416 -2132912,349,336,685 -2132913,236,233,469 -2132914,221,260,481 -2132915,269,255,524 -2132916,292,312,604 -2132917,268,288,556 -2132918,170,168,338 -2132919,159,134,293 -2133001,119,114,233 -2133002,175,190,365 -2133003,142,155,297 -2133004,135,139,274 -2133005,243,265,508 -2133006,150,143,293 -2133007,281,266,547 -2133008,609,606,1215 -2133009,3,0,3 -2133010,0,0,0 -2133011,0,0,0 -2133012,244,239,483 -2133013,230,257,487 -2133014,226,203,429 -2133015,158,167,325 -2133016,121,112,233 -2133017,137,133,270 -2133018,245,239,484 -2133019,253,260,513 -2133020,179,200,379 -2133021,601,590,1191 -2133022,158,129,287 -2133023,149,137,286 -2133024,144,160,304 -2133025,857,809,1666 -2133026,1434,1256,2690 -2133027,626,620,1246 -2133028,139,145,284 -2133029,123,139,262 -2133030,179,194,373 -2133031,129,130,259 -2133032,183,158,341 -2133033,150,160,310 -2133034,140,146,286 -2133035,235,221,456 -2133036,159,174,333 -2133037,230,228,458 -2133038,179,157,336 -2133039,156,182,338 -2133040,254,241,495 -2133041,112,108,220 -2133042,168,154,322 -2133043,195,198,393 -2133044,0,0,0 -2133045,89,89,178 -2133046,764,769,1533 -2133101,229,247,476 -2133102,135,153,288 -2133103,308,330,638 -2133104,0,0,0 -2133105,225,250,475 -2133106,190,182,372 -2133107,152,171,323 -2133108,196,236,432 -2133109,215,207,422 -2133110,168,190,358 -2133111,233,252,485 -2133112,108,140,248 -2133113,159,133,292 -2133114,142,149,291 -2133115,145,157,302 -2133116,140,138,278 -2133117,367,339,706 -2133118,132,138,270 -2133119,143,157,300 -2133120,144,143,287 -2133121,236,225,461 -2133122,194,213,407 -2133123,160,171,331 -2133201,236,243,479 -2133202,136,162,298 -2133203,194,198,392 -2133204,143,153,296 -2133205,144,135,279 -2133206,162,151,313 -2133207,163,169,332 -2133208,172,234,406 -2133209,162,160,322 -2133210,5,3,8 -2133211,264,248,512 -2133212,191,209,400 -2133213,246,213,459 -2133214,187,190,377 -2133215,0,0,0 -2133216,197,230,427 -2133217,282,277,559 -2133218,104,100,204 -2133219,193,186,379 -2133220,192,193,385 -2133221,180,192,372 -2133222,158,179,337 -2133223,177,199,376 -2133224,134,153,287 -2133225,218,216,434 -2133226,158,163,321 -2133227,225,245,470 -2133228,162,158,320 -2133229,154,131,285 -2133230,146,154,300 -2133231,176,188,364 -2133232,323,305,628 -2133233,135,136,271 -2133234,0,0,0 -2133235,240,223,463 -2133236,104,97,201 -2133237,204,216,420 -2133238,113,127,240 -2133239,158,143,301 -2133240,135,131,266 -2133301,301,295,596 -2133302,203,176,379 -2133303,199,193,392 -2133304,187,200,387 -2133305,237,228,465 -2133306,156,157,313 -2133307,210,211,421 -2133308,123,138,261 -2133309,179,176,355 -2133310,146,133,279 -2133311,216,229,445 -2133312,193,179,372 -2133313,236,244,480 -2133314,268,285,553 -2133315,296,304,600 -2133316,143,144,287 -2133317,144,160,304 -2133318,268,272,540 -2133319,311,296,607 -2133320,223,209,432 -2133321,220,252,472 -2133322,137,130,267 -2133323,163,174,337 -2133324,220,217,437 -2133325,193,182,375 -2133326,186,190,376 -2133327,148,159,307 -2133328,183,177,360 -2133329,153,177,330 -2133330,229,195,424 -2133331,172,203,375 -2133332,205,184,389 -2133333,301,323,624 -2133401,215,241,456 -2133402,178,186,364 -2133403,150,153,303 -2133404,201,205,406 -2133405,208,208,416 -2133406,183,184,367 -2133407,262,274,536 -2133408,175,149,324 -2133409,190,211,401 -2133410,234,187,421 -2133411,255,275,530 -2133412,225,199,424 -2133413,178,178,356 -2133414,235,226,461 -2133415,301,312,613 -2133416,192,164,356 -2133417,199,187,386 -2133418,245,251,496 -2133419,216,209,425 -2133420,230,230,460 -2133421,202,204,406 -2133422,177,186,363 -2133423,289,305,594 -2133424,186,187,373 -2133425,254,260,514 -2133426,244,256,500 -2133427,227,230,457 -2133428,202,186,388 -2133429,276,266,542 -2133430,291,239,530 -2133431,137,115,252 -2133432,182,191,373 -2133433,278,253,531 -2133434,155,158,313 -2133435,206,223,429 -2133436,291,282,573 -2133437,227,208,435 -2133438,135,154,289 -2133439,123,92,215 -2133440,212,219,431 -2133441,249,253,502 -2133442,214,225,439 -2133443,242,239,481 -2133444,105,94,199 -2133445,118,125,243 -2133501,238,235,473 -2133502,295,296,591 -2133503,275,259,534 -2133504,254,279,533 -2133505,165,154,319 -2133506,242,238,480 -2133507,154,186,340 -2133508,223,223,446 -2133509,185,182,367 -2133510,205,262,467 -2133511,188,226,414 -2133512,184,224,408 -2133513,168,174,342 -2133514,251,260,511 -2133515,263,255,518 -2133516,344,338,682 -2133517,238,251,489 -2133518,206,212,418 -2133519,141,124,265 -2133520,298,304,602 -2133521,202,194,396 -2133522,160,143,303 -2133523,152,144,296 -2133524,105,99,204 -2133525,187,178,365 -2133526,186,193,379 -2133527,333,326,659 -2133528,88,81,169 -2133529,245,263,508 -2133530,258,275,533 -2133531,210,227,437 -2133532,167,186,353 -2133533,152,146,298 -2133534,204,197,401 -2133535,236,291,527 -2133536,300,332,632 -2133537,132,159,291 -2133538,140,132,272 -2133601,227,192,419 -2133602,5,3,8 -2133603,202,190,392 -2133604,149,167,316 -2133605,196,195,391 -2133606,319,274,593 -2133607,288,262,550 -2133608,184,173,357 -2133609,258,243,501 -2133610,247,194,441 -2133611,317,318,635 -2133612,277,299,576 -2133613,318,327,645 -2133614,248,273,521 -2133615,165,126,291 -2133616,290,297,587 -2133617,284,258,542 -2133618,244,267,511 -2133619,282,270,552 -2133701,180,177,357 -2133702,189,207,396 -2133703,277,309,586 -2133704,205,205,410 -2133705,206,220,426 -2133706,238,248,486 -2133707,158,157,315 -2133708,167,176,343 -2133709,230,211,441 -2133710,167,176,343 -2133711,195,176,371 -2133712,343,347,690 -2133713,213,242,455 -2133714,53,58,111 -2133715,134,135,269 -2133716,198,201,399 -2133717,253,223,476 -2133718,276,324,600 -2133719,164,174,338 -2133720,219,209,428 -2133721,171,177,348 -2133722,206,213,419 -2133723,194,191,385 -2133724,342,314,656 -2133725,0,0,0 -2133726,285,304,589 -2133801,154,154,308 -2133802,247,248,495 -2133803,181,171,352 -2133804,330,314,644 -2133805,169,177,346 -2133806,159,151,310 -2133807,177,177,354 -2133808,222,218,440 -2133809,145,154,299 -2133810,137,132,269 -2133811,205,208,413 -2133812,225,238,463 -2133813,158,171,329 -2133814,234,226,460 -2133815,176,161,337 -2133816,230,245,475 -2133817,210,220,430 -2133818,122,144,266 -2133819,165,187,352 -2133820,137,134,271 -2133821,138,165,303 -2133822,226,194,420 -2133823,225,241,466 -2133824,138,153,291 -2133825,180,204,384 -2133826,299,275,574 -2133827,276,268,544 -2133828,310,312,622 -2133829,121,117,238 -2133830,184,192,376 -2133831,99,113,212 -2133832,4,0,4 -2133833,4,0,4 -2133834,218,187,405 -2133835,119,153,272 -2133836,223,216,439 -2133837,177,161,338 -2133838,129,141,270 -2133839,241,247,488 -2133840,157,163,320 -2133841,207,206,413 -2133842,276,308,584 -2133843,188,161,349 -2133844,213,212,425 -2133845,203,178,381 -2133901,137,127,264 -2133902,194,182,376 -2133903,268,284,552 -2133904,284,302,586 -2133905,306,286,592 -2133906,211,194,405 -2133907,263,279,542 -2133908,166,165,331 -2133909,167,175,342 -2133910,199,206,405 -2133911,187,173,360 -2133912,192,214,406 -2133913,286,275,561 -2133914,202,217,419 -2133915,181,192,373 -2133916,236,214,450 -2133917,191,202,393 -2133918,200,207,407 -2133919,293,316,609 -2133920,131,126,257 -2133921,314,221,535 -2133922,182,172,354 -2133923,263,309,572 -2133924,203,207,410 -2133925,187,212,399 -2133926,212,200,412 -2133927,108,110,218 -2134001,194,195,389 -2134002,196,173,369 -2134003,227,234,461 -2134004,230,237,467 -2134005,257,252,509 -2134006,236,255,491 -2134007,174,159,333 -2134008,168,176,344 -2134009,273,250,523 -2134010,7,5,12 -2134011,104,107,211 -2134012,254,253,507 -2134013,43,31,74 -2134014,0,0,0 -2134015,247,235,482 -2134016,210,205,415 -2134017,247,252,499 -2134018,216,201,417 -2134019,166,179,345 -2134020,127,133,260 -2134021,265,273,538 -2134022,248,252,500 -2134023,247,229,476 -2134024,264,267,531 -2134025,138,122,260 -2134026,213,232,445 -2134027,218,196,414 -2134028,229,213,442 -2134029,283,288,571 -2134030,220,199,419 -2134031,156,151,307 -2134032,127,123,250 -2134033,157,160,317 -2134034,253,265,518 -2134035,186,182,368 -2134036,162,170,332 -2134037,151,148,299 -2134038,222,217,439 -2134039,0,0,0 -2134040,245,251,496 -2134041,222,230,452 -2134042,156,155,311 -2134043,164,184,348 -2134044,137,127,264 -2134045,140,183,323 -2134046,106,101,207 -2134047,161,146,307 -2134048,197,201,398 -2134049,157,136,293 -2134101,323,314,637 -2134102,248,221,469 -2134103,274,300,574 -2134104,202,196,398 -2134105,204,209,413 -2134106,191,175,366 -2134107,205,205,410 -2134108,196,198,394 -2134109,0,0,0 -2134110,229,244,473 -2134111,155,135,290 -2134112,179,186,365 -2134113,284,299,583 -2134114,198,197,395 -2134115,113,131,244 -2134116,281,293,574 -2134117,332,332,664 -2134118,276,262,538 -2134119,295,286,581 -2134120,231,213,444 -2134121,270,309,579 -2134122,330,345,675 -2134123,0,0,0 -2134124,156,187,343 -2134125,80,146,226 -2134126,159,178,337 -2134127,144,130,274 -2134128,277,248,525 -2134129,3,3,6 -2134130,0,0,0 -2134201,148,145,293 -2134202,197,208,405 -2134203,183,173,356 -2134204,231,242,473 -2134205,292,250,542 -2134206,310,335,645 -2134207,156,155,311 -2134208,0,0,0 -2134209,0,0,0 -2134210,152,133,285 -2134211,173,164,337 -2134212,115,122,237 -2134213,199,198,397 -2134214,147,140,287 -2134215,278,286,564 -2134216,159,147,306 -2134217,138,157,295 -2134218,288,284,572 -2134219,224,238,462 -2134220,281,299,580 -2134221,234,274,508 -2134222,253,261,514 -2134223,254,282,536 -2134224,216,189,405 -2134225,219,204,423 -2134226,265,281,546 -2134227,183,180,363 -2134228,204,201,405 -2134229,253,262,515 -2134230,141,146,287 -2134231,185,207,392 -2134232,122,125,247 -2134233,121,120,241 -2134234,211,272,483 -2134235,217,266,483 -2134236,164,187,351 -2134237,206,204,410 -2134238,168,177,345 -2134239,144,162,306 -2134240,146,146,292 -2134241,259,257,516 -2134242,195,182,377 -2134243,193,203,396 -2134244,215,240,455 -2134245,264,280,544 -2134246,137,148,285 -2134247,179,243,422 -2134248,172,161,333 -2134301,138,143,281 -2134302,219,206,425 -2134303,3,0,3 -2134304,256,255,511 -2134305,238,254,492 -2134306,300,289,589 -2134307,191,208,399 -2134308,31,13,44 -2134309,0,0,0 -2134310,237,244,481 -2134311,152,148,300 -2134312,383,329,712 -2134313,168,157,325 -2134314,181,170,351 -2134315,213,276,489 -2134316,165,179,344 -2134317,223,235,458 -2134318,270,256,526 -2134319,183,184,367 -2134320,200,185,385 -2134321,198,207,405 -2134322,217,240,457 -2134323,219,201,420 -2134324,340,366,706 -2134325,267,266,533 -2134326,279,263,542 -2134327,235,222,457 -2134328,188,167,355 -2134329,144,131,275 -2134330,296,284,580 -2134331,119,218,337 -2134332,249,228,477 -2134401,155,142,297 -2134402,198,224,422 -2134403,246,256,502 -2134404,156,192,348 -2134405,268,267,535 -2134406,228,223,451 -2134407,231,231,462 -2134408,179,182,361 -2134409,212,221,433 -2134410,221,248,469 -2134411,250,243,493 -2134412,234,268,502 -2134413,0,0,0 -2134414,0,0,0 -2134415,186,204,390 -2134416,156,161,317 -2134417,158,156,314 -2134418,125,111,236 -2134419,196,214,410 -2134420,170,199,369 -2134421,192,211,403 -2134422,241,257,498 -2134423,199,199,398 -2134424,0,0,0 -2134425,269,267,536 -2134426,210,204,414 -2134427,179,198,377 -2134428,194,166,360 -2134429,236,214,450 -2134430,280,294,574 -2134431,303,256,559 -2134432,126,115,241 -2134433,114,114,228 -2134434,210,221,431 -2134435,156,148,304 -2134436,153,161,314 -2134437,252,252,504 -2134438,131,160,291 -2134439,303,313,616 -2134440,270,273,543 -2134441,115,119,234 -2134442,305,285,590 -2134501,149,144,293 -2134502,137,142,279 -2134503,224,208,432 -2134504,177,167,344 -2134505,160,174,334 -2134506,200,215,415 -2134507,228,216,444 -2134508,187,163,350 -2134509,172,172,344 -2134510,128,128,256 -2134511,336,348,684 -2134512,157,150,307 -2134513,239,251,490 -2134601,210,232,442 -2134602,156,165,321 -2134603,242,244,486 -2134604,288,286,574 -2134605,249,259,508 -2134606,203,202,405 -2134607,169,176,345 -2134608,130,123,253 -2134609,341,299,640 -2134610,183,208,391 -2134611,214,227,441 -2134612,179,192,371 -2134613,279,316,595 -2134614,210,223,433 -2134615,149,145,294 -2134616,178,207,385 -2134617,262,294,556 -2134618,206,215,421 -2134619,247,250,497 -2134620,222,212,434 -2134621,202,207,409 -2134622,289,290,579 -2134623,193,217,410 -2134624,292,299,591 -2134625,271,203,474 -2134626,209,170,379 -2134627,188,201,389 -2134628,192,199,391 -2134629,15,14,29 -2134630,263,345,608 -2134631,130,141,271 -2134632,319,343,662 -2134633,125,123,248 -2134634,143,114,257 -2134635,120,124,244 -2134701,165,183,348 -2134702,324,294,618 -2134703,187,197,384 -2134704,139,146,285 -2134705,145,144,289 -2134706,168,182,350 -2134707,123,144,267 -2134708,195,158,353 -2134709,224,201,425 -2134710,196,198,394 -2134711,305,329,634 -2134712,169,168,337 -2134713,156,134,290 -2134714,240,236,476 -2134715,132,128,260 -2134716,834,727,1561 -2134717,199,189,388 -2134718,118,130,248 -2134719,147,165,312 -2134720,317,298,615 -2134721,212,222,434 -2134722,159,165,324 -2134723,212,194,406 -2134724,246,229,475 -2134725,198,151,349 -2134726,160,147,307 -2134727,212,214,426 -2134728,195,172,367 -2134729,316,323,639 -2134730,178,191,369 -2134731,190,202,392 -2134732,232,193,425 -2134733,164,191,355 -2134734,218,234,452 -2134735,248,252,500 -2134736,135,143,278 -2134737,304,304,608 -2134801,194,163,357 -2134802,270,270,540 -2134803,288,279,567 -2134804,272,262,534 -2134805,214,173,387 -2134806,297,220,517 -2134807,176,184,360 -2134808,448,333,781 -2134809,342,288,630 -2134810,133,122,255 -2134811,264,176,440 -2134812,285,271,556 -2134813,197,201,398 -2134814,230,265,495 -2134815,249,237,486 -2134816,181,133,314 -2134817,182,171,353 -2134818,167,176,343 -2134819,303,274,577 -2134820,151,125,276 -2134821,272,257,529 -2134822,222,199,421 -2134823,140,125,265 -2134824,233,168,401 -2134825,135,156,291 -2134826,254,194,448 -2134827,275,188,463 -2134828,413,389,802 -2134829,0,0,0 -2134830,205,204,409 -2134901,799,763,1562 -2134902,195,200,395 -2134903,230,210,440 -2134904,202,210,412 -2134905,115,126,241 -2134906,276,263,539 -2134907,208,191,399 -2134908,139,163,302 -2134909,167,166,333 -2134910,166,195,361 -2134911,123,128,251 -2134912,166,175,341 -2134913,278,267,545 -2134914,176,172,348 -2134915,303,332,635 -2134916,179,204,383 -2134917,163,163,326 -2134918,298,276,574 -2134919,189,241,430 -2134920,153,199,352 -2134921,189,147,336 -2134922,157,158,315 -2134923,173,172,345 -2135001,192,181,373 -2135002,198,192,390 -2135003,240,248,488 -2135004,176,181,357 -2135005,193,241,434 -2135006,214,205,419 -2135007,232,215,447 -2135008,245,204,449 -2135009,242,249,491 -2135010,227,207,434 -2135011,204,195,399 -2135012,253,216,469 -2135013,220,241,461 -2135014,296,246,542 -2135015,146,149,295 -2135016,225,203,428 -2135017,191,190,381 -2135018,347,377,724 -2135019,213,152,365 -2135101,161,164,325 -2135102,214,220,434 -2135103,213,186,399 -2135104,208,201,409 -2135105,218,248,466 -2135106,186,193,379 -2135107,241,240,481 -2135108,229,162,391 -2135109,228,215,443 -2135110,285,250,535 -2135111,9,0,9 -2135112,175,161,336 -2135113,278,265,543 -2135114,3,3,6 -2135115,173,187,360 -2135116,197,196,393 -2135117,199,156,355 -2135118,284,243,527 -2135119,226,175,401 -2135120,226,190,416 -2135121,172,171,343 -2135122,244,238,482 -2135123,14,10,24 -2135124,163,145,308 -2135125,239,204,443 -2135126,215,187,402 -2135127,136,128,264 -2135128,175,175,350 -2135201,226,243,469 -2135202,219,240,459 -2135203,228,243,471 -2135204,154,211,365 -2135205,214,186,400 -2135206,295,328,623 -2135207,300,330,630 -2135208,252,282,534 -2135209,234,209,443 -2135210,222,222,444 -2135211,176,189,365 -2135212,275,311,586 -2135213,212,199,411 -2135214,158,160,318 -2135215,182,200,382 -2135216,263,283,546 -2135217,209,222,431 -2135218,257,262,519 -2135219,283,295,578 -2135220,120,121,241 -2135221,208,212,420 -2135222,251,239,490 -2135223,201,225,426 -2135224,283,322,605 -2135225,149,169,318 -2135226,293,277,570 -2135227,0,0,0 -2135228,198,222,420 -2135229,225,237,462 -2135230,270,269,539 -2135231,145,158,303 -2135232,0,0,0 -2135301,141,137,278 -2135302,220,272,492 -2135303,323,347,670 -2135304,180,179,359 -2135305,140,130,270 -2135306,166,177,343 -2135307,295,269,564 -2135308,134,129,263 -2135309,202,195,397 -2135310,204,200,404 -2135311,175,193,368 -2135312,213,255,468 -2135313,160,183,343 -2135314,212,261,473 -2135315,156,149,305 -2135316,351,372,723 -2135317,200,195,395 -2135318,176,178,354 -2135319,204,207,411 -2135320,223,209,432 -2135321,357,373,730 -2135322,186,201,387 -2135323,170,188,358 -2135324,210,238,448 -2135325,179,203,382 -2135326,266,268,534 -2135327,350,375,725 -2135328,212,203,415 -2135329,385,391,776 -2135330,263,260,523 -2135331,163,172,335 -2135332,149,177,326 -2135333,188,186,374 -2135334,172,156,328 -2135335,221,226,447 -2135336,163,187,350 -2135337,211,220,431 -2135338,209,222,431 -2135339,260,270,530 -2135401,0,0,0 -2135402,1319,1312,2631 -2135403,155,173,328 -2135404,156,156,312 -2135405,222,230,452 -2135406,193,166,359 -2135407,206,214,420 -2135408,210,335,545 -2135409,249,261,510 -2135410,178,188,366 -2135411,100,126,226 -2135412,205,199,404 -2135413,194,208,402 -2135414,119,117,236 -2135415,106,130,236 -2135416,207,225,432 -2135417,140,136,276 -2135418,87,97,184 -2135419,293,292,585 -2135420,745,805,1550 -2135421,301,311,612 -2135422,266,273,539 -2135423,266,271,537 -2135424,270,271,541 -2135425,167,154,321 -2135426,232,230,462 -2135427,181,178,359 -2135428,233,227,460 -2135429,173,163,336 -2135430,139,151,290 -2135431,246,275,521 -2135432,267,277,544 -2135433,254,269,523 -2135434,198,187,385 -2135435,286,299,585 -2135436,169,156,325 -2135437,178,176,354 -2135438,107,119,226 -2135439,1419,1436,2855 -2135440,482,535,1017 -2135441,285,315,600 -2135442,127,121,248 -2135443,183,181,364 -2135444,200,233,433 -2135445,415,404,819 -2135446,160,176,336 -2135447,219,222,441 -2135448,103,103,206 -2135449,185,189,374 -2135501,107,106,213 -2135502,231,226,457 -2135503,173,175,348 -2135504,220,222,442 -2135505,206,200,406 -2135506,257,237,494 -2135507,170,155,325 -2135508,183,214,397 -2135509,257,267,524 -2135510,201,208,409 -2135511,353,354,707 -2135512,307,324,631 -2135513,329,345,674 -2135514,181,174,355 -2135515,156,170,326 -2135516,180,196,376 -2135517,160,162,322 -2135518,210,196,406 -2135519,159,166,325 -2135520,246,231,477 -2135521,309,321,630 -2135522,202,214,416 -2135523,192,176,368 -2135524,162,143,305 -2135525,213,195,408 -2135526,264,248,512 -2135527,230,208,438 -2135528,186,193,379 -2135529,197,193,390 -2135530,226,236,462 -2135531,142,151,293 -2135532,114,89,203 -2135533,103,105,208 -2135534,176,148,324 -2135535,147,173,320 -2135536,295,288,583 -2135537,225,224,449 -2135538,128,124,252 -2135601,121,143,264 -2135602,211,188,399 -2135603,97,104,201 -2135604,390,393,783 -2135605,226,225,451 -2135606,667,651,1318 -2135607,445,421,866 -2135608,169,177,346 -2135609,174,191,365 -2135610,274,271,545 -2135611,172,182,354 -2135612,291,290,581 -2135613,208,201,409 -2135614,251,256,507 -2135615,253,301,554 -2135616,129,145,274 -2135617,269,256,525 -2135618,203,213,416 -2135619,246,219,465 -2135620,158,174,332 -2135621,286,314,600 -2135622,130,156,286 -2135623,200,211,411 -2135624,336,305,641 -2135625,174,240,414 -2135626,147,164,311 -2135627,261,292,553 -2135628,247,253,500 -2135629,265,289,554 -2135630,102,113,215 -2135631,239,264,503 -2135632,253,246,499 -2135633,294,255,549 -2135634,291,310,601 -2135635,237,255,492 -2135636,321,317,638 -2135701,292,257,549 -2135702,205,189,394 -2135703,183,211,394 -2135704,205,211,416 -2135705,252,255,507 -2135706,268,244,512 -2135707,313,339,652 -2135708,196,203,399 -2135709,246,259,505 -2135710,289,331,620 -2135711,360,378,738 -2135712,276,314,590 -2135713,281,281,562 -2135714,337,305,642 -2135715,219,200,419 -2135716,213,228,441 -2135717,291,281,572 -2135718,248,260,508 -2135719,237,229,466 -2135720,267,306,573 -2135721,1255,1305,2560 -2135722,330,371,701 -2135723,172,214,386 -2135724,276,262,538 -2135725,184,179,363 -2135726,388,386,774 -2135801,135,152,287 -2135802,221,235,456 -2135803,178,163,341 -2135804,140,152,292 -2135805,271,303,574 -2135806,239,232,471 -2135807,498,547,1045 -2135808,448,469,917 -2135809,319,336,655 -2135810,189,210,399 -2135811,550,567,1117 -2135812,271,278,549 -2135813,128,150,278 -2135814,96,110,206 -2135815,608,620,1228 -2135816,182,197,379 -2135817,281,296,577 -2135818,194,212,406 -2135819,171,161,332 -2135820,406,401,807 -2135821,194,204,398 -2135822,278,273,551 -2135823,119,116,235 -2135824,162,154,316 -2135825,155,161,316 -2135826,343,318,661 -2135827,114,98,212 -2135828,89,88,177 -2135901,144,126,270 -2135902,216,184,400 -2135903,184,184,368 -2135904,266,190,456 -2135905,647,264,911 -2135906,127,122,249 -2136001,186,205,391 -2136002,187,192,379 -2136003,289,293,582 -2136004,245,232,477 -2136005,189,187,376 -2136006,239,267,506 -2136007,188,191,379 -2136008,152,155,307 -2136009,242,222,464 -2136010,339,320,659 -2136011,141,135,276 -2136012,199,224,423 -2136013,184,174,358 -2136014,374,403,777 -2136015,158,171,329 -2136016,316,364,680 -2136017,312,318,630 -2136018,606,621,1227 -2136019,349,324,673 -2136020,188,194,382 -2136021,198,217,415 -2136022,216,193,409 -2136023,177,173,350 -2136024,1703,1790,3493 -2136025,263,236,499 -2136101,214,220,434 -2136102,166,159,325 -2136103,315,331,646 -2136104,197,233,430 -2136105,265,303,568 -2136106,131,151,282 -2136107,152,164,316 -2136108,180,204,384 -2136109,123,153,276 -2136110,194,240,434 -2136111,148,150,298 -2136112,183,187,370 -2136113,154,143,297 -2136114,235,256,491 -2136115,208,226,434 -2136116,156,168,324 -2136117,201,201,402 -2136118,166,172,338 -2136119,273,259,532 -2136120,164,151,315 -2136121,178,228,406 -2136122,254,240,494 -2136123,181,164,345 -2136124,269,259,528 -2136125,13,4,17 -2136126,393,389,782 -2136127,209,240,449 -2136128,177,184,361 -2136129,217,200,417 -2136130,206,210,416 -2136131,232,217,449 -2136132,183,224,407 -2136133,237,232,469 -2136134,171,177,348 -2136135,198,174,372 -2136136,179,150,329 -2136137,263,236,499 -2136138,164,150,314 -2136139,134,128,262 -2136140,177,183,360 -2136141,214,253,467 -2136142,178,190,368 -2136143,238,236,474 -2136144,146,146,292 -2136145,176,173,349 -2136146,183,173,356 -2136147,218,232,450 -2136148,160,159,319 -2136201,321,342,663 -2136202,321,287,608 -2136203,169,167,336 -2136204,179,199,378 -2136205,213,246,459 -2136206,162,169,331 -2136207,171,153,324 -2136208,222,228,450 -2136209,165,203,368 -2136210,219,223,442 -2136211,171,194,365 -2136212,195,188,383 -2136213,222,217,439 -2136214,174,206,380 -2136215,185,137,322 -2136216,121,107,228 -2136217,258,255,513 -2136218,224,236,460 -2136219,221,258,479 -2136220,89,107,196 -2136221,187,184,371 -2136222,131,130,261 -2136223,143,142,285 -2136224,165,179,344 -2136225,226,217,443 -2136226,120,97,217 -2136227,217,200,417 -2136228,156,155,311 -2136229,157,153,310 -2136230,202,239,441 -2136231,232,251,483 -2136232,163,134,297 -2136233,199,196,395 -2136234,199,193,392 -2136235,264,274,538 -2136236,163,161,324 -2136237,151,131,282 -2136238,162,170,332 -2136239,183,199,382 -2136240,162,164,326 -2136241,207,194,401 -2136242,165,158,323 -2136243,160,182,342 -2136244,104,76,180 -2136245,209,176,385 -2136246,203,186,389 -2136247,190,224,414 -2136248,163,174,337 -2136249,162,153,315 -2136250,122,131,253 -2136301,206,153,359 -2136302,331,259,590 -2136303,214,184,398 -2136304,5,0,5 -2136305,648,551,1199 -2136306,236,198,434 -2136307,70,14,84 -2136308,236,222,458 -2136309,236,220,456 -2136310,191,179,370 -2136311,142,154,296 -2136312,133,144,277 -2136313,220,203,423 -2136401,119,122,241 -2136402,0,0,0 -2136403,0,0,0 -2136404,181,167,348 -2136405,219,200,419 -2136406,226,245,471 -2136407,237,240,477 -2136408,0,0,0 -2136409,421,380,801 -2136410,3,3,6 -2136411,2161,2104,4265 -2136412,182,174,356 -2136413,568,544,1112 -2136414,391,382,773 -2136415,459,447,906 -2136416,365,341,706 -2136417,321,295,616 -2136418,205,201,406 -2136419,393,427,820 -2136420,154,137,291 -2136421,190,183,373 -2136422,394,414,808 -2136423,363,362,725 -2136424,246,244,490 -2136425,337,348,685 -2136426,724,716,1440 -2136427,482,495,977 -2136428,415,398,813 -2136429,237,255,492 -2136430,176,161,337 -2136431,477,468,945 -2136432,169,176,345 -2136433,199,199,398 -2136434,327,348,675 -2136435,160,157,317 -2136436,1062,1015,2077 -2136437,993,995,1988 -2136438,395,385,780 -2136439,248,243,491 -2136440,344,329,673 -2136441,407,391,798 -2136442,150,152,302 -2136443,1004,1040,2044 -2136444,197,190,387 -2136501,335,356,691 -2136502,451,450,901 -2136503,370,390,760 -2136504,284,268,552 -2136505,649,627,1276 -2136506,641,644,1285 -2136507,216,209,425 -2136508,99,97,196 -2136509,150,152,302 -2136510,380,359,739 -2136511,342,356,698 -2136512,423,434,857 -2136513,146,137,283 -2136514,118,104,222 -2136515,112,131,243 -2136516,281,264,545 -2136517,328,342,670 -2136518,152,161,313 -2136519,132,175,307 -2136520,113,156,269 -2136521,171,162,333 -2136522,546,568,1114 -2136523,293,310,603 -2136524,1122,1117,2239 -2136525,196,206,402 -2136526,156,141,297 -2136527,192,206,398 -2136528,319,307,626 -2136529,201,202,403 -2136530,671,669,1340 -2136531,400,381,781 -2136532,493,498,991 -2136533,249,245,494 -2136534,212,197,409 -2136601,785,4,789 -2136602,2328,2384,4712 -2136603,70,73,143 -2136604,5,3,8 -2136605,258,267,525 -2136606,245,247,492 -2136607,307,263,570 -2136608,1052,975,2027 -2136609,559,557,1116 -2136610,396,387,783 -2136701,225,243,468 -2136702,159,171,330 -2136703,271,249,520 -2136704,193,198,391 -2136705,163,181,344 -2136706,271,269,540 -2136707,186,196,382 -2136708,215,231,446 -2136709,227,228,455 -2136710,151,174,325 -2136711,307,295,602 -2136712,271,287,558 -2136713,292,292,584 -2136714,165,172,337 -2136715,318,300,618 -2136716,186,202,388 -2136717,149,129,278 -2136718,221,232,453 -2136719,230,243,473 -2136720,210,207,417 -2136721,180,190,370 -2136722,166,182,348 -2136723,195,197,392 -2136724,196,198,394 -2136725,253,261,514 -2136726,220,209,429 -2136727,161,166,327 -2136728,282,269,551 -2136729,180,133,313 -2136730,290,257,547 -2136731,208,211,419 -2136732,163,145,308 -2136733,233,251,484 -2136734,209,195,404 -2136735,201,203,404 -2136736,137,147,284 -2136737,121,258,379 -2136738,191,177,368 -2136739,0,0,0 -2136740,160,182,342 -2136741,175,206,381 -2136742,0,0,0 -2136743,148,172,320 -2136744,174,168,342 -2136745,146,129,275 -2136746,151,160,311 -2136747,242,275,517 -2136748,195,217,412 -2136749,205,215,420 -2136750,269,246,515 -2136751,163,199,362 -2136752,263,241,504 -2136753,172,202,374 -2136754,98,115,213 -2136755,181,223,404 -2136756,120,120,240 -2136757,144,170,314 -2136758,256,279,535 -2136759,296,302,598 -2136760,238,300,538 -2136761,231,239,470 -2136762,256,324,580 -2136763,164,203,367 -2136764,161,172,333 -2136765,208,231,439 -2136766,110,136,246 -2136767,150,145,295 -2136768,314,271,585 -2136769,121,123,244 -2136770,157,143,300 -2136771,144,144,288 -2136772,165,176,341 -2136773,120,113,233 -2136774,133,162,295 -2136775,178,213,391 -2136776,127,123,250 -2136801,192,193,385 -2136802,220,229,449 -2136803,0,0,0 -2136804,240,236,476 -2136805,0,0,0 -2136806,173,184,357 -2136807,277,278,555 -2136808,182,165,347 -2136809,211,229,440 -2136810,198,218,416 -2136811,208,261,469 -2136812,146,137,283 -2136813,162,139,301 -2136814,168,160,328 -2136815,159,137,296 -2136816,224,234,458 -2136817,198,239,437 -2136818,163,172,335 -2136819,4,0,4 -2136820,164,193,357 -2136821,119,121,240 -2136822,238,223,461 -2136823,241,291,532 -2136824,258,272,530 -2136825,330,326,656 -2136826,330,344,674 -2136827,207,168,375 -2136828,156,179,335 -2136901,148,154,302 -2136902,275,285,560 -2136903,163,167,330 -2136904,152,155,307 -2136905,113,130,243 -2136906,168,173,341 -2136907,209,188,397 -2136908,180,164,344 -2136909,144,128,272 -2136910,214,229,443 -2136911,269,245,514 -2136912,308,314,622 -2136913,317,332,649 -2136914,439,476,915 -2136915,239,245,484 -2136916,105,117,222 -2136917,392,450,842 -2136918,370,374,744 -2136919,175,182,357 -2136920,269,330,599 -2136921,217,182,399 -2136922,1292,1423,2715 -2136923,122,164,286 -2136924,171,180,351 -2136925,41,28,69 -2136926,0,0,0 -2136927,204,198,402 -2136928,108,122,230 -2136929,128,143,271 -2136930,164,159,323 -2136931,113,123,236 -2136932,125,139,264 -2136933,103,96,199 -2136934,116,120,236 -2136935,115,126,241 -2136936,744,764,1508 -2136937,47,39,86 -2137001,130,134,264 -2137002,142,149,291 -2137003,273,280,553 -2137004,225,239,464 -2137005,491,441,932 -2137006,319,360,679 -2137007,407,456,863 -2137008,279,366,645 -2137009,262,260,522 -2137010,197,223,420 -2137011,255,245,500 -2137012,137,180,317 -2137013,379,426,805 -2137014,273,273,546 -2137015,138,139,277 -2137016,206,194,400 -2137017,217,218,435 -2137018,179,194,373 -2137019,352,336,688 -2137020,203,192,395 -2137021,157,149,306 -2137022,173,157,330 -2137023,415,437,852 -2137024,433,404,837 -2137025,0,0,0 -2137026,0,0,0 -2137027,3,0,3 -2137028,8,8,16 -2137029,0,0,0 -2137030,146,161,307 -2137031,249,237,486 -2137032,390,347,737 -2137033,301,381,682 -2137034,154,187,341 -2137035,184,185,369 -2137036,179,204,383 -2137037,201,210,411 -2137038,113,89,202 -2137039,93,114,207 -2137040,213,234,447 -2137041,219,223,442 -2137042,258,257,515 -2137043,165,160,325 -2137044,253,278,531 -2137101,226,248,474 -2137102,176,196,372 -2137103,204,209,413 -2137104,113,140,253 -2137105,209,221,430 -2137106,173,164,337 -2137107,275,324,599 -2137108,196,198,394 -2137109,161,208,369 -2137110,232,304,536 -2137111,172,155,327 -2137112,163,160,323 -2137113,149,170,319 -2137114,200,198,398 -2137115,190,237,427 -2137116,168,190,358 -2137117,217,218,435 -2137118,221,199,420 -2137119,222,212,434 -2137120,128,156,284 -2137121,222,240,462 -2137122,201,229,430 -2137123,156,162,318 -2137124,241,258,499 -2137125,244,216,460 -2137126,216,195,411 -2137127,163,186,349 -2137128,155,177,332 -2137129,223,235,458 -2137130,188,154,342 -2137131,245,269,514 -2137132,224,238,462 -2137133,138,148,286 -2137134,211,230,441 -2137135,213,257,470 -2137136,209,247,456 -2137137,96,107,203 -2137138,199,268,467 -2137139,153,157,310 -2137140,120,130,250 -2137141,155,183,338 -2137142,216,240,456 -2137143,197,216,413 -2137144,181,187,368 -2137145,188,186,374 -2137146,250,248,498 -2137147,190,203,393 -2137148,200,201,401 -2137149,154,161,315 -2137150,144,170,314 -2137151,244,225,469 -2137152,222,227,449 -2137153,216,176,392 -2137154,152,185,337 -2137155,128,125,253 -2137201,214,210,424 -2137202,283,313,596 -2137203,145,174,319 -2137204,249,243,492 -2137205,169,211,380 -2137206,244,260,504 -2137207,162,179,341 -2137208,167,157,324 -2137209,0,0,0 -2137210,4,0,4 -2137211,175,192,367 -2137212,224,224,448 -2137213,253,260,513 -2137214,254,235,489 -2137215,268,255,523 -2137216,204,233,437 -2137217,226,238,464 -2137218,264,289,553 -2137219,88,111,199 -2137220,224,219,443 -2137221,193,195,388 -2137222,232,257,489 -2137223,239,346,585 -2137224,213,234,447 -2137225,298,300,598 -2137226,221,214,435 -2137227,248,274,522 -2137228,103,108,211 -2137229,102,109,211 -2137230,140,129,269 -2137231,153,150,303 -2137232,224,215,439 -2137233,287,294,581 -2137234,254,288,542 -2137235,133,147,280 -2137236,216,226,442 -2137237,192,180,372 -2137238,112,124,236 -2137239,140,125,265 -2137240,205,216,421 -2137241,271,334,605 -2137242,233,237,470 -2137243,144,134,278 -2137244,128,115,243 -2137245,250,254,504 -2137246,204,207,411 -2137247,189,177,366 -2137248,150,181,331 -2137301,182,195,377 -2137302,164,174,338 -2137303,236,224,460 -2137304,174,172,346 -2137305,112,95,207 -2137306,111,101,212 -2137307,119,129,248 -2137308,286,289,575 -2137309,233,265,498 -2137310,153,134,287 -2137311,283,301,584 -2137312,176,153,329 -2137313,152,176,328 -2137314,154,169,323 -2137315,205,206,411 -2137316,246,255,501 -2137317,162,140,302 -2137318,184,189,373 -2137319,133,129,262 -2137320,99,127,226 -2137321,176,197,373 -2137322,198,199,397 -2137323,288,294,582 -2137324,203,225,428 -2137325,189,213,402 -2137326,170,208,378 -2137327,211,219,430 -2137328,147,168,315 -2137329,117,104,221 -2137330,248,218,466 -2137331,273,285,558 -2137332,188,221,409 -2137333,123,117,240 -2137334,166,205,371 -2137335,232,281,513 -2137336,248,287,535 -2137337,128,135,263 -2137338,187,204,391 -2137339,184,452,636 -2137340,298,292,590 -2137341,249,277,526 -2137342,286,302,588 -2137343,136,135,271 -2137344,0,0,0 -2137345,120,107,227 -2137346,175,168,343 -2137401,183,207,390 -2137402,327,373,700 -2137403,147,170,317 -2137404,231,278,509 -2137405,199,242,441 -2137406,261,320,581 -2137407,380,414,794 -2137408,249,278,527 -2137409,174,173,347 -2137410,174,196,370 -2137411,223,223,446 -2137412,136,136,272 -2137413,278,298,576 -2137414,435,477,912 -2137415,187,212,399 -2137416,207,196,403 -2137417,256,282,538 -2137418,160,164,324 -2137419,179,182,361 -2137420,186,177,363 -2137421,207,187,394 -2137422,201,180,381 -2137423,130,141,271 -2137424,272,280,552 -2137425,150,186,336 -2137426,208,188,396 -2137427,364,362,726 -2137428,282,224,506 -2137429,290,281,571 -2137430,201,211,412 -2137431,167,181,348 -2137432,207,192,399 -2137433,202,196,398 -2137434,194,222,416 -2137435,0,3,3 -2137436,254,263,517 -2137437,184,183,367 -2137438,270,248,518 -2137439,125,117,242 -2137440,146,153,299 -2137441,236,211,447 -2137442,215,211,426 -2137443,249,231,480 -2137444,299,351,650 -2137445,253,249,502 -2137446,163,196,359 -2137447,248,231,479 -2137448,227,232,459 -2137449,123,197,320 -2137450,162,187,349 -2137451,183,210,393 -2137501,59,131,190 -2137502,83,95,178 -2137503,99,114,213 -2137504,222,235,457 -2137505,209,236,445 -2137506,151,167,318 -2137507,252,269,521 -2137508,220,243,463 -2137509,0,0,0 -2137510,366,347,713 -2137511,271,266,537 -2137512,203,203,406 -2137513,233,211,444 -2137514,168,157,325 -2137515,236,258,494 -2137516,191,152,343 -2137517,255,250,505 -2137518,165,152,317 -2137519,252,262,514 -2137520,221,237,458 -2137521,214,210,424 -2137522,243,214,457 -2137523,237,220,457 -2137524,203,187,390 -2137525,3,0,3 -2137526,283,280,563 -2137527,279,243,522 -2137528,218,234,452 -2137529,178,182,360 -2137530,152,131,283 -2137531,181,169,350 -2137532,201,128,329 -2137533,210,207,417 -2137534,147,134,281 -2137535,191,180,371 -2137536,156,166,322 -2137537,197,216,413 -2137538,235,241,476 -2137539,219,250,469 -2137540,183,263,446 -2137541,197,206,403 -2137601,154,144,298 -2137602,796,794,1590 -2137603,367,334,701 -2137604,174,177,351 -2137605,325,331,656 -2137606,350,400,750 -2137607,144,141,285 -2137608,146,166,312 -2137609,126,133,259 -2137610,179,156,335 -2137611,226,217,443 -2137612,195,204,399 -2137613,252,259,511 -2137614,264,260,524 -2137615,275,282,557 -2137616,202,210,412 -2137617,528,532,1060 -2137618,166,166,332 -2137619,216,235,451 -2137620,164,156,320 -2137701,120,130,250 -2137702,233,270,503 -2137703,196,197,393 -2137704,140,138,278 -2137705,10,7,17 -2137706,142,115,257 -2137707,226,242,468 -2137708,168,177,345 -2137709,177,167,344 -2137710,170,177,347 -2137711,158,127,285 -2137712,249,224,473 -2137713,108,129,237 -2137714,192,162,354 -2137715,141,149,290 -2137716,236,328,564 -2137717,188,185,373 -2137718,148,172,320 -2137719,233,239,472 -2137720,203,230,433 -2137721,169,209,378 -2137722,247,245,492 -2137723,141,142,283 -2137724,205,202,407 -2137725,224,227,451 -2137801,165,163,328 -2137802,190,182,372 -2137803,187,186,373 -2137804,160,132,292 -2137805,53,51,104 -2137806,102,128,230 -2137807,203,241,444 -2137808,185,155,340 -2137809,175,188,363 -2137810,202,186,388 -2137811,140,139,279 -2137812,213,199,412 -2137813,93,98,191 -2137814,178,184,362 -2137815,171,185,356 -2137816,124,119,243 -2137817,50,45,95 -2137818,89,70,159 -2137901,123,116,239 -2137902,272,326,598 -2137903,223,289,512 -2137904,208,197,405 -2137905,208,203,411 -2137906,349,393,742 -2137907,232,217,449 -2137908,176,199,375 -2137909,323,379,702 -2137910,391,389,780 -2137911,339,330,669 -2137912,293,304,597 -2137913,302,333,635 -2137914,208,226,434 -2137915,226,221,447 -2137916,176,202,378 -2137917,179,191,370 -2137918,233,279,512 -2137919,163,137,300 -2137920,218,229,447 -2137921,156,167,323 -2137922,266,246,512 -2137923,157,140,297 -2137924,239,212,451 -2137925,206,182,388 -2137926,149,153,302 -2137927,138,118,256 -2137928,170,174,344 -2137929,234,194,428 -2137930,261,283,544 -2137931,181,225,406 -2137932,183,182,365 -2137933,198,219,417 -2137934,246,267,513 -2137935,197,200,397 -2137936,100,103,203 -2137937,302,307,609 -2137938,158,160,318 -2137939,154,152,306 -2137940,778,306,1084 -2137941,354,332,686 -2137942,3,0,3 -2137943,154,203,357 -2137944,164,189,353 -2137945,207,218,425 -2138001,145,179,324 -2138002,153,183,336 -2138003,159,161,320 -2138004,238,270,508 -2138005,207,209,416 -2138006,134,138,272 -2138007,191,215,406 -2138008,212,266,478 -2138009,161,188,349 -2138010,171,186,357 -2138011,196,217,413 -2138012,139,182,321 -2138013,74,194,268 -2138014,252,293,545 -2138015,247,305,552 -2138016,210,275,485 -2138017,131,166,297 -2138018,235,305,540 -2138019,103,108,211 -2138020,175,230,405 -2138021,124,156,280 -2138022,155,187,342 -2138023,174,192,366 -2138024,167,193,360 -2138025,140,164,304 -2138026,163,181,344 -2138027,215,223,438 -2138028,176,207,383 -2138029,196,233,429 -2138030,151,189,340 -2138031,185,211,396 -2138032,112,165,277 -2138033,169,182,351 -2138034,234,285,519 -2138035,195,220,415 -2138036,214,246,460 -2138037,213,193,406 -2138038,269,268,537 -2138039,287,408,695 -2138040,233,246,479 -2138041,254,266,520 -2138042,179,181,360 -2138043,218,243,461 -2138044,157,153,310 -2138045,255,256,511 -2138046,118,126,244 -2138047,139,117,256 -2138048,0,0,0 -2138049,305,311,616 -2138050,158,145,303 -2138051,115,117,232 -2138052,4,0,4 -2138053,176,228,404 -2138054,165,200,365 -2138055,200,206,406 -2138056,228,247,475 -2138057,184,208,392 -2138058,282,347,629 -2138059,5,3,8 -2138101,204,237,441 -2138102,184,205,389 -2138103,187,214,401 -2138104,207,194,401 -2138105,208,208,416 -2138106,203,220,423 -2138107,130,166,296 -2138108,110,175,285 -2138109,178,247,425 -2138110,194,179,373 -2138111,112,117,229 -2138112,159,156,315 -2138113,274,269,543 -2138114,255,261,516 -2138115,234,244,478 -2138116,242,239,481 -2138117,136,152,288 -2138118,171,162,333 -2138119,107,107,214 -2138120,259,282,541 -2138121,158,139,297 -2138122,214,190,404 -2138123,145,136,281 -2138124,293,278,571 -2138125,270,242,512 -2138126,124,134,258 -2138127,167,158,325 -2138128,117,151,268 -2138129,196,220,416 -2138130,229,254,483 -2138131,146,143,289 -2138132,261,248,509 -2138133,134,145,279 -2138134,261,331,592 -2138135,178,186,364 -2138136,181,204,385 -2138137,263,304,567 -2138138,202,272,474 -2138139,231,217,448 -2138140,128,136,264 -2138141,191,217,408 -2138142,170,191,361 -2138143,211,228,439 -2138144,117,136,253 -2138201,245,267,512 -2138202,110,127,237 -2138203,210,199,409 -2138204,237,239,476 -2138205,3,0,3 -2138206,131,146,277 -2138207,107,121,228 -2138208,166,160,326 -2138209,189,193,382 -2138210,159,174,333 -2138211,205,223,428 -2138212,256,301,557 -2138213,145,153,298 -2138214,117,135,252 -2138215,240,269,509 -2138216,282,277,559 -2138217,358,348,706 -2138218,234,253,487 -2138219,223,199,422 -2138220,296,294,590 -2138221,226,228,454 -2138222,256,253,509 -2138223,172,159,331 -2138224,253,266,519 -2138225,169,160,329 -2138226,163,169,332 -2138227,267,422,689 -2138228,326,404,730 -2138229,265,390,655 -2138230,158,162,320 -2138231,193,170,363 -2138232,299,306,605 -2138233,300,294,594 -2138234,137,132,269 -2138235,142,147,289 -2138236,174,184,358 -2138237,161,164,325 -2138238,252,271,523 -2138239,201,268,469 -2138240,209,216,425 -2138301,120,123,243 -2138302,252,244,496 -2138303,119,129,248 -2138304,177,167,344 -2138305,207,192,399 -2138306,294,291,585 -2138307,310,336,646 -2138308,111,113,224 -2138309,141,155,296 -2138310,242,243,485 -2138311,274,258,532 -2138312,180,168,348 -2138313,119,107,226 -2138314,165,167,332 -2138315,157,137,294 -2138316,197,181,378 -2138317,205,210,415 -2138318,116,134,250 -2138319,222,207,429 -2138320,170,173,343 -2138321,210,208,418 -2138322,143,161,304 -2138323,260,244,504 -2138324,162,147,309 -2138325,217,252,469 -2138326,182,205,387 -2138327,188,187,375 -2138328,240,235,475 -2138329,190,218,408 -2138330,137,154,291 -2138331,191,207,398 -2138332,156,150,306 -2138333,98,111,209 -2138334,188,198,386 -2138335,213,203,416 -2138336,205,200,405 -2138337,191,195,386 -2138338,161,169,330 -2138339,191,217,408 -2138340,0,0,0 -2138341,107,115,222 -2138342,236,231,467 -2138343,192,195,387 -2138344,190,178,368 -2138401,240,251,491 -2138402,165,233,398 -2138403,97,99,196 -2138404,175,205,380 -2138405,196,268,464 -2138406,211,362,573 -2138407,0,0,0 -2138408,195,231,426 -2138409,274,286,560 -2138410,161,150,311 -2138411,139,150,289 -2138412,150,145,295 -2138413,162,162,324 -2138414,261,278,539 -2138415,133,163,296 -2138416,204,240,444 -2138417,162,196,358 -2138418,244,297,541 -2138419,173,248,421 -2138420,205,251,456 -2138421,208,198,406 -2138422,116,109,225 -2138423,395,476,871 -2138424,248,252,500 -2138425,230,241,471 -2138426,169,164,333 -2138427,112,178,290 -2138428,114,160,274 -2138429,220,251,471 -2138430,151,210,361 -2138431,242,291,533 -2138432,179,184,363 -2138433,109,108,217 -2138434,230,280,510 -2138435,214,249,463 -2138436,201,193,394 -2138437,137,129,266 -2138438,152,151,303 -2138439,137,136,273 -2138440,185,214,399 -2138441,191,230,421 -2138442,183,203,386 -2138443,227,272,499 -2138444,158,161,319 -2138445,132,158,290 -2138446,118,150,268 -2138447,216,210,426 -2138448,340,336,676 -2138449,122,127,249 -2138450,179,232,411 -2138501,146,138,284 -2138502,146,156,302 -2138503,243,229,472 -2138504,208,213,421 -2138505,118,142,260 -2138506,168,148,316 -2138507,123,100,223 -2138508,231,248,479 -2138509,137,140,277 -2138510,159,170,329 -2138511,148,169,317 -2138512,176,153,329 -2138513,192,205,397 -2138514,205,234,439 -2138515,147,132,279 -2138516,264,320,584 -2138517,245,285,530 -2138518,168,181,349 -2138519,211,220,431 -2138520,155,228,383 -2138521,162,152,314 -2138522,159,158,317 -2138523,234,256,490 -2138524,141,150,291 -2138525,204,197,401 -2138526,127,155,282 -2138527,259,267,526 -2138528,237,228,465 -2138529,336,359,695 -2138530,141,175,316 -2138531,168,173,341 -2138532,207,217,424 -2138533,190,218,408 -2138534,192,182,374 -2138535,251,265,516 -2138536,151,146,297 -2138537,314,350,664 -2138538,157,148,305 -2138539,147,144,291 -2138540,164,174,338 -2138541,148,137,285 -2138542,194,192,386 -2138543,160,159,319 -2138544,116,121,237 -2138545,104,105,209 -2138546,194,161,355 -2138547,122,100,222 -2138601,65,86,151 -2138602,165,193,358 -2138603,142,126,268 -2138604,197,192,389 -2138605,130,113,243 -2138606,174,231,405 -2138607,132,137,269 -2138608,177,201,378 -2138609,156,177,333 -2138610,147,152,299 -2138611,92,105,197 -2138612,255,273,528 -2138613,163,198,361 -2138614,195,213,408 -2138615,146,106,252 -2138616,183,184,367 -2138617,129,144,273 -2138618,121,132,253 -2138619,186,178,364 -2138620,154,140,294 -2138621,225,222,447 -2138622,141,164,305 -2138623,235,262,497 -2138624,419,10,429 -2138701,179,177,356 -2138702,189,173,362 -2138703,126,125,251 -2138704,117,131,248 -2138705,161,154,315 -2138706,174,151,325 -2138707,154,143,297 -2138708,156,170,326 -2138709,74,80,154 -2138710,140,131,271 -2138801,214,200,414 -2138802,175,204,379 -2138803,138,199,337 -2138804,267,307,574 -2138805,221,277,498 -2138806,229,223,452 -2138807,271,366,637 -2138808,230,206,436 -2138809,167,190,357 -2138810,202,226,428 -2138811,166,156,322 -2138812,254,228,482 -2138813,238,254,492 -2138814,198,208,406 -2138815,135,134,269 -2138816,246,256,502 -2138817,360,382,742 -2138818,217,219,436 -2138819,172,152,324 -2138820,118,105,223 -2138821,207,289,496 -2138822,223,237,460 -2138823,344,352,696 -2138824,190,217,407 -2138825,138,169,307 -2138826,181,189,370 -2138827,104,116,220 -2138828,361,346,707 -2138829,229,205,434 -2138830,172,207,379 -2138831,163,182,345 -2138832,215,228,443 -2138833,181,199,380 -2138834,149,158,307 -2138835,206,243,449 -2138836,214,228,442 -2138837,163,177,340 -2138901,132,106,238 -2138902,111,112,223 -2138903,160,159,319 -2138904,173,164,337 -2138905,128,105,233 -2138906,110,100,210 -2138907,191,218,409 -2138908,188,154,342 -2138909,130,116,246 -2138910,144,145,289 -2138911,165,143,308 -2138912,126,124,250 -2139001,129,129,258 -2139002,139,152,291 -2139003,140,134,274 -2139004,132,107,239 -2139005,109,106,215 -2139006,24,7,31 -2139007,152,113,265 -2139008,0,0,0 -2139009,145,125,270 -2139010,155,149,304 -2139011,114,109,223 -2139012,137,115,252 -2139013,158,122,280 -2139014,122,131,253 -2139015,89,115,204 -2139016,217,220,437 -2139017,194,199,393 -2139018,68,56,124 -2139019,214,257,471 -2139020,105,133,238 -2139021,151,138,289 -2139022,160,164,324 -2139023,99,110,209 -2139024,110,122,232 -2139025,70,80,150 -2139026,113,124,237 -2139027,133,149,282 -2139028,130,146,276 -2139029,93,91,184 -2139030,0,0,0 -2139101,81,85,166 -2139102,262,256,518 -2139103,264,275,539 -2139104,159,181,340 -2139105,152,136,288 -2139106,184,149,333 -2139107,215,180,395 -2139108,114,127,241 -2139109,157,177,334 -2139110,228,205,433 -2139201,88,76,164 -2139202,181,239,420 -2139203,130,106,236 -2139204,193,214,407 -2139205,168,153,321 -2139206,154,117,271 -2139207,89,95,184 -2139208,163,186,349 -2139209,188,162,350 -2139210,146,160,306 -2139211,213,175,388 -2139212,171,170,341 -2139213,169,141,310 -2139214,150,155,305 -2139215,136,127,263 -2139216,162,144,306 -2139217,172,192,364 -2139218,180,175,355 -2139219,169,170,339 -2139220,281,284,565 -2139221,118,126,244 -2139222,187,198,385 -2139223,174,225,399 -2139224,113,138,251 -2139225,101,158,259 -2139226,89,92,181 -2139301,113,100,213 -2139302,140,121,261 -2139303,171,144,315 -2139304,88,90,178 -2139305,204,200,404 -2139306,166,158,324 -2139307,134,119,253 -2139308,119,126,245 -2139309,102,115,217 -2139310,215,258,473 -2139401,188,211,399 -2139402,221,185,406 -2139403,146,115,261 -2139404,225,210,435 -2139405,233,285,518 -2139406,157,145,302 -2139407,213,222,435 -2139408,184,202,386 -2139409,215,225,440 -2139410,229,232,461 -2139411,175,174,349 -2139412,186,173,359 -2139413,95,92,187 -2139414,101,80,181 -2139415,116,113,229 -2139416,151,157,308 -2139417,94,97,191 -2139418,105,102,207 -2139419,214,217,431 -2139420,142,157,299 -2139421,116,133,249 -2139501,173,189,362 -2139502,199,176,375 -2139503,142,134,276 -2139504,256,263,519 -2139505,178,175,353 -2139506,260,262,522 -2139507,198,197,395 -2139508,103,125,228 -2139509,127,109,236 -2139510,551,511,1062 -2139511,72,73,145 -2139512,132,131,263 -2139513,249,198,447 -2139514,142,167,309 -2139515,93,93,186 -2139516,176,164,340 -2139517,162,140,302 -2139518,0,0,0 -2139519,0,0,0 -2139520,86,84,170 -2139601,121,131,252 -2139602,73,64,137 -2139603,224,203,427 -2139604,166,150,316 -2139605,299,286,585 -2139606,257,256,513 -2139607,164,161,325 -2139608,159,184,343 -2139609,133,135,268 -2139610,54,59,113 -2139611,125,133,258 -2139612,137,149,286 -2139613,156,166,322 -2139614,176,173,349 -2139615,70,71,141 -2139701,242,266,508 -2139702,296,300,596 -2139703,139,162,301 -2139704,142,145,287 -2139705,228,251,479 -2139706,236,248,484 -2139707,157,165,322 -2139708,246,283,529 -2139709,257,260,517 -2139710,156,173,329 -2139711,112,140,252 -2139712,203,195,398 -2139713,189,167,356 -2139714,206,211,417 -2139715,218,255,473 -2139716,257,315,572 -2139717,302,306,608 -2139718,271,290,561 -2139719,202,219,421 -2139720,149,221,370 -2139721,189,228,417 -2139722,208,249,457 -2139723,157,179,336 -2139724,196,186,382 -2139725,270,302,572 -2139726,155,181,336 -2139727,264,293,557 -2139728,199,222,421 -2139729,240,260,500 -2139730,174,176,350 -2139731,210,236,446 -2139732,241,248,489 -2139733,209,240,449 -2139734,219,277,496 -2139735,96,81,177 -2139736,136,115,251 -2139737,181,201,382 -2139738,137,148,285 -2139739,174,216,390 -2139740,98,136,234 -2139741,200,221,421 -2139742,155,156,311 -2139743,224,251,475 -2139744,307,318,625 -2139745,154,174,328 -2139746,280,285,565 -2139747,101,102,203 -2139748,155,176,331 -2139749,151,186,337 -2139750,272,342,614 -2139751,371,440,811 -2139752,442,513,955 -2139753,209,264,473 -2139754,161,206,367 -2139755,218,215,433 -2139756,117,149,266 -2139757,213,247,460 -2139758,136,129,265 -2139759,141,144,285 -2139760,235,334,569 -2139761,181,202,383 -2139762,178,223,401 -2139763,109,125,234 -2139764,197,210,407 -2139765,158,174,332 -2139766,148,171,319 -2139767,117,101,218 -2139768,137,145,282 -2139769,71,60,131 -2139770,106,128,234 -2139771,291,285,576 -2139772,322,294,616 -2139773,138,147,285 -2139774,221,215,436 -2139801,107,95,202 -2139802,267,264,531 -2139803,193,187,380 -2139804,0,0,0 -2139805,3,0,3 -2139806,187,150,337 -2139807,154,105,259 -2139808,7,5,12 -2139809,67,61,128 -2139810,101,115,216 -2139811,224,192,416 -2139812,173,152,325 -2139813,178,142,320 -2139814,121,106,227 -2139815,252,209,461 -2139901,0,0,0 -2139902,142,145,287 -2139903,89,96,185 -2139904,123,159,282 -2139905,101,140,241 -2139906,140,132,272 -2139907,114,111,225 -2139908,182,142,324 -2139909,240,215,455 -2139910,216,207,423 -2139911,374,307,681 -2139912,188,174,362 -2139913,155,155,310 -2139914,194,227,421 -2139915,172,208,380 -2139916,117,120,237 -2139917,161,141,302 -2140001,125,137,262 -2140002,105,106,211 -2140003,128,102,230 -2140004,106,112,218 -2140005,101,109,210 -2140006,197,219,416 -2140007,180,198,378 -2140008,136,125,261 -2140009,173,146,319 -2140010,91,71,162 -2140011,244,211,455 -2140012,157,165,322 -2140013,164,158,322 -2140014,142,144,286 -2140015,151,175,326 -2140016,169,169,338 -2140017,177,144,321 -2140018,220,224,444 -2140019,188,150,338 -2140020,158,156,314 -2140021,123,128,251 -2140101,100,113,213 -2140102,102,105,207 -2140103,119,143,262 -2140104,125,131,256 -2140105,129,119,248 -2140106,231,222,453 -2140107,159,157,316 -2140108,112,113,225 -2140109,83,68,151 -2140110,165,165,330 -2140111,88,95,183 -2140112,171,140,311 -2140113,169,151,320 -2140114,260,236,496 -2140115,67,41,108 -2140116,106,97,203 -2140117,178,158,336 -2140118,193,176,369 -2140119,98,92,190 -2140120,192,203,395 -2140121,122,157,279 -2140122,192,222,414 -2140123,117,106,223 -2140201,146,154,300 -2140202,125,165,290 -2140203,148,149,297 -2140204,260,252,512 -2140205,55,57,112 -2140206,139,173,312 -2140207,81,90,171 -2140208,183,184,367 -2140209,153,187,340 -2140210,79,82,161 -2140211,78,62,140 -2140212,211,208,419 -2140213,193,251,444 -2140301,164,173,337 -2140302,203,197,400 -2140303,0,0,0 -2140304,141,124,265 -2140305,243,223,466 -2140306,150,140,290 -2140307,109,92,201 -2140308,219,164,383 -2140309,110,136,246 -2140310,131,137,268 -2140311,310,309,619 -2140312,0,0,0 -2140401,232,242,474 -2140402,286,322,608 -2140403,123,113,236 -2140404,129,129,258 -2140405,220,212,432 -2140406,110,125,235 -2140407,173,164,337 -2140408,150,166,316 -2140409,123,123,246 -2140410,273,273,546 -2140411,91,87,178 -2140412,200,154,354 -2140413,212,215,427 -2140414,229,269,498 -2140415,166,174,340 -2140416,234,275,509 -2140417,209,229,438 -2140418,126,111,237 -2140419,238,287,525 -2140420,247,293,540 -2140421,174,202,376 -2140422,240,284,524 -2140423,121,137,258 -2140424,178,178,356 -2140425,267,285,552 -2140426,205,217,422 -2140427,117,88,205 -2140501,164,169,333 -2140502,79,66,145 -2140503,180,153,333 -2140504,142,130,272 -2140505,331,274,605 -2140506,94,80,174 -2140507,157,123,280 -2140508,143,111,254 -2140509,120,99,219 -2140510,83,71,154 -2140511,132,131,263 -2140512,160,150,310 -2140513,133,125,258 -2140514,125,109,234 -2140515,183,183,366 -2140516,152,129,281 -2140517,98,112,210 -2140518,210,197,407 -2140519,201,170,371 -2140520,185,187,372 -2140521,158,153,311 -2140522,99,97,196 -2140523,117,102,219 -2140601,184,204,388 -2140602,292,303,595 -2140603,146,178,324 -2140604,221,223,444 -2140605,104,113,217 -2140606,114,139,253 -2140607,271,312,583 -2140608,0,3,3 -2140609,128,160,288 -2140610,99,107,206 -2140611,121,184,305 -2140612,172,198,370 -2140613,128,117,245 -2140614,105,127,232 -2140615,134,160,294 -2140616,209,244,453 -2140617,275,307,582 -2140618,138,163,301 -2140619,250,276,526 -2140620,190,258,448 -2140621,213,235,448 -2140622,175,167,342 -2140623,194,194,388 -2140624,157,174,331 -2140625,169,166,335 -2140626,231,262,493 -2140627,270,239,509 -2140628,0,0,0 -2140629,289,337,626 -2140630,219,191,410 -2140631,167,150,317 -2140632,54,47,101 -2140633,101,113,214 -2140634,297,330,627 -2140635,298,329,627 -2140636,104,95,199 -2140637,92,78,170 -2140638,120,135,255 -2140639,195,160,355 -2140640,196,182,378 -2140701,138,175,313 -2140702,183,209,392 -2140703,151,159,310 -2140704,209,208,417 -2140705,150,135,285 -2140706,175,178,353 -2140707,192,195,387 -2140708,153,193,346 -2140709,214,246,460 -2140710,198,233,431 -2140711,343,279,622 -2140712,196,163,359 -2140713,182,146,328 -2140714,0,0,0 -2140715,185,150,335 -2140716,207,201,408 -2140717,179,149,328 -2140718,217,230,447 -2140719,235,255,490 -2140720,111,97,208 -2140721,235,264,499 -2140722,259,277,536 -2140723,187,164,351 -2140724,165,237,402 -2140725,149,184,333 -2140726,208,202,410 -2140727,165,139,304 -2140728,113,105,218 -2140729,100,91,191 -2140730,136,143,279 -2140801,189,187,376 -2140802,111,95,206 -2140803,209,196,405 -2140804,121,110,231 -2140805,149,146,295 -2140806,128,136,264 -2140807,197,190,387 -2140808,197,229,426 -2140809,95,89,184 -2140810,128,122,250 -2140811,144,139,283 -2140812,131,129,260 -2140813,89,71,160 -2140901,156,173,329 -2140902,123,134,257 -2140903,172,220,392 -2140904,221,243,464 -2140905,225,215,440 -2140906,164,178,342 -2140907,218,187,405 -2140908,158,146,304 -2140909,191,182,373 -2140910,254,236,490 -2140911,0,0,0 -2141001,223,204,427 -2141002,165,135,300 -2141003,204,148,352 -2141004,161,135,296 -2141005,160,109,269 -2141006,211,184,395 -2141007,148,146,294 -2141008,213,214,427 -2141009,142,123,265 -2141010,96,101,197 -2141011,81,80,161 -2141012,169,160,329 -2141013,53,59,112 -2141014,148,134,282 -2141101,166,171,337 -2141102,131,137,268 -2141103,145,149,294 -2141104,99,87,186 -2141105,207,202,409 -2141106,200,209,409 -2141107,240,258,498 -2141108,261,263,524 -2141109,274,310,584 -2141110,264,284,548 -2141111,96,119,215 -2141112,142,148,290 -2141113,183,168,351 -2141114,174,176,350 -2141115,256,235,491 -2141116,128,124,252 -2141117,117,108,225 -2141201,145,111,256 -2141202,136,151,287 -2141203,203,160,363 -2141204,126,141,267 -2141205,123,109,232 -2141206,143,126,269 -2141207,158,178,336 -2141208,101,102,203 -2141209,180,163,343 -2141301,183,198,381 -2141302,201,181,382 -2141303,90,75,165 -2141304,160,141,301 -2141305,51,48,99 -2141306,103,87,190 -2141307,238,231,469 -2141308,260,225,485 -2141309,169,165,334 -2141310,70,62,132 -2141311,88,92,180 -2141312,136,126,262 -2141313,157,144,301 -2141314,232,235,467 -2141315,72,64,136 -2141316,142,112,254 -2141317,129,113,242 -2141318,185,190,375 -2141319,215,276,491 -2141320,114,123,237 -2141321,154,173,327 -2141322,149,167,316 -2141323,212,261,473 -2141324,191,200,391 -2141325,132,138,270 -2141326,123,137,260 -2141327,187,189,376 -2141328,109,119,228 -2141329,228,194,422 -2141330,279,273,552 -2141331,280,279,559 -2141332,255,253,508 -2141333,248,232,480 -2141334,118,133,251 -2141335,258,216,474 -2141336,173,165,338 -2141337,0,0,0 -2141338,93,88,181 -2141401,215,232,447 -2141402,149,192,341 -2141403,91,103,194 -2141404,179,206,385 -2141405,181,212,393 -2141406,252,281,533 -2141407,192,199,391 -2141408,195,229,424 -2141409,237,261,498 -2141410,138,133,271 -2141411,296,282,578 -2141412,403,419,822 -2141413,190,222,412 -2141414,151,150,301 -2141415,138,118,256 -2141416,159,149,308 -2141417,222,250,472 -2141418,21,18,39 -2141501,219,225,444 -2141502,173,187,360 -2141503,140,136,276 -2141504,175,188,363 -2141505,92,76,168 -2141506,223,223,446 -2141507,260,259,519 -2141508,178,220,398 -2141509,239,238,477 -2141510,101,117,218 -2141511,179,206,385 -2141512,243,259,502 -2141513,309,403,712 -2141514,140,164,304 -2141515,187,185,372 -2141516,307,290,597 -2141517,253,302,555 -2141518,73,58,131 -2141519,193,160,353 -2141520,113,137,250 -2141601,207,211,418 -2141602,257,265,522 -2141603,120,99,219 -2141604,236,242,478 -2141605,150,222,372 -2141606,202,215,417 -2141607,187,192,379 -2141608,230,235,465 -2141609,276,278,554 -2141610,182,199,381 -2141611,245,266,511 -2141612,138,126,264 -2141613,0,0,0 -2141614,119,124,243 -2141615,155,151,306 -2141616,207,218,425 -2141617,126,148,274 -2141618,148,128,276 -2141619,196,208,404 -2141620,171,191,362 -2141621,249,254,503 -2141622,327,368,695 -2141623,275,263,538 -2141624,128,167,295 -2141625,167,176,343 -2141626,204,232,436 -2141627,185,169,354 -2141628,218,205,423 -2141629,122,221,343 -2141630,189,223,412 -2141631,148,166,314 -2141632,257,302,559 -2141633,104,98,202 -2141634,186,193,379 -2141635,250,265,515 -2141636,220,210,430 -2141637,232,195,427 -2141638,233,264,497 -2141639,284,281,565 -2141640,111,126,237 -2141641,208,209,417 -2141642,227,251,478 -2141643,115,109,224 -2141644,191,209,400 -2141701,218,238,456 -2141702,216,230,446 -2141703,228,244,472 -2141704,225,218,443 -2141705,254,243,497 -2141706,201,223,424 -2141707,372,327,699 -2141708,152,163,315 -2141709,188,194,382 -2141710,113,105,218 -2141711,116,100,216 -2141712,303,314,617 -2141713,236,223,459 -2141714,129,137,266 -2141715,185,304,489 -2141716,193,200,393 -2141717,504,515,1019 -2141718,159,157,316 -2141719,325,306,631 -2141720,272,315,587 -2141721,132,150,282 -2141722,235,240,475 -2141723,225,228,453 -2141724,183,170,353 -2141725,322,327,649 -2141726,232,260,492 -2141727,174,166,340 -2141728,168,138,306 -2141729,119,138,257 -2141730,329,339,668 -2141731,234,291,525 -2141732,274,285,559 -2141733,106,116,222 -2141734,161,138,299 -2141735,123,107,230 -2141736,218,210,428 -2141737,118,117,235 -2141738,158,121,279 -2141739,123,124,247 -2141740,171,148,319 -2141741,137,141,278 -2141742,193,153,346 -2141743,210,247,457 -2141744,243,262,505 -2141745,205,242,447 -2141746,145,154,299 -2141747,218,226,444 -2141748,167,163,330 -2141749,216,248,464 -2141750,274,308,582 -2141751,171,170,341 -2141801,107,119,226 -2141802,138,132,270 -2141803,228,214,442 -2141804,96,75,171 -2141805,235,222,457 -2141806,159,146,305 -2141807,114,130,244 -2141808,154,147,301 -2141809,268,251,519 -2141810,135,137,272 -2141811,138,104,242 -2141812,122,105,227 -2141813,125,130,255 -2141901,87,125,212 -2141902,94,98,192 -2141903,165,180,345 -2141904,236,228,464 -2141905,135,143,278 -2141906,196,209,405 -2141907,254,238,492 -2141908,160,172,332 -2141909,120,135,255 -2141910,284,261,545 -2141911,104,108,212 -2141912,151,150,301 -2141913,133,137,270 -2141914,229,224,453 -2141915,317,97,414 -2141916,150,140,290 -2141917,144,126,270 -2141918,167,147,314 -2141919,211,194,405 -2141920,164,175,339 -2141921,141,169,310 -2141922,157,153,310 -2141923,119,119,238 -2141924,146,138,284 -2141925,122,131,253 -2141926,253,212,465 -2141927,177,195,372 -2141928,104,135,239 -2141929,285,256,541 -2142001,134,128,262 -2142002,202,226,428 -2142003,120,111,231 -2142004,159,152,311 -2142005,176,175,351 -2142006,133,108,241 -2142007,236,197,433 -2142008,146,109,255 -2142009,81,83,164 -2142010,156,174,330 -2142011,125,119,244 -2142012,119,134,253 -2142013,194,228,422 -2142014,98,95,193 -2142015,157,155,312 -2142016,102,95,197 -2142017,140,125,265 -2142018,119,103,222 -2142019,119,140,259 -2142020,182,159,341 -2142021,89,80,169 -2142022,220,197,417 -2142023,95,108,203 -2142024,182,205,387 -2142025,119,125,244 -2142026,150,151,301 -2142027,90,97,187 -2142028,86,89,175 -2142029,201,168,369 -2142030,231,227,458 -2142031,108,100,208 -2142101,196,233,429 -2142102,120,164,284 -2142103,188,185,373 -2142104,193,192,385 -2142105,248,244,492 -2142106,114,183,297 -2142107,203,209,412 -2142108,185,233,418 -2142109,184,169,353 -2142110,167,169,336 -2142111,228,194,422 -2142112,162,226,388 -2142113,111,123,234 -2142114,117,110,227 -2142115,213,213,426 -2142116,198,206,404 -2142117,176,167,343 -2142118,149,151,300 -2142119,258,242,500 -2142120,230,279,509 -2142121,110,116,226 -2142122,141,160,301 -2142123,163,172,335 -2142124,109,128,237 -2142125,174,183,357 -2142126,191,201,392 -2142127,176,212,388 -2142128,162,166,328 -2142201,0,0,0 -2142202,197,222,419 -2142203,141,158,299 -2142204,197,212,409 -2142205,149,130,279 -2142206,198,210,408 -2142207,0,0,0 -2142208,152,155,307 -2142209,202,243,445 -2142210,213,204,417 -2142211,219,285,504 -2142212,183,166,349 -2142213,250,239,489 -2142214,215,211,426 -2142215,164,156,320 -2142216,0,0,0 -2142217,142,120,262 -2142218,248,237,485 -2142219,214,182,396 -2142220,272,253,525 -2142221,190,188,378 -2142222,161,193,354 -2142223,165,157,322 -2142224,137,130,267 -2142225,171,183,354 -2142226,165,156,321 -2142227,287,288,575 -2142228,118,144,262 -2142229,112,108,220 -2142230,114,112,226 -2142231,142,129,271 -2142232,192,229,421 -2142301,182,175,357 -2142302,129,163,292 -2142303,168,161,329 -2142304,120,120,240 -2142305,132,154,286 -2142306,224,247,471 -2142307,79,69,148 -2142308,155,137,292 -2142309,191,184,375 -2142310,161,156,317 -2142311,132,132,264 -2142312,141,122,263 -2142313,114,107,221 -2142314,117,102,219 -2142315,166,168,334 -2142316,236,214,450 -2142317,161,158,319 -2142318,97,87,184 -2142319,197,189,386 -2142320,104,105,209 -2142321,108,86,194 -2142322,98,93,191 -2142401,155,170,325 -2142402,136,123,259 -2142403,183,189,372 -2142404,178,187,365 -2142405,180,196,376 -2142406,100,126,226 -2142407,251,296,547 -2142408,103,137,240 -2142409,135,143,278 -2142410,109,102,211 -2142411,139,118,257 -2142501,210,268,478 -2142502,270,247,517 -2142503,214,226,440 -2142504,176,171,347 -2142505,326,321,647 -2142506,112,107,219 -2142507,316,327,643 -2142508,114,109,223 -2142509,206,208,414 -2142510,208,210,418 -2142511,138,128,266 -2142512,136,146,282 -2142513,150,178,328 -2142514,157,181,338 -2142515,151,148,299 -2142516,96,100,196 -2142517,147,149,296 -2142518,147,161,308 -2142519,183,253,436 -2142520,90,121,211 -2142521,123,183,306 -2142522,172,188,360 -2142523,262,250,512 -2142524,255,266,521 -2142525,239,267,506 -2142526,267,264,531 -2142527,264,278,542 -2142528,120,133,253 -2142529,173,131,304 -2142530,230,268,498 -2142531,70,64,134 -2142601,227,205,432 -2142602,110,114,224 -2142603,252,234,486 -2142604,138,118,256 -2142605,186,176,362 -2142606,107,80,187 -2142607,108,85,193 -2142608,95,92,187 -2142609,279,251,530 -2142610,120,102,222 -2142611,146,130,276 -2142612,149,126,275 -2142613,143,141,284 -2142614,133,137,270 -2142615,229,215,444 -2142616,195,187,382 -2142617,164,143,307 -2142701,118,111,229 -2142702,150,141,291 -2142703,157,161,318 -2142704,231,246,477 -2142705,177,171,348 -2142706,100,127,227 -2142707,88,79,167 -2142708,206,180,386 -2142709,126,121,247 -2142710,178,166,344 -2142711,90,78,168 -2142712,191,182,373 -2142713,158,128,286 -2142714,143,124,267 -2142715,211,241,452 -2142716,193,205,398 -2142717,99,105,204 -2142718,114,106,220 -2142801,152,138,290 -2142802,136,123,259 -2142803,179,171,350 -2142804,130,133,263 -2142805,238,228,466 -2142806,101,89,190 -2142807,138,129,267 -2142808,161,127,288 -2142809,126,132,258 -2142810,186,166,352 -2142811,115,82,197 -2142812,257,259,516 -2142813,180,161,341 -2142814,185,176,361 -2142815,112,132,244 -2142816,147,172,319 -2142817,113,82,195 -2142818,134,148,282 -2142819,148,155,303 -2142820,148,150,298 -2142821,133,138,271 -2142822,91,89,180 -2142823,86,122,208 -2142824,109,108,217 -2142825,144,120,264 -2142826,154,135,289 -2142901,97,88,185 -2142902,198,195,393 -2142903,153,167,320 -2142904,172,186,358 -2142905,128,145,273 -2142906,148,150,298 -2142907,116,121,237 -2142908,183,168,351 -2142909,164,144,308 -2142910,147,135,282 -2142911,143,133,276 -2142912,15,23,38 -2142913,144,150,294 -2142914,151,144,295 -2142915,110,101,211 -2142916,184,167,351 -2142917,180,176,356 -2142918,132,115,247 -2142919,214,233,447 -2142920,65,58,123 -2142921,69,73,142 -2142922,98,92,190 -2142923,146,136,282 -2142924,234,220,454 -2143001,144,148,292 -2143002,133,117,250 -2143003,170,191,361 -2143004,222,222,444 -2143005,155,148,303 -2143006,184,185,369 -2143007,130,142,272 -2143008,198,191,389 -2143009,97,79,176 -2143010,171,153,324 -2143011,0,0,0 -2143012,125,131,256 -2143013,145,166,311 -2143014,178,168,346 -2143015,233,239,472 -2143016,170,183,353 -2143017,146,135,281 -2143018,104,98,202 -2143019,213,219,432 -2143020,112,116,228 -2143021,146,209,355 -2143022,147,177,324 -2143023,201,236,437 -2143024,174,214,388 -2143025,207,208,415 -2143026,83,97,180 -2143027,171,180,351 -2143028,167,201,368 -2143101,205,211,416 -2143102,214,234,448 -2143103,110,119,229 -2143104,108,110,218 -2143105,106,132,238 -2143106,227,200,427 -2143107,106,96,202 -2143108,249,230,479 -2143109,206,177,383 -2143110,131,105,236 -2143201,214,256,470 -2143202,232,199,431 -2143203,185,178,363 -2143204,117,139,256 -2143205,137,124,261 -2143206,158,173,331 -2143207,369,396,765 -2143208,159,159,318 -2143209,71,74,145 -2143210,159,193,352 -2143211,146,172,318 -2143212,191,212,403 -2143213,178,183,361 -2143214,328,320,648 -2143215,239,240,479 -2143216,223,240,463 -2143217,160,161,321 -2143218,136,136,272 -2143219,198,238,436 -2143220,161,146,307 -2143221,267,287,554 -2143222,201,207,408 -2143223,212,271,483 -2143224,177,220,397 -2143225,128,142,270 -2143226,172,177,349 -2143227,212,249,461 -2143228,424,426,850 -2143229,126,174,300 -2143230,207,199,406 -2143231,211,242,453 -2143232,212,247,459 -2143233,218,224,442 -2143234,212,207,419 -2143235,212,249,461 -2143236,252,256,508 -2143237,287,330,617 -2143238,189,178,367 -2143239,191,217,408 -2143240,250,215,465 -2143241,163,172,335 -2143242,222,221,443 -2143243,210,240,450 -2143244,167,203,370 -2143245,99,74,173 -2143246,5,0,5 -2143247,168,167,335 -2143248,119,140,259 -2143249,0,0,0 -2143250,126,127,253 -2143251,60,78,138 -2143301,196,217,413 -2143302,192,195,387 -2143303,175,182,357 -2143304,177,151,328 -2143305,216,215,431 -2143306,164,193,357 -2143307,225,192,417 -2143308,196,218,414 -2143309,206,182,388 -2143310,396,369,765 -2143311,132,124,256 -2143312,257,292,549 -2143313,177,167,344 -2143314,153,183,336 -2143315,209,228,437 -2143316,226,254,480 -2143317,147,176,323 -2143318,0,0,0 -2143319,236,244,480 -2143320,195,207,402 -2143321,99,127,226 -2143322,290,340,630 -2143323,166,167,333 -2143324,248,256,504 -2143325,111,150,261 -2143326,190,193,383 -2143327,263,348,611 -2143328,165,166,331 -2143329,187,177,364 -2143330,185,197,382 -2143331,190,196,386 -2143332,0,0,0 -2143333,113,166,279 -2143334,133,136,269 -2949999,4672,3635,8307 -2979991,0,0,0 -2979992,25,0,25 -2979993,9,0,9 -3100101,246,223,469 -3100102,156,150,306 -3100103,300,279,579 -3100104,194,219,413 -3100105,115,106,221 -3100106,135,121,256 -3100107,133,132,265 -3100108,222,236,458 -3100109,261,302,563 -3100110,207,176,383 -3100111,275,266,541 -3100112,110,128,238 -3100113,155,160,315 -3100114,246,248,494 -3100115,231,217,448 -3100116,227,248,475 -3100117,202,223,425 -3100118,240,244,484 -3100119,233,207,440 -3100120,126,154,280 -3100121,213,235,448 -3100122,208,188,396 -3100123,205,256,461 -3100124,96,108,204 -3100125,141,150,291 -3100126,202,216,418 -3100127,123,108,231 -3100128,217,218,435 -3100129,179,199,378 -3100130,244,348,592 -3100131,204,198,402 -3100132,109,101,210 -3100133,254,212,466 -3100134,181,200,381 -3100135,171,177,348 -3100136,221,228,449 -3100137,158,162,320 -3100138,118,116,234 -3100139,197,222,419 -3100140,230,239,469 -3100141,184,187,371 -3100142,183,179,362 -3100143,0,0,0 -3100144,0,0,0 -3100145,197,181,378 -3100201,124,117,241 -3100202,212,219,431 -3100203,121,124,245 -3100204,287,274,561 -3100205,198,206,404 -3100206,237,237,474 -3100207,118,110,228 -3100208,161,141,302 -3100209,213,210,423 -3100210,201,193,394 -3100211,10,0,10 -3100212,0,3,3 -3100213,235,263,498 -3100214,98,110,208 -3100215,227,241,468 -3100216,180,207,387 -3100217,49,54,103 -3100218,163,181,344 -3100219,433,509,942 -3100220,179,167,346 -3100221,207,227,434 -3100301,186,211,397 -3100302,211,210,421 -3100303,149,173,322 -3100304,280,299,579 -3100305,214,218,432 -3100306,193,192,385 -3100307,272,260,532 -3100308,154,140,294 -3100309,181,160,341 -3100310,335,323,658 -3100311,169,172,341 -3100312,126,124,250 -3100313,240,248,488 -3100314,184,200,384 -3100315,207,171,378 -3100316,329,330,659 -3100317,232,213,445 -3100318,219,198,417 -3100319,183,188,371 -3100320,207,209,416 -3100321,288,318,606 -3100322,147,178,325 -3100323,262,270,532 -3100324,283,266,549 -3100325,325,288,613 -3100326,3,0,3 -3100327,10,9,19 -3100328,134,242,376 -3100329,154,151,305 -3100330,210,178,388 -3100331,149,158,307 -3100332,140,238,378 -3100333,136,141,277 -3100334,118,138,256 -3100335,278,273,551 -3100336,165,183,348 -3100401,206,222,428 -3100402,296,294,590 -3100403,227,263,490 -3100404,210,219,429 -3100405,201,200,401 -3100406,133,143,276 -3100407,179,153,332 -3100408,245,282,527 -3100409,263,250,513 -3100410,247,256,503 -3100411,135,140,275 -3100412,132,142,274 -3100413,271,273,544 -3100414,123,141,264 -3100415,141,143,284 -3100416,210,194,404 -3100417,233,221,454 -3100418,137,154,291 -3100419,144,160,304 -3100420,201,192,393 -3100421,294,276,570 -3100422,79,74,153 -3100423,128,140,268 -3100424,151,139,290 -3100425,162,150,312 -3100426,304,243,547 -3100427,196,190,386 -3100428,244,242,486 -3100429,140,118,258 -3100430,301,300,601 -3100431,268,259,527 -3100432,57,55,112 -3100433,231,219,450 -3100434,171,183,354 -3100435,183,191,374 -3100436,162,182,344 -3100437,3,0,3 -3100438,220,321,541 -3100439,243,238,481 -3100440,211,220,431 -3100441,144,173,317 -3100442,211,232,443 -3100443,164,190,354 -3100444,175,175,350 -3100501,185,189,374 -3100502,224,201,425 -3100503,171,150,321 -3100504,187,189,376 -3100505,135,145,280 -3100506,69,77,146 -3100507,217,239,456 -3100508,277,276,553 -3100509,168,165,333 -3100510,140,142,282 -3100601,182,240,422 -3100602,99,114,213 -3100603,187,157,344 -3100604,302,295,597 -3100605,125,142,267 -3100606,203,252,455 -3100607,148,154,302 -3100608,228,257,485 -3100609,256,252,508 -3100610,149,157,306 -3100611,228,226,454 -3100612,250,280,530 -3100613,287,303,590 -3100614,358,325,683 -3100615,291,295,586 -3100616,265,316,581 -3100617,221,245,466 -3100618,351,376,727 -3100619,264,250,514 -3100620,197,192,389 -3100621,347,352,699 -3100622,210,213,423 -3100623,194,202,396 -3100624,16,20,36 -3100701,121,141,262 -3100702,164,145,309 -3100703,240,258,498 -3100704,207,210,417 -3100705,201,217,418 -3100706,326,372,698 -3100707,197,186,383 -3100708,199,200,399 -3100709,190,223,413 -3100710,244,243,487 -3100711,181,200,381 -3100712,166,217,383 -3100713,306,334,640 -3100714,92,133,225 -3100715,294,324,618 -3100716,249,235,484 -3100717,115,132,247 -3100718,185,227,412 -3100719,206,217,423 -3100720,175,199,374 -3100721,152,177,329 -3100722,205,186,391 -3100723,149,135,284 -3100724,149,170,319 -3100725,292,347,639 -3100726,251,341,592 -3100727,142,182,324 -3100728,0,0,0 -3100729,0,0,0 -3100730,236,354,590 -3100731,259,313,572 -3100732,141,131,272 -3100733,142,130,272 -3100734,125,123,248 -3100735,243,226,469 -3100736,158,157,315 -3100737,143,181,324 -3100801,266,265,531 -3100802,217,203,420 -3100803,161,161,322 -3100804,206,189,395 -3100805,309,331,640 -3100806,230,252,482 -3100807,68,174,242 -3100808,268,348,616 -3100809,327,287,614 -3100810,269,326,595 -3100811,189,192,381 -3100812,182,220,402 -3100901,197,209,406 -3100902,232,238,470 -3100903,247,252,499 -3100904,238,273,511 -3100905,182,193,375 -3100906,302,278,580 -3100907,297,333,630 -3100908,250,259,509 -3100909,142,142,284 -3100910,126,116,242 -3100911,171,172,343 -3100912,170,179,349 -3100913,230,200,430 -3100914,262,254,516 -3100915,215,230,445 -3100916,252,257,509 -3100917,140,146,286 -3100918,384,401,785 -3100919,352,378,730 -3100920,222,240,462 -3100921,0,0,0 -3100922,287,290,577 -3100923,271,272,543 -3100924,297,296,593 -3100925,240,219,459 -3100926,367,345,712 -3100927,109,94,203 -3100928,276,269,545 -3100929,180,185,365 -3100930,134,145,279 -3101001,0,0,0 -3101002,150,148,298 -3101003,168,162,330 -3101004,110,121,231 -3101005,228,220,448 -3101006,113,134,247 -3101007,149,152,301 -3101008,260,252,512 -3101009,204,200,404 -3101010,151,158,309 -3101011,228,230,458 -3101012,212,215,427 -3101013,171,126,297 -3101014,170,170,340 -3101015,71,46,117 -3101016,196,212,408 -3101017,222,225,447 -3101018,173,175,348 -3101019,225,233,458 -3101020,210,241,451 -3101021,180,182,362 -3101022,78,82,160 -3101023,293,294,587 -3101024,137,108,245 -3101025,248,221,469 -3101101,215,219,434 -3101102,152,138,290 -3101103,123,111,234 -3101104,266,249,515 -3101105,131,132,263 -3101106,102,110,212 -3101107,227,220,447 -3101108,178,176,354 -3101109,114,104,218 -3101110,285,311,596 -3101111,409,431,840 -3101112,97,95,192 -3101113,224,241,465 -3101114,264,286,550 -3101115,207,213,420 -3101116,219,240,459 -3101201,363,326,689 -3101202,180,166,346 -3101203,290,272,562 -3101204,223,250,473 -3101205,437,466,903 -3101206,169,179,348 -3101207,364,392,756 -3101208,252,245,497 -3101209,275,273,548 -3101210,275,286,561 -3101211,250,261,511 -3101212,195,234,429 -3101213,264,267,531 -3101214,155,179,334 -3101215,162,154,316 -3101216,143,130,273 -3101217,170,176,346 -3101218,118,124,242 -3101219,229,233,462 -3101220,134,135,269 -3101221,235,209,444 -3101222,141,139,280 -3101223,167,182,349 -3101224,87,145,232 -3101225,115,129,244 -3101226,301,331,632 -3101227,162,160,322 -3101228,191,217,408 -3101229,243,251,494 -3101301,139,154,293 -3101302,154,179,333 -3101303,187,160,347 -3101304,286,301,587 -3101305,187,325,512 -3101306,203,185,388 -3101307,295,304,599 -3101308,177,194,371 -3101309,133,115,248 -3101310,182,197,379 -3101311,263,270,533 -3101312,232,230,462 -3101313,174,204,378 -3101314,176,244,420 -3101315,267,294,561 -3101316,150,222,372 -3101317,181,169,350 -3101318,295,312,607 -3101319,230,253,483 -3101320,244,276,520 -3101321,136,130,266 -3101322,305,318,623 -3101323,0,0,0 -3101324,257,247,504 -3101325,124,120,244 -3101326,150,141,291 -3101327,239,270,509 -3101328,246,242,488 -3101329,136,151,287 -3101330,257,257,514 -3101331,160,195,355 -3101332,221,237,458 -3101333,117,117,234 -3101334,266,331,597 -3101335,143,155,298 -3101336,140,249,389 -3101401,3,3,6 -3101402,0,0,0 -3101501,116,131,247 -3101502,255,276,531 -3101503,197,203,400 -3101504,207,203,410 -3101505,167,187,354 -3101506,132,134,266 -3101507,52,128,180 -3101508,212,264,476 -3101509,183,192,375 -3101510,191,219,410 -3101511,88,42,130 -3101512,262,226,488 -3101513,161,174,335 -3101514,201,176,377 -3101515,205,206,411 -3101516,193,164,357 -3101517,285,322,607 -3101518,176,162,338 -3101519,217,231,448 -3101601,337,391,728 -3101602,296,338,634 -3101603,345,377,722 -3101604,171,172,343 -3101605,138,162,300 -3101606,161,176,337 -3101607,223,238,461 -3101608,137,144,281 -3101609,222,245,467 -3101610,210,206,416 -3101611,187,212,399 -3101612,206,208,414 -3101613,310,300,610 -3101614,120,138,258 -3101615,181,163,344 -3101616,173,209,382 -3101617,259,268,527 -3101618,167,165,332 -3101619,261,269,530 -3101620,171,171,342 -3101621,122,199,321 -3101622,193,205,398 -3101623,250,261,511 -3101624,320,330,650 -3101701,13,8,21 -3101702,234,246,480 -3101703,256,290,546 -3101704,198,198,396 -3101705,95,112,207 -3101706,151,136,287 -3101707,245,253,498 -3101708,150,153,303 -3101709,163,158,321 -3101710,273,278,551 -3101711,194,170,364 -3101801,202,210,412 -3101802,291,286,577 -3101803,205,196,401 -3101804,201,197,398 -3101805,180,204,384 -3101806,235,246,481 -3101807,191,198,389 -3101808,203,221,424 -3101809,194,195,389 -3101810,161,168,329 -3101811,286,314,600 -3101812,211,197,408 -3101813,101,106,207 -3101814,153,140,293 -3101815,279,222,501 -3101816,164,152,316 -3101817,118,138,256 -3101818,235,249,484 -3101819,317,346,663 -3101820,171,192,363 -3101821,0,0,0 -3101822,114,135,249 -3101823,0,0,0 -3101824,0,3,3 -3101901,650,630,1280 -3101902,707,685,1392 -3101903,433,480,913 -3101904,364,369,733 -3101905,159,174,333 -3101906,192,199,391 -3101907,422,420,842 -3101908,130,146,276 -3101909,214,199,413 -3101910,159,178,337 -3101911,405,493,898 -3101912,0,0,0 -3102001,201,209,410 -3102002,276,322,598 -3102003,197,208,405 -3102004,278,272,550 -3102005,282,297,579 -3102006,299,341,640 -3102007,151,151,302 -3102008,202,270,472 -3102009,180,207,387 -3102010,235,282,517 -3102011,176,186,362 -3102012,148,167,315 -3102013,133,143,276 -3102014,251,235,486 -3102015,213,198,411 -3102016,170,163,333 -3102017,306,299,605 -3102018,153,156,309 -3102019,257,241,498 -3102020,234,241,475 -3102021,179,201,380 -3102022,221,198,419 -3102023,160,154,314 -3102024,212,223,435 -3102025,164,198,362 -3102026,137,135,272 -3102027,258,240,498 -3102028,246,259,505 -3102029,0,0,0 -3102030,211,206,417 -3102101,192,203,395 -3102102,198,222,420 -3102103,265,241,506 -3102104,235,220,455 -3102105,149,170,319 -3102106,268,266,534 -3102107,212,228,440 -3102108,206,180,386 -3102109,167,219,386 -3102110,151,162,313 -3102111,221,262,483 -3102112,11,3,14 -3102113,182,204,386 -3102114,245,247,492 -3102115,231,228,459 -3102116,259,234,493 -3102117,116,124,240 -3102118,177,181,358 -3102119,187,206,393 -3102120,169,198,367 -3102121,206,232,438 -3102122,147,193,340 -3102123,325,383,708 -3102124,262,268,530 -3102125,170,175,345 -3102126,170,202,372 -3102127,154,152,306 -3102128,153,187,340 -3102129,294,236,530 -3102130,282,306,588 -3102131,136,143,279 -3102132,204,183,387 -3102133,188,208,396 -3102134,128,124,252 -3102135,109,120,229 -3102136,85,95,180 -3102137,141,139,280 -3102201,4,0,4 -3102202,0,0,0 -3102203,490,489,979 -3102204,216,238,454 -3102205,177,195,372 -3102206,137,164,301 -3102207,158,164,322 -3102208,154,162,316 -3102209,135,134,269 -3102210,179,187,366 -3102211,220,216,436 -3102212,140,146,286 -3102213,158,152,310 -3102214,154,161,315 -3102215,266,268,534 -3102216,330,361,691 -3102217,128,166,294 -3102218,338,347,685 -3102219,7,4,11 -3102301,267,262,529 -3102302,172,182,354 -3102303,163,165,328 -3102304,266,287,553 -3102305,161,187,348 -3102306,140,142,282 -3102307,201,181,382 -3102308,248,254,502 -3102309,228,222,450 -3102310,159,174,333 -3102311,218,222,440 -3102312,210,221,431 -3102313,236,231,467 -3102314,122,146,268 -3102315,288,283,571 -3102316,162,166,328 -3102317,72,165,237 -3102318,183,185,368 -3102319,222,243,465 -3102401,262,297,559 -3102402,278,326,604 -3102403,168,198,366 -3102404,207,266,473 -3102405,573,593,1166 -3102406,179,169,348 -3102407,168,185,353 -3102408,325,336,661 -3102409,203,230,433 -3102410,92,248,340 -3102411,262,261,523 -3102412,174,261,435 -3102413,154,171,325 -3102414,249,211,460 -3102415,168,186,354 -3102416,0,0,0 -3102417,180,191,371 -3102501,217,201,418 -3102502,289,300,589 -3102503,343,379,722 -3102504,152,130,282 -3102505,229,212,441 -3102506,134,162,296 -3102507,203,230,433 -3102508,235,248,483 -3102509,259,264,523 -3102510,284,299,583 -3102511,179,209,388 -3102512,237,254,491 -3102513,160,179,339 -3102514,192,196,388 -3102515,205,187,392 -3102516,140,139,279 -3102517,148,157,305 -3102518,186,214,400 -3102519,264,302,566 -3102601,92,104,196 -3102602,246,257,503 -3102603,138,139,277 -3102604,164,201,365 -3102605,222,205,427 -3102606,148,172,320 -3102607,361,374,735 -3102608,202,218,420 -3102609,167,150,317 -3102610,187,197,384 -3102611,183,190,373 -3102612,190,199,389 -3102613,223,235,458 -3102614,206,220,426 -3102615,177,167,344 -3102616,238,259,497 -3102617,143,155,298 -3102618,188,190,378 -3102701,235,245,480 -3102702,196,213,409 -3102703,235,359,594 -3102704,117,141,258 -3102705,242,262,504 -3102706,179,236,415 -3102707,187,252,439 -3102708,178,164,342 -3102709,242,247,489 -3102710,184,163,347 -3102711,196,198,394 -3102712,125,120,245 -3102713,164,182,346 -3102714,223,234,457 -3102715,141,159,300 -3102716,162,171,333 -3102717,241,252,493 -3102718,270,296,566 -3102719,283,323,606 -3102720,0,0,0 -3102721,173,146,319 -3102722,154,175,329 -3102723,172,162,334 -3102724,204,239,443 -3102725,123,138,261 -3102726,204,195,399 -3102727,142,136,278 -3102728,135,153,288 -3102729,186,209,395 -3102730,180,193,373 -3102731,229,255,484 -3102732,113,119,232 -3102733,132,157,289 -3102801,346,365,711 -3102802,169,418,587 -3102803,262,281,543 -3102804,107,117,224 -3102805,358,322,680 -3102806,160,182,342 -3102807,159,172,331 -3102808,162,175,337 -3102809,214,272,486 -3102810,166,182,348 -3102811,194,213,407 -3102812,11,3,14 -3102813,259,259,518 -3102814,245,283,528 -3102815,184,178,362 -3102816,230,246,476 -3102817,232,283,515 -3102818,226,224,450 -3102819,148,168,316 -3102901,108,129,237 -3102902,242,252,494 -3102903,163,177,340 -3102904,200,203,403 -3102905,217,236,453 -3102906,107,117,224 -3102907,222,232,454 -3102908,220,232,452 -3102909,246,256,502 -3102910,178,186,364 -3102911,194,185,379 -3102912,260,268,528 -3102913,161,179,340 -3102914,20,0,20 -3102915,163,193,356 -3102916,0,0,0 -3102917,274,304,578 -3103001,263,267,530 -3103002,272,274,546 -3103003,104,110,214 -3103004,218,216,434 -3103005,206,218,424 -3103006,189,237,426 -3103007,9,5,14 -3103008,191,212,403 -3103009,273,303,576 -3103010,188,202,390 -3103011,176,165,341 -3103101,254,287,541 -3103102,257,283,540 -3103103,173,186,359 -3103104,0,0,0 -3103105,207,241,448 -3103106,152,160,312 -3103107,175,157,332 -3103108,272,312,584 -3103109,166,161,327 -3103110,299,319,618 -3103111,308,295,603 -3103112,270,280,550 -3103113,105,119,224 -3103114,194,206,400 -3103115,266,282,548 -3103116,272,279,551 -3103117,165,167,332 -3103118,191,197,388 -3103119,144,174,318 -3103120,178,236,414 -3103121,166,156,322 -3103122,226,229,455 -3103123,168,175,343 -3103124,143,140,283 -3103125,163,156,319 -3103126,192,186,378 -3103127,258,263,521 -3103128,162,160,322 -3103129,175,168,343 -3103130,164,163,327 -3103131,185,186,371 -3103132,121,128,249 -3103201,200,240,440 -3103202,135,175,310 -3103203,232,256,488 -3103204,176,204,380 -3103205,192,198,390 -3103206,114,117,231 -3103207,0,0,0 -3103208,121,147,268 -3103209,142,160,302 -3103210,194,195,389 -3103211,124,155,279 -3103212,263,253,516 -3103213,141,130,271 -3103214,234,245,479 -3103215,203,209,412 -3103216,145,156,301 -3103217,114,144,258 -3103218,176,153,329 -3103301,211,226,437 -3103302,213,212,425 -3103303,204,204,408 -3103304,263,319,582 -3103305,157,174,331 -3103306,168,175,343 -3103307,171,175,346 -3103308,174,205,379 -3103309,252,275,527 -3103310,299,290,589 -3103311,186,231,417 -3103312,268,285,553 -3103313,155,185,340 -3103314,159,168,327 -3103315,241,243,484 -3103316,141,146,287 -3103401,135,147,282 -3103402,185,205,390 -3103403,232,262,494 -3103404,164,182,346 -3103405,217,216,433 -3103406,300,311,611 -3103407,135,152,287 -3103408,142,162,304 -3103409,168,228,396 -3103410,219,200,419 -3103411,274,322,596 -3103412,138,138,276 -3103413,286,288,574 -3103414,171,171,342 -3103415,273,295,568 -3103416,204,218,422 -3103417,150,164,314 -3103418,163,173,336 -3103419,167,175,342 -3103420,140,155,295 -3103421,180,168,348 -3103422,214,222,436 -3103423,297,327,624 -3103501,175,167,342 -3103502,211,215,426 -3103503,233,220,453 -3103504,215,199,414 -3103505,259,245,504 -3103506,313,322,635 -3103507,206,202,408 -3103508,194,204,398 -3103509,218,217,435 -3103510,68,106,174 -3103511,215,224,439 -3103512,315,20,335 -3103513,246,233,479 -3103514,174,185,359 -3103515,162,152,314 -3103516,171,123,294 -3103517,203,203,406 -3103518,228,294,522 -3103519,314,317,631 -3103520,286,283,569 -3103521,0,0,0 -3103522,110,113,223 -3103601,53,37,90 -3103701,146,113,259 -3103702,0,0,0 -3103801,132,123,255 -3103802,260,270,530 -3103803,270,272,542 -3103804,213,227,440 -3103805,230,259,489 -3103806,188,243,431 -3103807,204,184,388 -3103808,316,321,637 -3103809,177,151,328 -3103810,176,150,326 -3103811,142,113,255 -3103812,224,206,430 -3103813,21,11,32 -3103814,262,266,528 -3103815,116,140,256 -3103816,267,225,492 -3103901,0,0,0 -3103902,0,0,0 -3103903,121,114,235 -3103904,165,160,325 -3103905,188,199,387 -3103906,214,211,425 -3103907,358,391,749 -3103908,202,212,414 -3103909,25,6,31 -3103910,0,0,0 -3103911,147,121,268 -3103912,126,106,232 -3103913,134,127,261 -3103914,344,516,860 -3103915,187,178,365 -3103916,275,272,547 -3103917,263,228,491 -3103918,242,242,484 -3103919,243,234,477 -3103920,255,260,515 -3103921,287,293,580 -3103922,299,308,607 -3103923,228,247,475 -3104001,201,193,394 -3104002,139,129,268 -3104003,283,281,564 -3104004,294,320,614 -3104005,343,351,694 -3104006,328,315,643 -3104007,200,190,390 -3104008,237,251,488 -3104009,235,235,470 -3104010,237,211,448 -3104011,216,244,460 -3104012,154,177,331 -3104013,169,182,351 -3104014,231,233,464 -3104015,364,344,708 -3104016,0,0,0 -3104017,241,219,460 -3104018,107,124,231 -3104019,253,232,485 -3104020,231,261,492 -3104021,165,192,357 -3104022,169,168,337 -3104023,341,403,744 -3104101,192,195,387 -3104102,270,292,562 -3104103,217,197,414 -3104104,152,175,327 -3104105,147,179,326 -3104106,149,145,294 -3104107,153,136,289 -3104108,249,275,524 -3104109,210,201,411 -3104110,167,171,338 -3104111,256,274,530 -3104112,267,256,523 -3104113,193,178,371 -3104114,161,147,308 -3104115,207,204,411 -3104116,516,564,1080 -3104117,292,296,588 -3104118,217,205,422 -3104119,214,222,436 -3104120,127,125,252 -3104121,360,368,728 -3104122,138,157,295 -3104123,214,222,436 -3104124,111,110,221 -3104125,204,239,443 -3104126,431,467,898 -3104127,198,244,442 -3104128,240,293,533 -3104129,166,192,358 -3104130,263,283,546 -3104131,291,312,603 -3104132,148,139,287 -3104133,281,292,573 -3104134,167,174,341 -3104135,435,450,885 -3104136,195,221,416 -3104201,206,182,388 -3104202,191,203,394 -3104203,352,354,706 -3104204,147,174,321 -3104205,179,203,382 -3104206,133,139,272 -3104207,167,184,351 -3104208,188,232,420 -3104209,176,187,363 -3104210,161,184,345 -3104211,255,287,542 -3104212,217,215,432 -3104213,229,230,459 -3104214,238,219,457 -3104215,206,204,410 -3104216,208,236,444 -3104217,283,279,562 -3104218,157,138,295 -3104219,179,196,375 -3104220,266,267,533 -3104221,155,172,327 -3104222,0,0,0 -3104223,123,111,234 -3104301,103,105,208 -3104302,246,320,566 -3104303,287,264,551 -3104304,185,211,396 -3104305,185,207,392 -3104306,324,336,660 -3104307,117,109,226 -3104308,209,219,428 -3104309,11,22,33 -3104401,139,135,274 -3104402,130,153,283 -3104403,174,165,339 -3104404,185,181,366 -3104405,124,138,262 -3104406,156,170,326 -3104407,299,322,621 -3104408,228,194,422 -3104409,189,182,371 -3104410,252,238,490 -3104411,205,211,416 -3104412,224,215,439 -3104413,63,43,106 -3104414,177,258,435 -3104415,155,182,337 -3104416,111,116,227 -3104417,145,125,270 -3104418,0,0,0 -3104419,265,275,540 -3104501,161,174,335 -3104502,288,354,642 -3104503,296,323,619 -3104504,231,296,527 -3104505,253,293,546 -3104506,235,255,490 -3104507,287,301,588 -3104508,266,289,555 -3104509,227,243,470 -3104510,189,185,374 -3104511,298,303,601 -3104512,145,173,318 -3104513,184,316,500 -3104514,200,199,399 -3104515,243,279,522 -3104516,186,224,410 -3104517,231,285,516 -3104518,199,302,501 -3104601,116,186,302 -3104602,150,138,288 -3104603,179,188,367 -3104604,132,147,279 -3104605,255,250,505 -3104606,214,174,388 -3104607,170,210,380 -3104608,250,212,462 -3104609,227,265,492 -3104610,184,243,427 -3104611,247,235,482 -3104612,130,148,278 -3104613,191,185,376 -3104614,159,185,344 -3104615,160,135,295 -3104616,215,249,464 -3104617,147,165,312 -3104618,223,221,444 -3104619,232,226,458 -3104620,184,202,386 -3104621,3,3,6 -3104622,174,194,368 -3104701,242,262,504 -3104702,252,239,491 -3104703,194,185,379 -3104704,156,205,361 -3104705,236,251,487 -3104706,0,0,0 -3104707,163,165,328 -3104708,159,181,340 -3104709,323,311,634 -3104710,180,202,382 -3104711,224,228,452 -3104712,250,237,487 -3104713,278,265,543 -3104714,256,257,513 -3104715,198,228,426 -3104716,137,143,280 -3104717,209,211,420 -3104718,112,105,217 -3104719,286,290,576 -3104720,255,296,551 -3104721,199,225,424 -3104722,217,224,441 -3104723,229,265,494 -3104724,269,274,543 -3104725,130,138,268 -3104801,0,0,0 -3104802,127,113,240 -3104803,216,226,442 -3104804,170,190,360 -3104805,152,147,299 -3104806,151,138,289 -3104807,252,259,511 -3104808,188,170,358 -3104809,254,270,524 -3104810,204,210,414 -3104811,213,229,442 -3104812,214,216,430 -3104813,108,60,168 -3104814,13,19,32 -3104901,237,258,495 -3104902,4,4,8 -3104903,226,220,446 -3104904,205,198,403 -3104905,162,167,329 -3104906,201,220,421 -3104907,232,213,445 -3104908,152,187,339 -3104909,173,163,336 -3104910,308,321,629 -3104911,147,148,295 -3104912,154,164,318 -3104913,244,235,479 -3104914,244,328,572 -3104915,149,166,315 -3104916,182,177,359 -3104917,200,212,412 -3104918,254,299,553 -3104919,189,255,444 -3104920,209,281,490 -3104921,158,157,315 -3104922,273,345,618 -3104923,253,314,567 -3104924,320,390,710 -3105001,215,255,470 -3105002,206,208,414 -3105003,218,273,491 -3105004,195,223,418 -3105005,151,175,326 -3105006,162,175,337 -3105007,192,204,396 -3105008,216,255,471 -3105009,185,181,366 -3105010,233,255,488 -3105011,165,165,330 -3105012,209,242,451 -3105013,73,74,147 -3105014,242,242,484 -3105015,233,285,518 -3105016,0,0,0 -3105101,156,171,327 -3105102,249,267,516 -3105103,245,266,511 -3105104,202,205,407 -3105105,168,178,346 -3105106,265,310,575 -3105107,170,171,341 -3105108,148,152,300 -3105109,103,96,199 -3105110,297,285,582 -3105111,118,147,265 -3105112,164,142,306 -3105113,276,311,587 -3105114,139,137,276 -3105115,116,101,217 -3105116,119,131,250 -3105117,164,190,354 -3105118,188,293,481 -3105119,221,253,474 -3105120,183,189,372 -3105121,279,323,602 -3105122,161,159,320 -3105123,98,110,208 -3105124,168,183,351 -3105125,275,293,568 -3105126,190,241,431 -3105127,239,241,480 -3105128,248,280,528 -3105129,3,4,7 -3105130,128,130,258 -3105131,157,169,326 -3105132,229,306,535 -3105133,0,0,0 -3105134,149,150,299 -3105135,223,195,418 -3105136,119,138,257 -3105137,247,248,495 -3105138,240,228,468 -3105139,235,232,467 -3105140,184,166,350 -3105141,270,244,514 -3105201,220,250,470 -3105202,251,251,502 -3105203,173,148,321 -3105204,254,260,514 -3105205,268,282,550 -3105206,211,227,438 -3105207,147,163,310 -3105208,188,182,370 -3105209,200,223,423 -3105210,141,169,310 -3105211,181,197,378 -3105212,197,185,382 -3105213,231,216,447 -3105214,136,148,284 -3105215,118,119,237 -3105216,176,158,334 -3105217,208,201,409 -3105218,166,177,343 -3105219,346,361,707 -3105220,394,360,754 -3105221,358,331,689 -3105222,192,179,371 -3105223,158,168,326 -3105224,213,214,427 -3105225,193,182,375 -3105301,191,205,396 -3105302,229,287,516 -3105303,252,225,477 -3105304,0,0,0 -3105305,180,152,332 -3105306,319,315,634 -3105307,203,203,406 -3105308,299,306,605 -3105309,192,167,359 -3105310,192,213,405 -3105311,145,169,314 -3105312,234,232,466 -3105313,157,153,310 -3105314,163,189,352 -3105315,166,180,346 -3105316,271,310,581 -3105317,140,143,283 -3105318,157,172,329 -3105319,187,190,377 -3105320,226,225,451 -3105321,187,197,384 -3105322,146,166,312 -3105323,178,189,367 -3105324,181,207,388 -3105325,168,166,334 -3105326,295,319,614 -3105327,141,168,309 -3105328,183,210,393 -3105329,233,235,468 -3105330,193,209,402 -3105331,205,213,418 -3105332,213,210,423 -3105333,213,196,409 -3105334,208,207,415 -3105335,158,141,299 -3105336,330,342,672 -3105337,208,178,386 -3105401,85,83,168 -3105402,153,165,318 -3105403,249,246,495 -3105404,276,299,575 -3105405,149,152,301 -3105406,242,231,473 -3105407,200,190,390 -3105408,225,214,439 -3105409,185,146,331 -3105410,270,267,537 -3105501,174,197,371 -3105502,189,204,393 -3105503,131,135,266 -3105504,209,194,403 -3105505,297,250,547 -3105506,206,225,431 -3105507,151,172,323 -3105508,247,260,507 -3105509,132,138,270 -3105510,129,195,324 -3105511,165,160,325 -3105512,182,195,377 -3105513,110,113,223 -3105514,100,112,212 -3105515,155,166,321 -3105516,137,131,268 -3105517,240,251,491 -3105518,276,285,561 -3105519,203,201,404 -3105520,117,96,213 -3105521,160,153,313 -3105522,281,283,564 -3105523,215,223,438 -3105601,229,244,473 -3105602,112,112,224 -3105603,205,236,441 -3105604,113,122,235 -3105605,126,136,262 -3105606,101,110,211 -3105607,195,212,407 -3105608,246,264,510 -3105609,147,149,296 -3105610,184,183,367 -3105611,122,136,258 -3105612,209,201,410 -3105613,227,260,487 -3105614,262,279,541 -3105615,189,215,404 -3105616,177,208,385 -3105617,204,204,408 -3105618,180,249,429 -3105619,175,140,315 -3105620,157,171,328 -3105621,202,236,438 -3105701,188,171,359 -3105702,128,141,269 -3105703,127,123,250 -3105704,210,239,449 -3105705,284,333,617 -3105706,252,241,493 -3105707,149,131,280 -3105708,112,122,234 -3105709,217,239,456 -3105710,171,187,358 -3105711,135,132,267 -3105712,222,207,429 -3105713,186,162,348 -3105714,299,277,576 -3105715,113,113,226 -3105716,180,177,357 -3105801,84,104,188 -3105802,39,22,61 -3105803,12,3,15 -3105804,191,146,337 -3105805,206,163,369 -3105806,244,255,499 -3105807,245,223,468 -3105808,231,203,434 -3105809,216,191,407 -3105810,268,225,493 -3105811,124,120,244 -3105812,216,196,412 -3105813,476,387,863 -3105901,149,138,287 -3105902,148,153,301 -3105903,0,0,0 -3105904,159,151,310 -3105905,275,266,541 -3105906,199,193,392 -3105907,115,116,231 -3105908,205,191,396 -3105909,175,167,342 -3105910,0,0,0 -3105911,170,186,356 -3105912,110,118,228 -3105913,198,219,417 -3105914,220,223,443 -3105915,119,156,275 -3105916,176,199,375 -3105917,175,171,346 -3105918,210,242,452 -3105919,218,231,449 -3105920,152,140,292 -3105921,127,130,257 -3105922,259,262,521 -3105923,144,174,318 -3105924,421,438,859 -3106001,174,165,339 -3106002,280,259,539 -3106003,185,181,366 -3106004,281,263,544 -3106005,171,178,349 -3106006,331,372,703 -3106007,360,371,731 -3106008,165,164,329 -3106009,240,246,486 -3106010,187,189,376 -3106011,233,249,482 -3106012,303,344,647 -3106013,200,201,401 -3106014,251,267,518 -3106015,131,160,291 -3106016,137,138,275 -3106017,219,242,461 -3106018,322,312,634 -3106019,391,415,806 -3106020,175,181,356 -3106021,238,313,551 -3106022,151,134,285 -3106023,243,239,482 -3106024,179,178,357 -3106025,125,125,250 -3106026,269,285,554 -3106027,120,116,236 -3106028,247,268,515 -3106029,175,185,360 -3106030,245,113,358 -3106031,238,258,496 -3106032,0,0,0 -3106101,339,320,659 -3106102,248,235,483 -3106103,137,131,268 -3106104,258,279,537 -3106105,259,291,550 -3106106,180,181,361 -3106107,226,231,457 -3106108,189,214,403 -3106109,237,278,515 -3106110,100,124,224 -3106111,256,273,529 -3106112,281,322,603 -3106201,6,16,22 -3106202,139,189,328 -3106203,214,259,473 -3106204,189,169,358 -3106205,197,192,389 -3106206,212,240,452 -3106207,334,322,656 -3106208,222,244,466 -3106209,132,132,264 -3106210,217,200,417 -3106211,215,223,438 -3106212,174,175,349 -3106213,196,187,383 -3106214,125,152,277 -3106215,178,214,392 -3106216,164,194,358 -3106217,192,256,448 -3106218,223,267,490 -3106219,338,325,663 -3106220,329,346,675 -3106221,0,0,0 -3106222,96,104,200 -3106301,156,167,323 -3106302,285,298,583 -3106303,164,143,307 -3106304,154,176,330 -3106305,270,281,551 -3106306,267,278,545 -3106307,241,240,481 -3106308,339,267,606 -3106309,0,0,0 -3106310,249,353,602 -3106311,190,225,415 -3106312,170,214,384 -3106313,187,199,386 -3106314,265,286,551 -3106315,210,222,432 -3106316,204,225,429 -3106317,171,186,357 -3106318,223,257,480 -3106319,214,207,421 -3106320,171,220,391 -3106321,292,267,559 -3106322,261,275,536 -3106323,279,267,546 -3106324,159,147,306 -3106325,212,213,425 -3106326,217,199,416 -3106327,337,317,654 -3106328,160,151,311 -3106329,259,237,496 -3106330,334,355,689 -3106331,127,128,255 -3106332,169,188,357 -3106401,235,238,473 -3106402,208,220,428 -3106403,115,120,235 -3106404,167,158,325 -3106405,329,332,661 -3106406,168,193,361 -3106407,247,244,491 -3106408,126,126,252 -3106409,108,130,238 -3106410,123,134,257 -3106411,190,156,346 -3106501,147,151,298 -3106502,227,227,454 -3106503,255,238,493 -3106504,267,313,580 -3106505,201,185,386 -3106506,166,167,333 -3106507,215,202,417 -3106508,266,277,543 -3106509,230,208,438 -3106510,247,323,570 -3106511,4,0,4 -3106512,145,288,433 -3106513,259,223,482 -3106514,240,219,459 -3106515,273,261,534 -3106516,249,265,514 -3106517,327,331,658 -3106518,204,199,403 -3106519,164,211,375 -3106520,239,237,476 -3106601,297,301,598 -3106602,177,195,372 -3106603,136,165,301 -3106604,167,189,356 -3106605,225,191,416 -3106606,119,140,259 -3106607,263,255,518 -3106608,266,295,561 -3106609,142,186,328 -3106610,200,216,416 -3106611,295,271,566 -3106612,242,246,488 -3106613,175,300,475 -3106614,223,241,464 -3106615,215,252,467 -3106616,267,297,564 -3106617,298,338,636 -3106618,224,224,448 -3106619,174,166,340 -3106620,109,128,237 -3106621,192,201,393 -3106622,123,138,261 -3106623,84,125,209 -3106624,175,190,365 -3106625,204,224,428 -3106701,162,177,339 -3106702,162,132,294 -3106703,243,235,478 -3106704,257,198,455 -3106705,164,149,313 -3106706,165,199,364 -3106707,163,133,296 -3106708,188,178,366 -3106709,192,219,411 -3106710,202,220,422 -3106711,5,4,9 -3106712,128,107,235 -3106713,171,162,333 -3106714,117,122,239 -3106801,250,256,506 -3106802,222,224,446 -3106803,317,319,636 -3106804,235,239,474 -3106805,257,242,499 -3106806,11,5,16 -3106807,301,278,579 -3106808,293,322,615 -3106809,201,194,395 -3106810,203,217,420 -3106811,302,276,578 -3106812,313,272,585 -3106813,157,165,322 -3106814,268,297,565 -3106815,124,140,264 -3106816,223,223,446 -3106817,160,181,341 -3106818,259,249,508 -3106819,265,289,554 -3106820,92,106,198 -3106821,265,272,537 -3106822,256,236,492 -3106901,271,277,548 -3106902,122,118,240 -3106903,272,230,502 -3106904,189,154,343 -3106905,155,216,371 -3106906,200,202,402 -3106907,134,185,319 -3106908,104,110,214 -3106909,199,221,420 -3106910,154,162,316 -3106911,180,175,355 -3106912,193,225,418 -3106913,227,194,421 -3107001,157,175,332 -3107002,170,146,316 -3107003,134,122,256 -3107004,134,121,255 -3107005,179,179,358 -3107006,0,0,0 -3107007,266,248,514 -3107008,277,250,527 -3107009,288,271,559 -3107010,245,227,472 -3107011,157,197,354 -3107012,283,229,512 -3107013,219,244,463 -3107014,180,141,321 -3107015,98,101,199 -3107016,246,262,508 -3107017,194,217,411 -3107018,212,216,428 -3107019,198,173,371 -3107101,191,216,407 -3107102,218,231,449 -3107103,258,270,528 -3107104,96,111,207 -3107105,265,271,536 -3107106,137,156,293 -3107107,325,312,637 -3107108,130,132,262 -3107109,321,315,636 -3107110,205,197,402 -3107111,283,296,579 -3107112,126,137,263 -3107113,265,312,577 -3107114,216,207,423 -3107115,211,224,435 -3107116,176,199,375 -3107117,332,341,673 -3107118,156,195,351 -3107119,237,279,516 -3107120,191,196,387 -3107121,230,228,458 -3107122,281,291,572 -3107201,251,265,516 -3107202,242,235,477 -3107203,362,430,792 -3107204,500,415,915 -3107205,258,288,546 -3107206,118,140,258 -3107207,189,209,398 -3107208,158,161,319 -3107209,188,216,404 -3107210,225,241,466 -3107211,214,236,450 -3107212,226,235,461 -3107213,278,305,583 -3107214,317,349,666 -3107215,272,276,548 -3107216,218,239,457 -3107301,19,16,35 -3107302,190,204,394 -3107303,171,201,372 -3107304,130,137,267 -3107305,224,230,454 -3107306,545,608,1153 -3107307,256,269,525 -3107308,129,137,266 -3107309,165,170,335 -3107310,234,199,433 -3107311,259,268,527 -3107312,150,168,318 -3107313,188,212,400 -3107314,0,0,0 -3107315,276,269,545 -3107316,238,243,481 -3107317,89,110,199 -3107318,185,192,377 -3107319,195,227,422 -3107320,220,214,434 -3107321,224,262,486 -3107322,268,263,531 -3107323,247,258,505 -3107324,265,294,559 -3107325,329,404,733 -3107326,192,207,399 -3107327,215,222,437 -3107328,257,251,508 -3107329,288,293,581 -3107330,356,346,702 -3107331,390,383,773 -3107332,220,256,476 -3107333,300,317,617 -3107334,446,429,875 -3107335,367,418,785 -3107336,516,516,1032 -3107337,288,252,540 -3107401,0,0,0 -3107402,243,232,475 -3107403,322,370,692 -3107404,106,98,204 -3107405,104,89,193 -3107406,905,916,1821 -3107407,208,204,412 -3107408,3,0,3 -3107501,256,266,522 -3107502,371,340,711 -3107503,304,298,602 -3107504,201,200,401 -3107505,331,311,642 -3107506,369,366,735 -3107507,320,335,655 -3107508,195,239,434 -3107509,205,195,400 -3107510,284,273,557 -3107511,283,275,558 -3107512,128,131,259 -3107513,174,184,358 -3107514,0,0,0 -3107515,304,276,580 -3107516,185,206,391 -3107517,190,193,383 -3107518,163,176,339 -3107519,253,221,474 -3107520,150,170,320 -3107521,136,131,267 -3107522,382,423,805 -3107523,249,272,521 -3107524,274,271,545 -3107525,251,273,524 -3107526,237,256,493 -3107527,200,217,417 -3107528,150,202,352 -3107529,192,210,402 -3107530,152,151,303 -3107531,174,154,328 -3107532,71,70,141 -3107601,147,112,259 -3107602,6,0,6 -3107603,103,93,196 -3107604,151,160,311 -3107605,3,0,3 -3107606,114,139,253 -3107607,270,268,538 -3107608,261,265,526 -3107609,127,150,277 -3107610,206,196,402 -3107611,170,174,344 -3107612,124,142,266 -3107613,185,154,339 -3107614,207,199,406 -3107615,144,147,291 -3107616,134,117,251 -3107617,186,193,379 -3107618,296,285,581 -3107619,157,171,328 -3107620,166,162,328 -3107621,103,102,205 -3107622,165,159,324 -3107623,177,181,358 -3107624,129,106,235 -3107625,3,0,3 -3107626,179,133,312 -3107627,113,115,228 -3107628,183,140,323 -3107629,225,196,421 -3107630,4,0,4 -3107631,6,7,13 -3107632,11,0,11 -3107701,296,302,598 -3107702,262,272,534 -3107703,225,250,475 -3107704,254,259,513 -3107705,298,315,613 -3107706,155,143,298 -3107707,369,420,789 -3107708,319,306,625 -3107709,144,145,289 -3107710,349,364,713 -3107711,97,96,193 -3107712,147,165,312 -3107713,106,105,211 -3107714,169,191,360 -3107715,114,117,231 -3107716,239,291,530 -3107717,235,250,485 -3107801,160,146,306 -3107802,252,273,525 -3107803,268,268,536 -3107804,274,293,567 -3107805,157,172,329 -3107806,274,269,543 -3107807,135,143,278 -3107808,220,214,434 -3107809,113,127,240 -3107810,308,338,646 -3107811,176,186,362 -3107812,275,234,509 -3107813,154,160,314 -3107814,340,304,644 -3107815,231,228,459 -3107816,189,197,386 -3107817,218,209,427 -3107818,145,131,276 -3107819,158,170,328 -3107820,179,160,339 -3107821,183,201,384 -3107822,238,230,468 -3107823,180,183,363 -3107824,241,219,460 -3107825,187,195,382 -3107826,238,225,463 -3107827,222,261,483 -3107828,206,215,421 -3107829,223,217,440 -3107830,124,133,257 -3107831,144,151,295 -3107832,254,243,497 -3107901,194,182,376 -3107902,198,217,415 -3107903,284,301,585 -3107904,153,155,308 -3107905,264,258,522 -3107906,105,103,208 -3107907,166,167,333 -3107908,195,194,389 -3107909,258,236,494 -3107910,205,236,441 -3107911,184,220,404 -3107912,191,170,361 -3107913,200,216,416 -3107914,136,138,274 -3107915,329,288,617 -3107916,165,199,364 -3107917,111,110,221 -3107918,285,294,579 -3107919,209,233,442 -3107920,186,173,359 -3108001,133,156,289 -3108002,88,80,168 -3108003,128,134,262 -3108004,256,251,507 -3108005,262,250,512 -3108006,285,270,555 -3108007,301,301,602 -3108008,232,273,505 -3108009,225,265,490 -3108010,276,269,545 -3108011,302,275,577 -3108012,132,123,255 -3108013,318,317,635 -3108014,206,214,420 -3108015,179,226,405 -3108016,244,238,482 -3108017,288,236,524 -3108018,242,237,479 -3108019,197,214,411 -3108020,150,153,303 -3108021,115,130,245 -3108022,243,259,502 -3108023,247,323,570 -3108024,233,190,423 -3108025,264,263,527 -3108026,151,179,330 -3108027,209,206,415 -3108028,253,224,477 -3108029,268,244,512 -3108030,189,202,391 -3108031,285,251,536 -3108032,98,144,242 -3108033,184,196,380 -3108034,124,141,265 -3108035,198,232,430 -3108036,231,210,441 -3108037,117,129,246 -3108038,211,224,435 -3108039,286,267,553 -3108101,215,216,431 -3108102,190,197,387 -3108103,142,177,319 -3108104,276,263,539 -3108105,244,330,574 -3108106,223,250,473 -3108107,185,211,396 -3108108,187,207,394 -3108109,192,183,375 -3108110,0,0,0 -3108111,0,0,0 -3108112,229,270,499 -3108113,181,203,384 -3108114,124,126,250 -3108115,263,231,494 -3108116,123,119,242 -3108117,188,190,378 -3108118,171,169,340 -3108119,204,191,395 -3108120,191,211,402 -3108201,107,104,211 -3108202,121,126,247 -3108203,119,128,247 -3108204,198,200,398 -3108205,99,123,222 -3108206,126,142,268 -3108207,270,263,533 -3108208,171,186,357 -3108209,176,214,390 -3108210,243,223,466 -3108211,235,248,483 -3108212,198,205,403 -3108213,285,275,560 -3108214,161,178,339 -3108215,129,143,272 -3108216,161,158,319 -3108217,184,161,345 -3108218,125,116,241 -3108219,225,202,427 -3108220,181,173,354 -3108301,0,0,0 -3108302,277,291,568 -3108303,158,165,323 -3108304,211,251,462 -3108305,158,149,307 -3108306,144,159,303 -3108307,109,115,224 -3108308,161,161,322 -3108309,202,189,391 -3108310,198,175,373 -3108311,266,276,542 -3108401,303,297,600 -3108402,145,146,291 -3108403,251,244,495 -3108404,325,337,662 -3108405,0,0,0 -3108406,0,0,0 -3108407,134,127,261 -3108408,259,273,532 -3108409,167,374,541 -3108410,124,128,252 -3108411,256,278,534 -3108412,242,263,505 -3108413,278,285,563 -3108414,138,154,292 -3108415,133,132,265 -3108416,163,189,352 -3108417,235,234,469 -3108418,190,235,425 -3108419,91,86,177 -3108420,3,3,6 -3108421,204,217,421 -3108422,227,253,480 -3108423,195,228,423 -3108424,225,242,467 -3108425,222,269,491 -3108501,254,236,490 -3108502,142,153,295 -3108503,190,174,364 -3108504,182,198,380 -3108505,189,184,373 -3108506,216,197,413 -3108507,269,248,517 -3108508,150,154,304 -3108509,239,234,473 -3108510,173,159,332 -3108511,202,234,436 -3108601,213,221,434 -3108602,385,412,797 -3108603,150,133,283 -3108604,201,215,416 -3108605,277,277,554 -3108606,289,319,608 -3108607,332,375,707 -3108608,340,359,699 -3108609,224,204,428 -3108610,120,147,267 -3108611,154,141,295 -3108612,234,235,469 -3108613,256,239,495 -3108614,274,291,565 -3108615,201,223,424 -3108616,461,435,896 -3108617,322,362,684 -3108701,20,24,44 -3108702,183,191,374 -3108703,175,202,377 -3108704,170,191,361 -3108705,314,303,617 -3108706,119,224,343 -3108707,129,112,241 -3108708,163,165,328 -3108709,106,105,211 -3108710,188,200,388 -3108711,250,205,455 -3108712,79,119,198 -3108713,175,185,360 -3108714,155,153,308 -3108715,151,160,311 -3108716,305,284,589 -3108717,196,202,398 -3108718,136,135,271 -3108719,130,226,356 -3108720,212,198,410 -3108801,207,195,402 -3108802,112,132,244 -3108803,176,190,366 -3108804,203,219,422 -3108805,252,275,527 -3108806,200,203,403 -3108807,141,126,267 -3108808,209,226,435 -3108809,251,292,543 -3108810,225,242,467 -3108811,264,284,548 -3108812,305,309,614 -3108813,166,187,353 -3108814,238,272,510 -3108815,301,312,613 -3108816,125,126,251 -3108817,271,266,537 -3108818,138,133,271 -3108819,240,255,495 -3108820,248,269,517 -3108821,140,137,277 -3108822,151,170,321 -3108823,256,269,525 -3108824,133,120,253 -3108901,266,263,529 -3108902,408,427,835 -3108903,140,134,274 -3108904,288,317,605 -3108905,180,166,346 -3108906,240,230,470 -3108907,180,201,381 -3108908,104,107,211 -3109001,250,288,538 -3109002,209,207,416 -3109003,105,95,200 -3109004,125,129,254 -3109005,282,325,607 -3109006,179,192,371 -3109007,254,289,543 -3109008,185,183,368 -3109009,205,227,432 -3109010,306,315,621 -3109011,296,312,608 -3109012,207,205,412 -3109013,115,116,231 -3109014,133,143,276 -3109015,113,104,217 -3109016,204,223,427 -3109017,296,321,617 -3109018,350,354,704 -3109019,310,330,640 -3109101,127,176,303 -3109102,88,90,178 -3109103,204,202,406 -3109104,174,182,356 -3109105,298,284,582 -3109106,345,334,679 -3109107,252,248,500 -3109108,298,299,597 -3109109,182,199,381 -3109110,251,240,491 -3109111,280,280,560 -3109112,154,172,326 -3109201,105,112,217 -3109202,240,269,509 -3109203,134,139,273 -3109204,142,146,288 -3109205,233,227,460 -3109206,146,150,296 -3109207,166,160,326 -3109208,243,274,517 -3109209,277,328,605 -3109210,163,179,342 -3109211,284,297,581 -3109212,89,87,176 -3109213,221,243,464 -3109214,259,278,537 -3109215,211,186,397 -3109216,290,292,582 -3109301,252,270,522 -3109302,143,161,304 -3109303,247,225,472 -3109304,0,0,0 -3109305,192,248,440 -3109306,227,252,479 -3109307,187,213,400 -3109308,189,273,462 -3109309,231,240,471 -3109310,129,132,261 -3109311,222,213,435 -3109312,225,230,455 -3109401,245,313,558 -3109402,222,200,422 -3109403,147,122,269 -3109404,286,312,598 -3109405,0,0,0 -3109406,143,145,288 -3109407,220,223,443 -3109408,249,219,468 -3109409,177,215,392 -3109410,151,156,307 -3109411,241,250,491 -3109412,214,208,422 -3109413,199,185,384 -3109414,165,153,318 -3109415,270,377,647 -3109416,148,143,291 -3109417,283,281,564 -3109418,143,149,292 -3109419,149,129,278 -3109420,206,218,424 -3109421,156,149,305 -3109422,79,67,146 -3109423,147,175,322 -3109424,150,157,307 -3109425,327,332,659 -3109426,116,115,231 -3109427,173,164,337 -3109428,208,254,462 -3109429,168,174,342 -3109430,149,153,302 -3109431,207,196,403 -3109501,273,277,550 -3109502,153,194,347 -3109503,234,251,485 -3109504,212,244,456 -3109505,144,124,268 -3109506,138,148,286 -3109507,174,193,367 -3109508,112,122,234 -3109509,213,275,488 -3109510,208,223,431 -3109511,147,172,319 -3109512,210,230,440 -3109513,120,124,244 -3109514,159,177,336 -3109601,285,302,587 -3109602,175,207,382 -3109603,258,259,517 -3109604,169,160,329 -3109605,243,227,470 -3109606,266,236,502 -3109607,153,166,319 -3109608,229,264,493 -3109609,274,247,521 -3109610,251,228,479 -3109611,179,190,369 -3109612,175,176,351 -3109613,172,182,354 -3109614,207,200,407 -3109615,971,1079,2050 -3109616,232,209,441 -3109617,113,126,239 -3109618,265,256,521 -3109619,136,173,309 -3109620,198,180,378 -3109621,201,200,401 -3109622,148,175,323 -3109623,221,224,445 -3109701,208,184,392 -3109702,112,112,224 -3109703,154,142,296 -3109704,294,338,632 -3109705,142,129,271 -3109706,242,220,462 -3109707,149,134,283 -3109708,179,212,391 -3109709,252,257,509 -3109710,227,246,473 -3109711,147,151,298 -3109712,210,213,423 -3109713,146,153,299 -3109714,198,193,391 -3109715,138,134,272 -3109716,189,145,334 -3109717,234,220,454 -3109718,163,161,324 -3109719,148,168,316 -3109720,277,254,531 -3109721,145,206,351 -3109801,148,171,319 -3109802,198,213,411 -3109803,294,315,609 -3109804,681,96,777 -3109805,204,250,454 -3109806,374,383,757 -3109807,107,120,227 -3109808,264,252,516 -3109809,243,249,492 -3109810,140,142,282 -3109811,161,156,317 -3109812,282,297,579 -3109813,115,109,224 -3109814,264,271,535 -3109815,208,196,404 -3109816,234,273,507 -3109817,129,151,280 -3109901,14,10,24 -3110001,211,222,433 -3110002,252,240,492 -3110003,310,301,611 -3110004,194,211,405 -3110005,133,154,287 -3110006,122,113,235 -3110007,3,3,6 -3110008,93,247,340 -3110009,193,184,377 -3110010,229,246,475 -3110011,240,300,540 -3110012,234,215,449 -3110013,192,225,417 -3110014,142,148,290 -3110015,190,207,397 -3110016,158,177,335 -3110017,118,233,351 -3110018,102,141,243 -3110019,151,169,320 -3110101,218,223,441 -3110102,195,231,426 -3110103,178,199,377 -3110104,170,182,352 -3110105,160,148,308 -3110106,186,191,377 -3110107,247,258,505 -3110108,28,33,61 -3110109,213,217,430 -3110110,186,191,377 -3110111,144,160,304 -3110112,218,230,448 -3110113,125,128,253 -3110114,205,198,403 -3110115,246,262,508 -3110116,202,228,430 -3110117,218,259,477 -3110118,103,144,247 -3110119,181,222,403 -3110120,233,290,523 -3110201,0,0,0 -3110301,101,120,221 -3110302,183,198,381 -3110303,339,309,648 -3110304,203,222,425 -3110305,196,195,391 -3110306,271,262,533 -3110307,164,168,332 -3110308,235,251,486 -3110309,255,270,525 -3110310,145,146,291 -3110311,261,257,518 -3110312,147,147,294 -3110313,227,261,488 -3110314,226,263,489 -3110315,156,137,293 -3110316,143,153,296 -3110317,181,163,344 -3110318,174,195,369 -3110319,164,189,353 -3110320,129,152,281 -3110321,155,144,299 -3110322,164,168,332 -3110323,196,211,407 -3110324,144,151,295 -3110325,143,217,360 -3110326,156,157,313 -3110327,225,251,476 -3110328,282,248,530 -3110329,198,213,411 -3110330,142,141,283 -3110331,151,151,302 -3110332,201,206,407 -3110333,269,286,555 -3110334,267,244,511 -3110335,258,284,542 -3110336,210,238,448 -3110337,170,161,331 -3110338,289,304,593 -3110339,180,162,342 -3110340,118,118,236 -3110401,196,219,415 -3110402,271,250,521 -3110403,289,281,570 -3110404,276,301,577 -3110405,311,280,591 -3110406,236,261,497 -3110407,291,326,617 -3110408,274,265,539 -3110409,136,125,261 -3110410,210,213,423 -3110411,192,193,385 -3110412,189,165,354 -3110413,160,175,335 -3110414,104,110,214 -3110415,170,164,334 -3110416,160,170,330 -3110417,226,221,447 -3110418,150,147,297 -3110419,265,287,552 -3110420,187,236,423 -3110421,191,161,352 -3110501,254,219,473 -3110502,441,343,784 -3110503,117,98,215 -3110504,157,142,299 -3110505,186,186,372 -3110506,249,187,436 -3110507,524,472,996 -3110508,115,91,206 -3110509,281,257,538 -3110510,412,400,812 -3110511,379,375,754 -3110512,231,186,417 -3110513,13,5,18 -3110514,443,392,835 -3110515,254,247,501 -3110516,212,179,391 -3110517,145,142,287 -3110518,125,88,213 -3110519,83,72,155 -3110601,83,64,147 -3110602,440,298,738 -3110603,234,178,412 -3110604,353,209,562 -3110605,204,167,371 -3110606,458,374,832 -3110607,228,143,371 -3110608,260,215,475 -3110609,231,201,432 -3110610,270,197,467 -3110611,224,185,409 -3110701,187,189,376 -3110702,186,169,355 -3110703,205,198,403 -3110704,222,226,448 -3110705,179,165,344 -3110706,241,204,445 -3110707,304,315,619 -3110708,242,247,489 -3110709,167,169,336 -3110710,206,195,401 -3110711,246,208,454 -3110712,120,87,207 -3110713,129,117,246 -3110714,158,144,302 -3110715,198,202,400 -3110801,284,247,531 -3110802,99,81,180 -3110803,151,128,279 -3110804,187,283,470 -3110805,244,231,475 -3110806,222,200,422 -3110807,197,201,398 -3110808,182,154,336 -3110809,273,266,539 -3110810,304,279,583 -3110811,177,194,371 -3110812,216,177,393 -3110813,249,191,440 -3110814,308,291,599 -3110815,212,172,384 -3110816,189,162,351 -3110817,131,122,253 -3110901,183,148,331 -3110902,179,175,354 -3110903,218,233,451 -3110904,144,155,299 -3110905,132,144,276 -3110906,149,147,296 -3110907,143,142,285 -3110908,160,187,347 -3110909,182,198,380 -3110910,276,315,591 -3110911,147,147,294 -3110912,208,161,369 -3110913,206,179,385 -3110914,237,270,507 -3110915,220,250,470 -3110916,117,116,233 -3110917,286,300,586 -3110918,284,312,596 -3110919,176,207,383 -3110920,123,87,210 -3110921,288,232,520 -3110922,173,153,326 -3110923,176,180,356 -3110924,162,180,342 -3110925,141,118,259 -3110926,229,167,396 -3110927,92,99,191 -3110928,257,238,495 -3110929,293,263,556 -3110930,164,188,352 -3110931,145,150,295 -3111001,85,186,271 -3111002,199,203,402 -3111003,404,400,804 -3111004,189,169,358 -3111005,438,374,812 -3111006,108,89,197 -3111007,421,370,791 -3111008,263,230,493 -3111009,229,185,414 -3111010,200,194,394 -3111011,241,244,485 -3111101,166,115,281 -3111102,276,236,512 -3111103,209,158,367 -3111104,121,82,203 -3111105,279,204,483 -3111106,260,194,454 -3111107,300,276,576 -3111108,202,190,392 -3111109,295,267,562 -3111110,303,239,542 -3111111,163,165,328 -3111112,166,158,324 -3111113,412,194,606 -3111201,421,394,815 -3111202,186,131,317 -3111203,198,157,355 -3111204,199,183,382 -3111205,156,157,313 -3111206,188,210,398 -3111207,126,131,257 -3111208,171,175,346 -3111209,201,198,399 -3111210,197,212,409 -3111211,227,239,466 -3111212,263,267,530 -3111213,141,176,317 -3111214,601,608,1209 -3111215,212,249,461 -3111216,222,204,426 -3111217,212,219,431 -3111218,103,127,230 -3111301,190,186,376 -3111302,242,301,543 -3111303,171,199,370 -3111304,174,194,368 -3111305,138,165,303 -3111306,258,270,528 -3111307,226,228,454 -3111308,151,128,279 -3111309,130,129,259 -3111310,160,182,342 -3111401,185,192,377 -3111402,223,200,423 -3111403,251,230,481 -3111404,238,237,475 -3111405,188,215,403 -3111406,222,209,431 -3111407,197,207,404 -3111408,195,213,408 -3111409,317,307,624 -3111410,319,340,659 -3111411,187,226,413 -3111412,228,228,456 -3111413,197,185,382 -3111501,152,142,294 -3111502,229,209,438 -3111503,330,172,502 -3111504,249,207,456 -3111505,246,219,465 -3111506,151,159,310 -3111507,315,248,563 -3111508,221,178,399 -3111509,291,222,513 -3111510,230,207,437 -3111511,182,134,316 -3111512,241,234,475 -3111513,234,189,423 -3111601,150,146,296 -3111602,192,205,397 -3111603,112,116,228 -3111604,269,235,504 -3111605,175,164,339 -3111606,237,276,513 -3111607,272,259,531 -3111608,328,392,720 -3111609,105,122,227 -3111610,252,228,480 -3111611,273,267,540 -3111701,154,145,299 -3111702,135,133,268 -3111703,108,111,219 -3111704,173,207,380 -3111705,272,293,565 -3111706,155,141,296 -3111707,244,259,503 -3111708,5,0,5 -3111709,136,146,282 -3111710,188,226,414 -3111711,161,186,347 -3111712,180,164,344 -3111713,126,134,260 -3111714,232,232,464 -3111715,322,295,617 -3111716,311,327,638 -3111717,197,220,417 -3111718,207,217,424 -3111719,247,264,511 -3111720,224,236,460 -3111721,155,161,316 -3111722,0,0,0 -3111723,152,164,316 -3111724,143,129,272 -3111725,192,159,351 -3111726,142,136,278 -3111727,219,245,464 -3111728,157,159,316 -3111729,0,0,0 -3111730,148,134,282 -3111731,165,186,351 -3111732,224,240,464 -3111733,155,150,305 -3111801,75,74,149 -3111802,109,113,222 -3111803,267,263,530 -3111804,221,229,450 -3111805,207,209,416 -3111806,289,280,569 -3111807,171,174,345 -3111808,158,170,328 -3111809,261,282,543 -3111810,227,211,438 -3111811,259,269,528 -3111812,217,218,435 -3111813,113,134,247 -3111814,254,280,534 -3111815,132,136,268 -3111901,0,0,0 -3111902,79,118,197 -3111903,100,267,367 -3111904,120,171,291 -3111905,190,166,356 -3111906,154,146,300 -3111907,243,219,462 -3111908,312,264,576 -3112001,174,179,353 -3112002,146,151,297 -3112003,143,156,299 -3112004,197,217,414 -3112005,207,213,420 -3112006,238,232,470 -3112007,284,291,575 -3112008,132,113,245 -3112009,173,189,362 -3112010,167,224,391 -3112011,246,270,516 -3112012,191,201,392 -3112013,119,131,250 -3112014,0,0,0 -3112015,153,140,293 -3112016,207,193,400 -3112101,157,183,340 -3112102,217,254,471 -3112103,229,210,439 -3112104,247,288,535 -3112105,245,212,457 -3112106,248,220,468 -3112107,315,299,614 -3112108,145,185,330 -3112109,248,248,496 -3112110,226,190,416 -3112111,295,306,601 -3112112,0,0,0 -3112201,246,282,528 -3112202,277,256,533 -3112203,272,283,555 -3112204,171,221,392 -3112205,164,183,347 -3112206,178,187,365 -3112207,219,287,506 -3112208,143,171,314 -3112209,101,117,218 -3112210,117,104,221 -3112211,226,244,470 -3112212,210,192,402 -3112213,197,240,437 -3112214,263,249,512 -3112215,304,276,580 -3112216,212,258,470 -3112217,196,234,430 -3112218,157,174,331 -3112219,212,245,457 -3112220,145,156,301 -3112221,107,142,249 -3112222,199,213,412 -3112223,236,318,554 -3112224,196,217,413 -3112301,280,247,527 -3112302,258,272,530 -3112303,184,174,358 -3112304,84,134,218 -3112305,178,181,359 -3112306,234,212,446 -3112307,240,284,524 -3112308,220,222,442 -3112309,210,262,472 -3112310,129,162,291 -3112401,113,110,223 -3112402,247,275,522 -3112403,159,152,311 -3112404,203,218,421 -3112405,223,231,454 -3112406,241,262,503 -3112407,295,291,586 -3112408,230,176,406 -3112409,213,217,430 -3112410,108,113,221 -3112411,204,204,408 -3112412,105,129,234 -3112501,117,127,244 -3112502,291,272,563 -3112503,121,128,249 -3112504,189,213,402 -3112505,4,4,8 -3112506,131,165,296 -3112507,173,153,326 -3112508,240,235,475 -3112509,129,133,262 -3112510,136,154,290 -3112511,199,205,404 -3112512,173,176,349 -3112513,260,281,541 -3112601,149,138,287 -3112602,293,291,584 -3112603,163,172,335 -3112604,205,231,436 -3112605,267,294,561 -3112606,160,185,345 -3112607,133,154,287 -3112608,245,236,481 -3112609,173,151,324 -3112610,219,252,471 -3112611,239,239,478 -3112612,196,206,402 -3112613,204,224,428 -3112614,274,252,526 -3112615,879,1027,1906 -3112616,0,0,0 -3112701,311,315,626 -3112702,197,225,422 -3112703,279,272,551 -3112704,293,284,577 -3112705,139,165,304 -3112706,252,297,549 -3112707,109,160,269 -3112708,164,195,359 -3112709,155,186,341 -3112710,247,206,453 -3112801,267,254,521 -3112802,294,293,587 -3112803,293,294,587 -3112804,172,155,327 -3112805,281,183,464 -3112806,251,167,418 -3112807,169,188,357 -3112808,258,207,465 -3112809,196,188,384 -3112810,5,5,10 -3112811,77,73,150 -3112812,238,202,440 -3112813,178,163,341 -3112814,154,158,312 -3112815,206,229,435 -3112816,68,78,146 -3112817,111,83,194 -3112818,325,322,647 -3112819,260,238,498 -3112901,303,280,583 -3112902,199,181,380 -3112903,132,176,308 -3112904,180,193,373 -3112905,154,173,327 -3112906,263,304,567 -3112907,162,172,334 -3112908,249,223,472 -3112909,179,136,315 -3112910,97,109,206 -3113001,170,140,310 -3113002,183,126,309 -3113003,152,153,305 -3113004,320,301,621 -3113005,160,149,309 -3113006,173,147,320 -3113007,233,169,402 -3113008,182,186,368 -3113009,184,169,353 -3113010,232,242,474 -3113011,166,200,366 -3113012,140,149,289 -3113013,258,267,525 -3113014,201,254,455 -3113015,240,237,477 -3113016,249,263,512 -3113101,237,323,560 -3113102,178,188,366 -3113103,255,228,483 -3113104,177,174,351 -3113105,199,193,392 -3113106,168,211,379 -3113107,191,174,365 -3113108,110,113,223 -3113109,118,146,264 -3113110,280,220,500 -3113111,144,121,265 -3113112,192,173,365 -3113113,237,276,513 -3113114,258,225,483 -3113115,172,177,349 -3113116,96,115,211 -3113117,178,186,364 -3113118,262,275,537 -3113119,138,140,278 -3113120,278,288,566 -3113121,202,198,400 -3113122,259,262,521 -3113201,229,240,469 -3113202,145,150,295 -3113203,123,119,242 -3113204,252,265,517 -3113205,191,190,381 -3113206,179,164,343 -3113207,250,245,495 -3113208,518,263,781 -3113209,211,200,411 -3113210,149,169,318 -3113211,239,219,458 -3113212,187,191,378 -3113213,181,180,361 -3113214,193,185,378 -3113215,194,190,384 -3113216,140,177,317 -3113217,154,141,295 -3113218,197,247,444 -3113219,184,212,396 -3113220,216,207,423 -3113221,169,169,338 -3113222,159,170,329 -3113223,143,183,326 -3113224,231,247,478 -3113225,276,303,579 -3113226,255,293,548 -3113227,311,288,599 -3113228,208,223,431 -3113229,185,236,421 -3113230,210,217,427 -3113231,167,194,361 -3113301,214,238,452 -3113302,123,114,237 -3113303,213,177,390 -3113304,281,319,600 -3113305,199,203,402 -3113306,131,152,283 -3113307,203,178,381 -3113308,194,210,404 -3113309,212,248,460 -3113310,233,234,467 -3113311,221,254,475 -3113312,171,187,358 -3113313,224,223,447 -3113401,181,209,390 -3113402,194,182,376 -3113403,135,145,280 -3113404,209,233,442 -3113405,179,211,390 -3113406,177,195,372 -3113407,210,210,420 -3113408,239,257,496 -3113409,284,284,568 -3113410,309,318,627 -3113411,208,236,444 -3113412,175,186,361 -3113413,204,242,446 -3113414,157,179,336 -3113415,203,207,410 -3113416,118,134,252 -3113417,175,189,364 -3113418,207,215,422 -3113419,238,325,563 -3113420,221,338,559 -3113421,234,260,494 -3113422,122,131,253 -3113501,104,155,259 -3113502,167,200,367 -3113503,188,204,392 -3113504,177,163,340 -3113505,162,154,316 -3113506,155,173,328 -3113507,209,229,438 -3113508,190,201,391 -3113509,141,160,301 -3113510,221,238,459 -3113511,215,247,462 -3113512,179,172,351 -3113513,133,154,287 -3113514,240,234,474 -3113515,309,295,604 -3113516,154,147,301 -3113517,226,227,453 -3113518,286,302,588 -3113519,126,158,284 -3113520,242,291,533 -3113521,235,251,486 -3113522,196,201,397 -3113523,267,320,587 -3113524,97,115,212 -3113525,187,179,366 -3113601,123,124,247 -3113602,167,166,333 -3113603,238,249,487 -3113604,162,183,345 -3113605,157,109,266 -3113606,245,229,474 -3113607,262,291,553 -3113608,290,309,599 -3113609,218,224,442 -3113610,135,136,271 -3113611,172,192,364 -3113612,167,181,348 -3113613,244,241,485 -3113614,171,151,322 -3113615,0,0,0 -3113701,126,161,287 -3113702,290,295,585 -3113703,167,165,332 -3113704,121,120,241 -3113705,177,188,365 -3113706,214,204,418 -3113707,257,259,516 -3113708,181,104,285 -3113709,265,297,562 -3113710,113,127,240 -3113711,201,210,411 -3113712,199,215,414 -3113713,234,229,463 -3113714,232,247,479 -3113715,234,177,411 -3113716,153,170,323 -3113717,229,226,455 -3113718,268,270,538 -3113719,279,268,547 -3113720,221,246,467 -3113721,235,251,486 -3113722,190,172,362 -3113723,203,275,478 -3113724,268,240,508 -3113725,155,165,320 -3113801,206,211,417 -3113802,181,205,386 -3113803,236,265,501 -3113804,161,162,323 -3113805,195,222,417 -3113806,102,96,198 -3113807,150,141,291 -3113808,101,111,212 -3113809,151,132,283 -3113810,222,243,465 -3113811,90,127,217 -3113812,218,216,434 -3113813,390,412,802 -3113814,150,140,290 -3113901,242,218,460 -3113902,303,295,598 -3113903,240,249,489 -3113904,188,183,371 -3113905,190,222,412 -3113906,249,263,512 -3113907,290,258,548 -3113908,410,444,854 -3113909,123,113,236 -3113910,321,336,657 -3113911,225,231,456 -3113912,316,332,648 -3113913,198,208,406 -3113914,243,290,533 -3113915,333,412,745 -3113916,134,151,285 -3113917,226,233,459 -3113918,47,61,108 -3113919,206,223,429 -3113920,176,181,357 -3113921,187,194,381 -3113922,12,6,18 -3114001,241,258,499 -3114002,143,168,311 -3114003,215,231,446 -3114004,7,15,22 -3114005,132,133,265 -3114006,266,318,584 -3114007,273,283,556 -3114008,300,259,559 -3114009,189,201,390 -3114010,0,0,0 -3114101,191,195,386 -3114102,164,149,313 -3114103,162,194,356 -3114104,107,135,242 -3114105,123,139,262 -3114106,137,131,268 -3114107,114,127,241 -3114108,157,207,364 -3114109,276,312,588 -3114110,304,305,609 -3114111,351,352,703 -3114112,113,103,216 -3114113,329,334,663 -3114114,228,239,467 -3114115,133,136,269 -3114116,404,455,859 -3114117,164,164,328 -3114118,176,206,382 -3114119,132,142,274 -3114120,0,0,0 -3114121,96,106,202 -3114122,180,258,438 -3114123,282,297,579 -3114124,177,202,379 -3114125,92,85,177 -3114126,223,242,465 -3114127,121,102,223 -3114128,166,157,323 -3114129,240,241,481 -3114130,0,0,0 -3114131,220,221,441 -3114201,274,298,572 -3114202,109,85,194 -3114203,342,323,665 -3114204,342,341,683 -3114205,123,135,258 -3114206,248,230,478 -3114207,153,161,314 -3114208,218,236,454 -3114209,223,232,455 -3114210,145,146,291 -3114211,595,625,1220 -3114212,135,142,277 -3114213,112,120,232 -3114214,227,252,479 -3114215,209,212,421 -3114216,319,326,645 -3114217,17,17,34 -3114218,284,286,570 -3114219,28,32,60 -3114220,293,307,600 -3114221,163,160,323 -3114222,0,0,0 -3114223,143,171,314 -3114224,176,164,340 -3114225,254,257,511 -3114226,164,178,342 -3114227,91,85,176 -3114301,0,0,0 -3114302,0,0,0 -3114303,218,217,435 -3114304,204,213,417 -3114305,188,157,345 -3114306,103,108,211 -3114307,208,207,415 -3114308,177,206,383 -3114309,200,227,427 -3114310,140,150,290 -3114311,132,167,299 -3114312,134,117,251 -3114313,0,0,0 -3114314,156,155,311 -3114315,249,228,477 -3114316,215,193,408 -3114317,300,256,556 -3114318,178,171,349 -3114319,209,207,416 -3114401,224,274,498 -3114402,226,245,471 -3114403,202,196,398 -3114404,195,201,396 -3114405,293,322,615 -3114406,191,197,388 -3114407,272,293,565 -3114408,171,187,358 -3114409,225,207,432 -3114410,183,162,345 -3114411,109,126,235 -3114412,145,155,300 -3114413,329,359,688 -3114414,103,130,233 -3114415,243,260,503 -3114416,178,192,370 -3114417,104,102,206 -3114418,215,208,423 -3114501,213,234,447 -3114502,314,358,672 -3114503,212,178,390 -3114504,262,225,487 -3114505,434,392,826 -3114506,476,392,868 -3114507,118,94,212 -3114508,178,188,366 -3114509,211,203,414 -3114510,183,147,330 -3114511,228,198,426 -3114512,184,167,351 -3114513,393,315,708 -3114514,352,315,667 -3114515,144,112,256 -3114516,233,129,362 -3114517,110,76,186 -3114518,318,303,621 -3114519,310,357,667 -3114520,179,113,292 -3114521,154,135,289 -3114601,266,289,555 -3114602,249,255,504 -3114603,338,415,753 -3114604,233,189,422 -3114605,203,253,456 -3114606,295,274,569 -3114607,221,241,462 -3114608,189,203,392 -3114609,142,151,293 -3114610,244,247,491 -3114611,149,136,285 -3114612,125,106,231 -3114613,223,204,427 -3114614,214,194,408 -3114615,346,334,680 -3114616,277,291,568 -3114617,238,265,503 -3114701,355,392,747 -3114702,208,193,401 -3114703,217,225,442 -3114704,106,114,220 -3114705,109,116,225 -3114706,154,171,325 -3114707,271,271,542 -3114708,191,191,382 -3114709,158,191,349 -3114710,150,142,292 -3114711,113,141,254 -3114712,191,180,371 -3114713,201,217,418 -3114714,358,355,713 -3114715,181,188,369 -3114716,242,250,492 -3114717,518,571,1089 -3114718,478,501,979 -3114719,176,188,364 -3114720,149,154,303 -3114721,253,247,500 -3114722,78,74,152 -3114801,81,84,165 -3114802,269,229,498 -3114803,58,53,111 -3114804,215,229,444 -3114805,243,202,445 -3114806,191,200,391 -3114807,154,150,304 -3114808,122,146,268 -3114809,222,227,449 -3114810,234,253,487 -3114811,97,120,217 -3114812,159,164,323 -3114813,182,148,330 -3114814,135,132,267 -3114815,252,276,528 -3114816,114,110,224 -3114817,210,196,406 -3114818,122,111,233 -3114819,215,187,402 -3114820,151,123,274 -3114821,82,83,165 -3114822,343,370,713 -3114823,203,200,403 -3114901,275,275,550 -3114902,237,240,477 -3114903,203,206,409 -3114904,139,181,320 -3114905,72,72,144 -3114906,209,230,439 -3114907,294,307,601 -3114908,167,203,370 -3114909,0,0,0 -3114910,148,142,290 -3114911,138,153,291 -3114912,53,42,95 -3114913,231,220,451 -3114914,211,224,435 -3114915,204,213,417 -3114916,104,108,212 -3114917,170,184,354 -3114918,332,326,658 -3114919,278,293,571 -3114920,182,194,376 -3114921,193,182,375 -3114922,166,172,338 -3114923,181,234,415 -3114924,269,313,582 -3115001,0,0,0 -3115101,147,151,298 -3115102,225,292,517 -3115103,175,174,349 -3115104,168,170,338 -3115105,256,280,536 -3115106,223,244,467 -3115107,104,123,227 -3115108,130,185,315 -3115109,222,261,483 -3115110,137,144,281 -3115111,281,257,538 -3115112,165,169,334 -3115113,116,133,249 -3115114,139,140,279 -3115115,229,257,486 -3115201,143,147,290 -3115202,258,250,508 -3115203,142,150,292 -3115204,176,157,333 -3115205,218,179,397 -3115206,149,99,248 -3115207,248,233,481 -3115208,111,119,230 -3115209,144,157,301 -3115210,128,135,263 -3115211,220,240,460 -3115212,145,135,280 -3115213,200,239,439 -3115214,226,224,450 -3115301,237,247,484 -3115302,247,293,540 -3115303,204,218,422 -3115304,195,214,409 -3115305,239,260,499 -3115306,320,345,665 -3115307,0,0,0 -3115308,164,170,334 -3115309,238,228,466 -3115310,276,257,533 -3115311,151,155,306 -3115312,269,268,537 -3115313,176,177,353 -3115314,197,211,408 -3115315,198,197,395 -3115316,319,310,629 -3115317,126,135,261 -3115318,147,166,313 -3115319,217,217,434 -3115401,133,130,263 -3115402,368,279,647 -3115403,259,228,487 -3115404,180,142,322 -3115405,165,65,230 -3115406,135,148,283 -3115407,160,174,334 -3115408,146,131,277 -3115409,152,291,443 -3115410,516,504,1020 -3115411,227,209,436 -3115412,275,237,512 -3115413,168,148,316 -3115414,158,128,286 -3115415,225,223,448 -3115501,238,244,482 -3115502,87,101,188 -3115503,184,209,393 -3115504,287,286,573 -3115505,202,214,416 -3115506,119,159,278 -3115507,218,204,422 -3115508,175,190,365 -3115509,181,191,372 -3115510,0,0,0 -3115511,290,291,581 -3115512,193,220,413 -3115601,141,119,260 -3115602,239,211,450 -3115603,150,128,278 -3115604,238,251,489 -3115605,130,123,253 -3115606,101,114,215 -3115607,160,180,340 -3115608,209,199,408 -3115609,184,198,382 -3115610,165,160,325 -3115611,249,219,468 -3115612,0,0,0 -3115613,121,131,252 -3115614,258,268,526 -3115615,100,101,201 -3115616,142,145,287 -3115617,222,233,455 -3115618,153,185,338 -3115619,237,258,495 -3115620,140,140,280 -3115621,250,280,530 -3115622,293,283,576 -3115623,96,148,244 -3115701,351,398,749 -3115702,233,252,485 -3115703,139,153,292 -3115704,201,206,407 -3115705,261,214,475 -3115706,185,188,373 -3115707,156,154,310 -3115708,197,207,404 -3115709,128,139,267 -3115710,0,0,0 -3115711,244,252,496 -3115712,291,282,573 -3115801,76,56,132 -3115802,136,113,249 -3115803,94,94,188 -3115804,157,126,283 -3115805,241,234,475 -3115806,109,91,200 -3115807,216,233,449 -3115808,190,171,361 -3115809,94,101,195 -3115810,173,156,329 -3115811,71,83,154 -3115812,92,113,205 -3115813,143,124,267 -3115814,120,100,220 -3115815,102,118,220 -3115816,101,102,203 -3115901,203,211,414 -3115902,148,153,301 -3115903,58,68,126 -3115904,130,119,249 -3115905,99,104,203 -3115906,168,157,325 -3115907,186,167,353 -3115908,117,109,226 -3115909,121,136,257 -3115910,106,83,189 -3115911,127,118,245 -3115912,182,149,331 -3115913,220,193,413 -3115914,159,175,334 -3115915,245,280,525 -3115916,223,205,428 -3115917,208,210,418 -3115918,150,170,320 -3115919,134,119,253 -3115920,128,118,246 -3115921,142,113,255 -3115922,195,173,368 -3115923,61,62,123 -3115924,119,127,246 -3115925,214,204,418 -3115926,138,143,281 -3115927,93,106,199 -3115928,185,220,405 -3115929,120,139,259 -3115930,249,256,505 -3116001,198,197,395 -3116002,169,140,309 -3116003,154,143,297 -3116004,190,179,369 -3116005,193,196,389 -3116006,273,232,505 -3116007,211,201,412 -3116008,152,136,288 -3116009,225,168,393 -3116010,127,93,220 -3116011,268,260,528 -3116012,9,7,16 -3116013,0,0,0 -3116014,119,135,254 -3116015,93,80,173 -3116016,0,0,0 -3116017,169,163,332 -3116018,213,197,410 -3116019,211,203,414 -3116020,266,261,527 -3116021,159,158,317 -3116022,283,256,539 -3116023,107,113,220 -3116024,128,98,226 -3116101,149,148,297 -3116102,93,79,172 -3116103,230,160,390 -3116104,13,6,19 -3116105,91,89,180 -3116106,0,0,0 -3116107,100,87,187 -3116108,0,0,0 -3116109,183,146,329 -3116110,138,119,257 -3116111,269,240,509 -3116112,224,194,418 -3116113,148,144,292 -3116114,186,167,353 -3116115,3,3,6 -3116116,239,229,468 -3116117,110,96,206 -3116118,154,112,266 -3116119,130,108,238 -3116120,205,189,394 -3116121,172,146,318 -3116122,216,206,422 -3116123,158,143,301 -3116124,185,196,381 -3116125,107,98,205 -3116126,245,193,438 -3116127,123,102,225 -3116128,150,120,270 -3116129,118,123,241 -3116130,195,200,395 -3116131,64,64,128 -3116132,96,103,199 -3116133,196,166,362 -3116134,183,172,355 -3116135,182,176,358 -3116136,77,63,140 -3116137,0,0,0 -3116138,0,0,0 -3116139,0,0,0 -3116140,127,118,245 -3116141,124,111,235 -3116201,3,3,6 -3116301,662,676,1338 -3116302,539,527,1066 -3116401,102,77,179 -3116402,124,136,260 -3116403,175,154,329 -3116404,189,198,387 -3116405,184,176,360 -3116406,265,278,543 -3116407,169,159,328 -3116408,52,48,100 -3116409,160,149,309 -3116410,193,195,388 -3116411,187,177,364 -3116412,132,114,246 -3116413,223,192,415 -3116414,221,206,427 -3116415,177,144,321 -3116416,183,176,359 -3116417,174,156,330 -3116418,0,0,0 -3116419,100,119,219 -3116420,79,67,146 -3116501,119,112,231 -3116502,126,111,237 -3116503,147,151,298 -3116504,365,372,737 -3116505,232,224,456 -3116506,168,174,342 -3116507,330,332,662 -3116508,301,270,571 -3116509,122,86,208 -3116510,161,136,297 -3116511,178,152,330 -3116512,208,198,406 -3116601,169,208,377 -3116602,183,192,375 -3116603,262,288,550 -3116604,201,294,495 -3116605,164,214,378 -3116606,231,293,524 -3116607,142,145,287 -3116608,214,198,412 -3116609,211,275,486 -3116610,224,239,463 -3116611,204,232,436 -3116612,137,168,305 -3116613,226,221,447 -3116614,202,251,453 -3116615,201,245,446 -3116616,203,193,396 -3116617,217,183,400 -3116618,121,133,254 -3116619,99,102,201 -3116620,124,111,235 -3116621,308,302,610 -3116622,165,167,332 -3116623,183,209,392 -3116624,198,231,429 -3116625,239,243,482 -3116701,134,133,267 -3116702,90,104,194 -3116703,203,196,399 -3116704,257,230,487 -3116705,311,269,580 -3116706,193,128,321 -3116707,145,151,296 -3116708,177,170,347 -3116709,149,146,295 -3116710,107,184,291 -3116711,198,179,377 -3116712,142,142,284 -3116713,170,160,330 -3116714,109,82,191 -3116715,125,120,245 -3116716,312,268,580 -3116801,0,0,0 -3116802,0,0,0 -3116803,130,136,266 -3116804,4,4,8 -3116805,189,194,383 -3116806,183,177,360 -3116807,201,236,437 -3116808,185,181,366 -3116809,185,175,360 -3116810,130,126,256 -3116811,262,289,551 -3116812,275,301,576 -3116813,201,176,377 -3116814,88,76,164 -3116815,124,132,256 -3116901,128,134,262 -3116902,121,121,242 -3116903,131,117,248 -3116904,163,160,323 -3116905,190,192,382 -3116906,240,226,466 -3116907,125,103,228 -3116908,63,58,121 -3116909,97,125,222 -3116910,255,226,481 -3116911,214,204,418 -3116912,3,3,6 -3116913,128,157,285 -3116914,143,137,280 -3116915,83,75,158 -3116916,139,155,294 -3116917,80,80,160 -3116918,118,108,226 -3116919,186,188,374 -3116920,145,127,272 -3116921,89,84,173 -3116922,97,108,205 -3116923,291,293,584 -3116924,130,142,272 -3116925,127,126,253 -3116926,76,80,156 -3116927,98,87,185 -3116928,120,113,233 -3116929,69,81,150 -3116930,203,223,426 -3117001,357,365,722 -3117002,207,212,419 -3117003,264,276,540 -3117004,139,171,310 -3117005,174,207,381 -3117006,163,159,322 -3117007,103,98,201 -3117008,115,119,234 -3117009,95,107,202 -3117010,231,207,438 -3117011,276,255,531 -3117012,166,133,299 -3117013,90,107,197 -3117014,229,223,452 -3117015,247,259,506 -3117016,292,323,615 -3117017,266,257,523 -3117018,124,122,246 -3117019,221,250,471 -3117020,252,239,491 -3117021,262,270,532 -3117022,236,257,493 -3117023,296,298,594 -3117024,222,238,460 -3117101,245,246,491 -3117102,197,206,403 -3117103,150,154,304 -3117104,215,227,442 -3117105,182,186,368 -3117106,141,153,294 -3117107,167,175,342 -3117108,244,199,443 -3117109,186,148,334 -3117110,198,185,383 -3117111,152,112,264 -3117112,218,183,401 -3117113,141,105,246 -3117114,0,0,0 -3117201,187,192,379 -3117202,188,219,407 -3117203,136,138,274 -3117204,251,134,385 -3117205,271,261,532 -3117206,363,362,725 -3117207,196,204,400 -3117208,106,92,198 -3117209,241,257,498 -3117210,135,127,262 -3117211,234,215,449 -3117212,128,131,259 -3117213,260,163,423 -3117214,130,123,253 -3117215,230,174,404 -3117216,154,158,312 -3117217,110,97,207 -3117218,381,339,720 -3117301,134,147,281 -3117302,161,165,326 -3117303,197,208,405 -3117304,108,126,234 -3117305,95,107,202 -3117306,156,168,324 -3117307,133,147,280 -3117308,251,222,473 -3117309,110,128,238 -3117310,155,175,330 -3117311,211,253,464 -3117312,137,161,298 -3117313,107,84,191 -3117314,179,217,396 -3117315,323,282,605 -3117316,174,160,334 -3117317,190,224,414 -3117318,162,186,348 -3117319,131,125,256 -3117401,123,131,254 -3117402,106,107,213 -3117403,181,193,374 -3117404,236,209,445 -3117405,127,121,248 -3117406,193,166,359 -3117407,109,109,218 -3117408,102,87,189 -3117409,235,185,420 -3117410,137,139,276 -3117411,155,134,289 -3117412,265,253,518 -3117413,205,186,391 -3117501,174,150,324 -3117502,115,102,217 -3117503,198,219,417 -3117504,248,314,562 -3117505,92,98,190 -3117506,174,153,327 -3117507,182,176,358 -3117508,171,158,329 -3117509,166,138,304 -3117510,54,40,94 -3117511,138,111,249 -3117512,245,181,426 -3117601,111,117,228 -3117602,198,178,376 -3117603,282,293,575 -3117604,192,188,380 -3117605,188,183,371 -3117606,163,121,284 -3117607,162,165,327 -3117608,190,174,364 -3117609,191,183,374 -3117610,164,180,344 -3117611,189,183,372 -3117612,234,197,431 -3117613,151,143,294 -3117614,210,193,403 -3117615,170,175,345 -3117616,229,237,466 -3117617,207,244,451 -3117618,252,273,525 -3117701,148,124,272 -3117702,112,100,212 -3117703,133,132,265 -3117704,146,144,290 -3117705,130,132,262 -3117706,214,187,401 -3117707,116,87,203 -3117708,219,207,426 -3117709,166,146,312 -3117710,170,140,310 -3117711,125,127,252 -3117712,276,255,531 -3117713,180,183,363 -3117714,70,69,139 -3117715,198,201,399 -3117716,206,192,398 -3117717,111,81,192 -3117718,336,254,590 -3117719,174,187,361 -3117801,188,208,396 -3117802,213,243,456 -3117803,199,163,362 -3117804,112,102,214 -3117805,160,119,279 -3117806,284,221,505 -3117807,196,159,355 -3117808,199,142,341 -3117809,145,108,253 -3117810,175,147,322 -3117811,165,147,312 -3117812,189,163,352 -3117901,192,183,375 -3117902,160,145,305 -3117903,109,121,230 -3117904,208,215,423 -3117905,287,354,641 -3117906,137,142,279 -3117907,122,129,251 -3117908,216,225,441 -3117909,194,173,367 -3117910,140,130,270 -3117911,115,108,223 -3117912,122,117,239 -3117913,138,143,281 -3117914,156,166,322 -3117915,136,137,273 -3117916,191,201,392 -3117917,190,174,364 -3117918,221,223,444 -3117919,181,168,349 -3117920,172,170,342 -3117921,105,104,209 -3117922,208,203,411 -3117923,160,138,298 -3117924,167,177,344 -3118001,116,73,189 -3118002,105,109,214 -3118003,251,269,520 -3118004,123,111,234 -3118005,222,227,449 -3118006,161,143,304 -3118007,204,201,405 -3118008,160,154,314 -3118009,210,200,410 -3118010,97,81,178 -3118011,101,100,201 -3118012,201,181,382 -3118013,108,91,199 -3118014,136,153,289 -3118015,130,126,256 -3118016,115,105,220 -3118017,127,119,246 -3118018,166,162,328 -3118019,201,184,385 -3118020,196,189,385 -3118021,205,172,377 -3118022,179,149,328 -3118023,92,85,177 -3118024,192,170,362 -3118101,121,135,256 -3118102,207,220,427 -3118103,104,102,206 -3118104,214,221,435 -3118105,120,116,236 -3118106,71,80,151 -3118107,152,132,284 -3118108,100,88,188 -3118109,224,197,421 -3118110,108,94,202 -3118111,157,140,297 -3118201,108,108,216 -3118202,134,110,244 -3118203,131,126,257 -3118204,137,127,264 -3118205,149,127,276 -3118206,134,123,257 -3118207,144,139,283 -3118208,203,208,411 -3118209,121,126,247 -3118210,121,100,221 -3118211,155,150,305 -3118212,239,265,504 -3118213,214,218,432 -3118214,268,259,527 -3118215,146,191,337 -3118216,122,122,244 -3118217,125,136,261 -3118301,114,130,244 -3118302,134,143,277 -3118303,216,190,406 -3118304,164,141,305 -3118305,139,147,286 -3118306,176,179,355 -3118307,143,135,278 -3118308,168,205,373 -3118309,218,237,455 -3118310,127,115,242 -3118311,242,276,518 -3118312,117,131,248 -3118313,97,99,196 -3118314,170,149,319 -3118315,250,213,463 -3118316,314,251,565 -3118317,138,119,257 -3118318,307,259,566 -3118319,137,164,301 -3118320,172,169,341 -3118321,283,249,532 -3118322,293,283,576 -3118323,203,220,423 -3118324,186,178,364 -3118325,164,174,338 -3118326,260,247,507 -3118327,178,170,348 -3118328,123,112,235 -3118329,140,140,280 -3118330,113,135,248 -3118331,131,132,263 -3118332,158,182,340 -3118333,225,192,417 -3118334,135,138,273 -3118335,106,144,250 -3118336,305,317,622 -3118337,205,202,407 -3118338,168,120,288 -3118339,141,124,265 -3118340,271,228,499 -3118341,141,145,286 -3118342,188,185,373 -3118343,139,132,271 -3118344,217,230,447 -3118345,368,327,695 -3118401,191,214,405 -3118402,141,161,302 -3118403,158,192,350 -3118404,79,88,167 -3118405,174,190,364 -3118406,103,93,196 -3118407,232,252,484 -3118408,260,233,493 -3118409,156,154,310 -3118410,119,117,236 -3118411,174,180,354 -3118412,266,252,518 -3118413,181,178,359 -3118501,227,241,468 -3118502,139,147,286 -3118503,181,169,350 -3118504,148,120,268 -3118505,157,177,334 -3118506,104,107,211 -3118507,105,92,197 -3118508,197,218,415 -3118509,166,189,355 -3118510,129,107,236 -3118511,112,87,199 -3118512,188,183,371 -3118513,110,115,225 -3118514,85,83,168 -3118601,221,236,457 -3118602,207,223,430 -3118603,198,187,385 -3118604,160,163,323 -3118605,240,205,445 -3118606,121,110,231 -3118607,229,210,439 -3118608,147,133,280 -3118609,184,162,346 -3118610,150,127,277 -3118611,192,172,364 -3118612,234,182,416 -3118701,163,170,333 -3118702,142,153,295 -3118703,134,163,297 -3118704,143,160,303 -3118705,102,111,213 -3118706,126,140,266 -3118707,262,281,543 -3118708,114,119,233 -3118709,125,123,248 -3118710,225,247,472 -3118711,87,149,236 -3118712,125,156,281 -3118713,127,144,271 -3118714,122,97,219 -3118715,151,147,298 -3118716,110,120,230 -3118717,108,101,209 -3118718,198,243,441 -3118801,160,160,320 -3118802,226,222,448 -3118803,174,179,353 -3118804,82,74,156 -3118805,162,140,302 -3118806,233,202,435 -3118807,242,209,451 -3118808,246,221,467 -3118809,255,255,510 -3118810,179,153,332 -3118811,242,242,484 -3118812,240,228,468 -3118813,120,126,246 -3118814,244,267,511 -3118901,128,138,266 -3118902,175,181,356 -3118903,227,225,452 -3118904,140,172,312 -3118905,172,172,344 -3118906,165,175,340 -3118907,279,302,581 -3118908,217,234,451 -3118909,197,247,444 -3118910,318,359,677 -3118911,136,152,288 -3118912,186,181,367 -3118913,288,315,603 -3118914,355,390,745 -3118915,137,133,270 -3118916,5,6,11 -3118917,222,232,454 -3118918,363,399,762 -3118919,129,122,251 -3118920,141,182,323 -3118921,222,250,472 -3118922,128,155,283 -3118923,219,216,435 -3118924,106,109,215 -3118925,107,94,201 -3118926,100,90,190 -3118927,165,173,338 -3118928,116,118,234 -3118929,206,247,453 -3118930,128,171,299 -3118931,209,291,500 -3118932,211,246,457 -3118933,123,130,253 -3118934,147,176,323 -3118935,176,205,381 -3118936,113,121,234 -3118937,168,185,353 -3118938,205,189,394 -3118939,119,157,276 -3119001,115,88,203 -3119002,137,122,259 -3119003,123,97,220 -3119004,169,151,320 -3119005,201,195,396 -3119006,192,150,342 -3119007,171,151,322 -3119008,445,490,935 -3119009,191,142,333 -3119010,159,135,294 -3119011,160,151,311 -3119012,233,206,439 -3119013,154,125,279 -3119014,175,157,332 -3119015,127,98,225 -3119016,165,133,298 -3119017,164,174,338 -3119018,155,81,236 -3119019,162,121,283 -3119020,142,122,264 -3119021,148,133,281 -3119022,211,159,370 -3119023,152,111,263 -3119101,69,60,129 -3119102,204,158,362 -3119103,315,242,557 -3119104,332,292,624 -3119105,350,195,545 -3119106,111,103,214 -3119107,167,166,333 -3119108,116,103,219 -3119109,150,135,285 -3119110,112,98,210 -3119111,209,173,382 -3119112,112,89,201 -3119113,277,185,462 -3119114,117,109,226 -3119115,286,242,528 -3119116,261,228,489 -3119117,233,206,439 -3119118,324,206,530 -3119119,155,125,280 -3119120,112,77,189 -3119121,99,99,198 -3119122,118,112,230 -3119123,250,240,490 -3119124,126,95,221 -3119125,247,206,453 -3119126,57,51,108 -3119201,386,375,761 -3119202,355,337,692 -3119203,311,267,578 -3119204,145,126,271 -3119205,216,192,408 -3119206,163,161,324 -3119207,298,274,572 -3119208,203,210,413 -3119209,237,254,491 -3119210,232,212,444 -3119211,179,195,374 -3119212,130,130,260 -3119213,173,157,330 -3119214,308,271,579 -3119215,109,104,213 -3119216,145,139,284 -3119217,236,206,442 -3119218,231,209,440 -3119219,185,155,340 -3119220,179,165,344 -3119221,135,94,229 -3119222,158,139,297 -3119223,180,147,327 -3119224,225,177,402 -3119225,185,162,347 -3119226,257,231,488 -3119227,307,283,590 -3119228,140,130,270 -3119229,305,314,619 -3119230,134,127,261 -3119231,309,275,584 -3119232,117,120,237 -3119301,261,207,468 -3119302,11,4,15 -3119303,138,125,263 -3119304,145,124,269 -3119305,120,127,247 -3119306,222,207,429 -3119307,215,176,391 -3119308,171,157,328 -3119309,211,212,423 -3119310,0,3,3 -3119311,120,105,225 -3119312,234,214,448 -3119313,193,149,342 -3119314,239,207,446 -3119315,63,69,132 -3119316,146,141,287 -3119317,34,42,76 -3119318,326,258,584 -3119319,90,64,154 -3119401,152,128,280 -3119402,109,99,208 -3119403,135,140,275 -3119404,281,223,504 -3119405,233,201,434 -3119406,138,123,261 -3119407,127,144,271 -3119408,154,162,316 -3119409,115,104,219 -3119410,147,141,288 -3119411,135,108,243 -3119412,192,171,363 -3119413,100,96,196 -3119414,114,109,223 -3119415,207,170,377 -3119416,122,128,250 -3119417,119,108,227 -3119418,92,64,156 -3119419,185,157,342 -3119420,121,106,227 -3119421,146,148,294 -3119422,123,114,237 -3119423,69,70,139 -3119424,165,144,309 -3119425,160,148,308 -3119426,122,76,198 -3119427,111,101,212 -3119428,121,112,233 -3119429,117,115,232 -3119430,0,0,0 -3119431,145,151,296 -3119432,223,229,452 -3119501,287,287,574 -3119502,299,271,570 -3119503,123,109,232 -3119504,223,219,442 -3119505,205,181,386 -3119506,171,156,327 -3119507,98,95,193 -3119508,165,161,326 -3119509,125,108,233 -3119510,125,129,254 -3119511,174,160,334 -3119512,206,206,412 -3119513,131,136,267 -3119514,200,199,399 -3119515,196,145,341 -3119516,4,7,11 -3119517,0,0,0 -3119518,140,177,317 -3119519,93,92,185 -3119520,37,41,78 -3119601,284,284,568 -3119602,145,132,277 -3119603,297,274,571 -3119604,211,195,406 -3119605,274,259,533 -3119606,266,258,524 -3119607,242,235,477 -3119608,315,311,626 -3119609,210,197,407 -3119610,222,194,416 -3119611,280,262,542 -3119612,160,150,310 -3119613,158,153,311 -3119614,334,312,646 -3119615,230,204,434 -3119616,208,206,414 -3119617,252,223,475 -3119618,212,196,408 -3119619,170,151,321 -3119620,0,0,0 -3119621,406,362,768 -3119622,121,116,237 -3119701,40,11,51 -3119801,0,0,0 -3119802,381,325,706 -3119803,244,212,456 -3119804,196,213,409 -3119805,255,223,478 -3119806,183,172,355 -3119807,3,3,6 -3119808,175,143,318 -3119809,189,187,376 -3119810,140,143,283 -3119811,166,168,334 -3119812,107,116,223 -3119813,235,263,498 -3119814,191,180,371 -3119815,291,264,555 -3119816,200,216,416 -3119817,225,225,450 -3119818,169,151,320 -3119819,206,218,424 -3119820,239,221,460 -3119821,325,284,609 -3119822,285,278,563 -3119823,229,226,455 -3119824,142,147,289 -3119825,215,209,424 -3119826,260,269,529 -3119827,208,155,363 -3119828,198,183,381 -3119901,3,0,3 -3119902,231,217,448 -3119903,253,208,461 -3119904,222,195,417 -3119905,130,128,258 -3119906,0,0,0 -3119907,220,183,403 -3119908,221,185,406 -3119909,290,235,525 -3119910,8,9,17 -3119911,322,274,596 -3119912,269,271,540 -3119913,258,204,462 -3119914,199,175,374 -3119915,329,264,593 -3119916,218,209,427 -3119917,200,180,380 -3120001,227,219,446 -3120002,209,180,389 -3120003,210,209,419 -3120004,191,174,365 -3120005,125,114,239 -3120006,144,133,277 -3120007,177,125,302 -3120008,80,59,139 -3120009,203,175,378 -3120010,367,342,709 -3120011,290,260,550 -3120012,222,208,430 -3120013,320,258,578 -3120014,246,261,507 -3120015,154,133,287 -3120016,122,103,225 -3120017,295,249,544 -3120018,242,220,462 -3120019,142,151,293 -3120020,162,151,313 -3120021,161,140,301 -3120022,301,249,550 -3120023,339,292,631 -3120024,168,145,313 -3120025,199,172,371 -3120026,179,188,367 -3120101,193,171,364 -3120102,300,298,598 -3120103,255,248,503 -3120104,262,232,494 -3120105,232,241,473 -3120106,247,247,494 -3120107,132,119,251 -3120108,148,128,276 -3120109,175,175,350 -3120110,171,179,350 -3120201,0,0,0 -3120301,194,180,374 -3120302,172,165,337 -3120303,244,233,477 -3120304,217,186,403 -3120305,221,231,452 -3120306,251,257,508 -3120307,214,247,461 -3120308,131,121,252 -3120309,222,229,451 -3120310,463,448,911 -3120311,194,176,370 -3120312,122,115,237 -3120313,161,155,316 -3120401,267,243,510 -3120402,144,117,261 -3120403,396,354,750 -3120404,0,0,0 -3120405,215,186,401 -3120406,303,270,573 -3120407,202,200,402 -3120408,145,143,288 -3120409,272,257,529 -3120410,215,194,409 -3120411,150,144,294 -3120412,215,214,429 -3120413,182,180,362 -3120501,203,216,419 -3120502,218,230,448 -3120503,279,281,560 -3120504,305,263,568 -3120505,139,156,295 -3120506,213,185,398 -3120507,146,136,282 -3120508,211,220,431 -3120509,227,241,468 -3120510,185,204,389 -3120511,143,140,283 -3120512,154,151,305 -3120513,189,187,376 -3120514,244,232,476 -3120515,195,161,356 -3120516,0,4,4 -3120517,243,256,499 -3120518,198,194,392 -3120519,164,131,295 -3120601,179,183,362 -3120602,167,174,341 -3120603,235,197,432 -3120604,294,249,543 -3120605,100,105,205 -3120701,154,168,322 -3120702,146,157,303 -3120703,92,81,173 -3120704,242,221,463 -3120705,166,165,331 -3120706,323,307,630 -3120707,417,461,878 -3120708,209,224,433 -3120709,250,235,485 -3120710,260,262,522 -3120801,184,188,372 -3120802,105,120,225 -3120803,110,110,220 -3120804,284,286,570 -3120805,188,188,376 -3120806,190,194,384 -3120807,276,271,547 -3120808,186,190,376 -3120809,272,279,551 -3120810,150,140,290 -3120811,193,196,389 -3120812,171,211,382 -3120813,110,109,219 -3120814,179,205,384 -3120815,37,51,88 -3120816,205,246,451 -3120817,141,160,301 -3120818,251,254,505 -3120819,103,134,237 -3120820,269,264,533 -3120821,120,136,256 -3120822,250,253,503 -3120823,151,147,298 -3120824,155,163,318 -3120825,248,228,476 -3120901,259,246,505 -3120902,342,348,690 -3120903,287,274,561 -3120904,215,185,400 -3120905,159,146,305 -3120906,118,118,236 -3120907,70,50,120 -3120908,142,128,270 -3120909,165,154,319 -3120910,190,181,371 -3120911,159,127,286 -3120912,383,0,383 -3120913,49,0,49 -3121001,218,238,456 -3121002,162,172,334 -3121003,181,196,377 -3121004,230,245,475 -3121005,155,184,339 -3121006,208,221,429 -3121007,202,218,420 -3121008,283,307,590 -3121009,521,533,1054 -3121010,125,114,239 -3121011,0,0,0 -3121012,159,175,334 -3121013,114,128,242 -3121014,247,225,472 -3121015,87,74,161 -3121016,216,220,436 -3121017,271,299,570 -3121018,292,281,573 -3121019,685,681,1366 -3121101,137,139,276 -3121102,122,137,259 -3121103,196,207,403 -3121104,162,184,346 -3121105,284,248,532 -3121106,254,260,514 -3121107,260,243,503 -3121108,121,111,232 -3121109,304,274,578 -3121110,339,317,656 -3121111,201,236,437 -3121112,156,138,294 -3121113,24,19,43 -3121201,0,0,0 -3121202,234,210,444 -3121203,188,209,397 -3121204,168,144,312 -3121205,144,131,275 -3121206,93,86,179 -3121207,101,102,203 -3121208,193,192,385 -3121209,270,275,545 -3121210,140,131,271 -3121301,227,245,472 -3121302,200,206,406 -3121303,146,178,324 -3121304,253,287,540 -3121305,145,158,303 -3121306,319,329,648 -3121307,387,430,817 -3121308,206,194,400 -3121309,284,296,580 -3121310,244,238,482 -3121311,250,241,491 -3121312,263,283,546 -3121313,283,289,572 -3121314,243,260,503 -3121315,198,204,402 -3121316,235,251,486 -3121317,448,419,867 -3121401,164,215,379 -3121402,244,239,483 -3121403,223,220,443 -3121404,128,136,264 -3121405,259,296,555 -3121406,251,242,493 -3121407,161,195,356 -3121408,190,225,415 -3121409,192,231,423 -3121410,173,164,337 -3121411,266,260,526 -3121412,195,222,417 -3121413,140,145,285 -3121501,96,99,195 -3121502,175,258,433 -3121503,83,57,140 -3121504,318,303,621 -3121505,255,254,509 -3121506,212,171,383 -3121507,78,133,211 -3121508,232,239,471 -3121509,209,251,460 -3121510,163,171,334 -3121511,201,205,406 -3121512,230,252,482 -3121513,186,172,358 -3121514,183,189,372 -3121515,255,243,498 -3121516,121,136,257 -3121517,184,203,387 -3121601,241,239,480 -3121602,212,233,445 -3121603,253,278,531 -3121604,3,6,9 -3121605,106,108,214 -3121606,0,0,0 -3121607,163,149,312 -3121608,0,0,0 -3121609,64,52,116 -3121610,133,154,287 -3121611,128,123,251 -3121612,70,60,130 -3121613,181,185,366 -3121614,125,129,254 -3121615,233,234,467 -3121616,200,255,455 -3121617,281,288,569 -3121618,203,196,399 -3121619,162,178,340 -3121620,102,124,226 -3121621,145,168,313 -3121701,163,155,318 -3121702,75,49,124 -3121703,112,90,202 -3121704,176,188,364 -3121705,253,249,502 -3121706,189,192,381 -3121707,286,231,517 -3121708,275,202,477 -3121709,213,185,398 -3121710,185,158,343 -3121801,258,213,471 -3121802,145,137,282 -3121803,120,96,216 -3121804,156,145,301 -3121805,132,129,261 -3121806,127,129,256 -3121807,221,201,422 -3121808,147,113,260 -3121809,111,91,202 -3121810,105,85,190 -3121811,143,122,265 -3121901,92,97,189 -3121902,0,0,0 -3121903,262,205,467 -3121904,176,136,312 -3121905,101,106,207 -3121906,140,121,261 -3121907,19,17,36 -3121908,192,171,363 -3121909,92,81,173 -3121910,197,195,392 -3121911,113,113,226 -3121912,133,118,251 -3121913,120,113,233 -3121914,130,110,240 -3121915,0,0,0 -3121916,215,217,432 -3121917,125,112,237 -3122001,131,124,255 -3122002,176,134,310 -3122003,117,104,221 -3122004,172,131,303 -3122005,160,141,301 -3122006,209,221,430 -3122007,254,254,508 -3122008,184,183,367 -3122101,4,4,8 -3122201,181,222,403 -3122202,82,200,282 -3122203,208,194,402 -3122204,119,125,244 -3122205,205,226,431 -3122206,172,160,332 -3122207,137,145,282 -3122208,165,168,333 -3122209,211,224,435 -3122210,213,180,393 -3122211,148,157,305 -3122212,152,280,432 -3122213,291,304,595 -3122214,172,178,350 -3122215,143,196,339 -3122216,221,311,532 -3122217,166,149,315 -3122218,239,230,469 -3122219,123,115,238 -3122220,259,290,549 -3122221,144,127,271 -3122222,159,174,333 -3122301,162,162,324 -3122302,133,142,275 -3122303,316,297,613 -3122304,179,172,351 -3122305,218,224,442 -3122306,334,314,648 -3122307,325,288,613 -3122308,237,222,459 -3122309,112,108,220 -3122310,167,181,348 -3122311,232,238,470 -3122312,147,129,276 -3122313,149,137,286 -3122314,180,164,344 -3122315,347,385,732 -3122316,169,164,333 -3122317,228,220,448 -3122318,128,130,258 -3122319,198,210,408 -3122320,182,304,486 -3122321,155,164,319 -3122322,166,196,362 -3122323,160,135,295 -3122324,243,266,509 -3122325,125,121,246 -3122326,163,160,323 -3122327,110,120,230 -3122328,101,131,232 -3122329,212,235,447 -3122330,159,158,317 -3122331,179,152,331 -3122332,121,137,258 -3122333,147,151,298 -3122334,147,181,328 -3122335,304,15,319 -3122336,195,190,385 -3122337,359,380,739 -3122338,233,219,452 -3122339,138,127,265 -3122340,222,234,456 -3122341,236,231,467 -3122342,221,222,443 -3122401,210,233,443 -3122402,129,130,259 -3122403,216,226,442 -3122404,172,176,348 -3122405,180,200,380 -3122406,182,166,348 -3122407,222,215,437 -3122408,155,151,306 -3122409,121,108,229 -3122410,299,308,607 -3122411,196,203,399 -3122412,239,262,501 -3122413,215,224,439 -3122414,163,173,336 -3122415,135,142,277 -3122416,156,136,292 -3122417,253,274,527 -3122418,141,155,296 -3122419,103,102,205 -3122420,232,246,478 -3122501,117,140,257 -3122502,103,101,204 -3122503,146,131,277 -3122504,152,137,289 -3122505,133,169,302 -3122506,125,240,365 -3122507,3,3,6 -3122508,208,204,412 -3122509,192,232,424 -3122510,99,91,190 -3122511,136,213,349 -3122512,151,140,291 -3122513,262,252,514 -3122514,177,192,369 -3122515,203,218,421 -3122516,273,261,534 -3122517,139,161,300 -3122518,436,475,911 -3122519,178,204,382 -3122520,220,239,459 -3122521,127,135,262 -3122522,234,229,463 -3122523,35,14,49 -3122601,264,270,534 -3122602,201,243,444 -3122603,192,214,406 -3122604,208,223,431 -3122605,193,223,416 -3122606,250,288,538 -3122607,188,194,382 -3122608,266,295,561 -3122609,247,251,498 -3122610,100,110,210 -3122611,167,172,339 -3122612,170,173,343 -3122613,291,332,623 -3122614,105,149,254 -3122615,267,265,532 -3122616,159,169,328 -3122617,0,0,0 -3122618,230,246,476 -3122619,205,227,432 -3122620,191,192,383 -3122621,136,128,264 -3122622,204,253,457 -3122623,169,177,346 -3122624,202,210,412 -3122625,253,227,480 -3122626,404,486,890 -3122627,329,411,740 -3122628,120,166,286 -3122629,167,191,358 -3122630,167,164,331 -3122631,148,152,300 -3122632,180,206,386 -3122633,243,227,470 -3122701,223,216,439 -3122702,233,262,495 -3122703,253,230,483 -3122704,176,184,360 -3122705,193,178,371 -3122706,119,141,260 -3122707,211,187,398 -3122708,332,329,661 -3122709,338,301,639 -3122710,136,134,270 -3122711,379,378,757 -3122712,302,289,591 -3122713,312,292,604 -3122714,273,294,567 -3122715,249,267,516 -3122716,221,235,456 -3122717,300,300,600 -3122718,154,182,336 -3122719,266,288,554 -3122720,227,235,462 -3122721,283,236,519 -3122801,108,124,232 -3122802,125,128,253 -3122803,146,155,301 -3122804,186,208,394 -3122805,142,138,280 -3122806,213,229,442 -3122807,186,197,383 -3122808,194,191,385 -3122809,181,195,376 -3122810,245,238,483 -3122811,194,215,409 -3122812,254,258,512 -3122813,227,243,470 -3122814,180,192,372 -3122815,216,230,446 -3122816,0,0,0 -3122817,202,231,433 -3122818,133,165,298 -3122819,200,274,474 -3122820,271,270,541 -3122821,105,103,208 -3122822,201,198,399 -3122823,259,267,526 -3122824,173,170,343 -3122825,280,253,533 -3122826,224,217,441 -3122827,239,280,519 -3122828,197,215,412 -3122829,210,240,450 -3122830,224,252,476 -3122901,183,209,392 -3122902,76,92,168 -3122903,211,237,448 -3122904,195,204,399 -3122905,206,221,427 -3122906,159,199,358 -3122907,231,208,439 -3122908,273,251,524 -3122909,203,218,421 -3122910,201,223,424 -3122911,180,189,369 -3122912,308,327,635 -3122913,205,209,414 -3122914,273,297,570 -3122915,0,0,0 -3122916,175,196,371 -3123001,214,215,429 -3123002,144,136,280 -3123003,209,220,429 -3123004,210,197,407 -3123005,233,241,474 -3123006,236,194,430 -3123007,253,244,497 -3123008,207,216,423 -3123009,241,226,467 -3123010,219,223,442 -3123011,276,266,542 -3123012,158,215,373 -3123101,120,123,243 -3123102,160,166,326 -3123103,173,186,359 -3123104,295,301,596 -3123105,213,188,401 -3123106,209,197,406 -3123107,118,114,232 -3123108,143,142,285 -3123109,183,189,372 -3123110,276,282,558 -3123111,121,123,244 -3123112,196,184,380 -3123113,5,3,8 -3123114,201,202,403 -3123115,508,548,1056 -3123116,239,244,483 -3123117,106,109,215 -3123118,154,142,296 -3123119,235,260,495 -3123120,304,325,629 -3123121,222,219,441 -3123122,202,205,407 -3123123,239,266,505 -3123124,223,235,458 -3123125,150,158,308 -3123126,150,174,324 -3123201,141,159,300 -3123202,193,230,423 -3123203,170,193,363 -3123204,169,147,316 -3123205,160,162,322 -3123206,245,273,518 -3123207,215,224,439 -3123208,145,156,301 -3123209,193,199,392 -3123210,267,275,542 -3123211,177,246,423 -3123212,103,114,217 -3123213,186,196,382 -3123214,247,247,494 -3123215,125,133,258 -3123216,179,203,382 -3123217,177,183,360 -3123218,92,124,216 -3123219,149,137,286 -3123220,256,272,528 -3123221,13,12,25 -3123222,175,199,374 -3123223,8,9,17 -3123224,148,158,306 -3123225,196,198,394 -3123226,158,147,305 -3123301,191,195,386 -3123302,132,140,272 -3123303,196,215,411 -3123304,148,184,332 -3123305,164,167,331 -3123306,137,156,293 -3123307,227,227,454 -3123308,267,273,540 -3123309,291,316,607 -3123310,280,329,609 -3123311,133,169,302 -3123312,135,122,257 -3123313,146,156,302 -3123314,114,109,223 -3123315,196,184,380 -3123316,150,235,385 -3123317,171,192,363 -3123318,147,182,329 -3123319,274,289,563 -3123320,147,137,284 -3123321,174,166,340 -3123322,238,225,463 -3123323,151,162,313 -3123324,209,224,433 -3123325,187,174,361 -3123326,3,3,6 -3123327,0,0,0 -3123328,163,171,334 -3123329,221,259,480 -3123330,260,257,517 -3123331,94,115,209 -3123332,266,307,573 -3123333,0,0,0 -3123401,138,126,264 -3123402,119,125,244 -3123403,123,120,243 -3123404,247,271,518 -3123405,177,197,374 -3123406,262,282,544 -3123407,159,156,315 -3123408,286,317,603 -3123409,256,278,534 -3123410,0,0,0 -3123411,123,165,288 -3123412,140,181,321 -3123413,283,299,582 -3123414,300,305,605 -3123415,413,377,790 -3123416,241,268,509 -3123417,260,282,542 -3123418,220,235,455 -3123419,209,225,434 -3123420,223,211,434 -3123421,144,157,301 -3123422,239,209,448 -3123423,303,285,588 -3123424,203,211,414 -3123425,242,233,475 -3123426,277,283,560 -3123427,274,282,556 -3123428,277,299,576 -3123429,214,204,418 -3123430,162,158,320 -3123431,132,115,247 -3123432,221,232,453 -3123501,186,227,413 -3123502,124,178,302 -3123503,0,0,0 -3123504,204,202,406 -3123505,111,105,216 -3123506,167,181,348 -3123507,278,307,585 -3123508,247,260,507 -3123509,183,202,385 -3123510,0,4,4 -3123511,0,0,0 -3123512,239,252,491 -3123513,181,167,348 -3123514,133,142,275 -3123515,308,338,646 -3123516,181,175,356 -3123517,193,219,412 -3123518,226,221,447 -3123519,178,180,358 -3123520,203,246,449 -3123521,163,182,345 -3123522,197,228,425 -3123523,304,324,628 -3123524,168,179,347 -3123525,126,125,251 -3123526,322,298,620 -3123601,0,0,0 -3123602,325,361,686 -3123603,6,4,10 -3123604,242,266,508 -3123605,122,143,265 -3123606,124,147,271 -3123607,197,227,424 -3123608,197,215,412 -3123609,148,182,330 -3123610,172,185,357 -3123611,231,273,504 -3123612,245,264,509 -3123613,282,255,537 -3123614,326,324,650 -3123615,83,114,197 -3123616,342,344,686 -3123701,153,213,366 -3123702,409,535,944 -3123703,94,110,204 -3123704,0,0,0 -3123705,0,0,0 -3123706,117,129,246 -3123707,146,184,330 -3123708,203,278,481 -3123709,147,165,312 -3123710,221,234,455 -3123711,285,284,569 -3123712,233,245,478 -3123713,240,304,544 -3123714,131,218,349 -3123715,203,254,457 -3123716,175,191,366 -3123717,237,245,482 -3123718,192,203,395 -3123719,242,314,556 -3123720,183,191,374 -3123721,203,206,409 -3123722,232,237,469 -3123723,150,169,319 -3123724,157,191,348 -3123725,135,195,330 -3123801,121,143,264 -3123802,251,293,544 -3123803,218,265,483 -3123804,200,213,413 -3123805,157,170,327 -3123806,176,205,381 -3123807,122,113,235 -3123808,161,175,336 -3123809,186,189,375 -3123810,254,269,523 -3123811,115,129,244 -3123812,189,177,366 -3123813,206,225,431 -3123814,215,286,501 -3123815,118,156,274 -3123816,168,230,398 -3123817,185,178,363 -3123818,177,196,373 -3123819,268,299,567 -3123820,241,200,441 -3123821,95,163,258 -3123822,129,148,277 -3123823,210,217,427 -3123824,430,415,845 -3123825,212,239,451 -3123826,251,240,491 -3123827,161,147,308 -3123828,202,234,436 -3123829,221,201,422 -3123830,167,200,367 -3123831,221,253,474 -3123832,195,188,383 -3123833,252,256,508 -3123834,253,260,513 -3123835,261,345,606 -3123836,175,201,376 -3123837,127,136,263 -3123838,193,214,407 -3123839,192,203,395 -3123840,185,154,339 -3123841,9,10,19 -3123901,223,221,444 -3123902,183,202,385 -3123903,155,172,327 -3123904,266,273,539 -3123905,173,153,326 -3123906,189,185,374 -3123907,251,262,513 -3123908,203,204,407 -3123909,258,262,520 -3123910,165,176,341 -3123911,322,317,639 -3123912,254,243,497 -3123913,323,298,621 -3123914,339,353,692 -3123915,206,209,415 -3123916,181,167,348 -3123917,186,186,372 -3123918,165,184,349 -3123919,246,255,501 -3124001,149,144,293 -3124002,123,127,250 -3124003,0,0,0 -3124004,200,188,388 -3124005,194,214,408 -3124006,169,192,361 -3124007,116,132,248 -3124008,180,205,385 -3124009,138,148,286 -3124010,206,221,427 -3124011,227,234,461 -3124012,237,236,473 -3124013,325,352,677 -3124014,262,395,657 -3124015,166,190,356 -3124016,124,129,253 -3124017,216,217,433 -3124018,155,166,321 -3124019,411,464,875 -3124020,143,135,278 -3124021,221,269,490 -3124022,193,203,396 -3124023,99,97,196 -3124101,129,141,270 -3124102,0,0,0 -3124103,162,199,361 -3124104,175,119,294 -3124105,192,195,387 -3124106,208,203,411 -3124107,140,142,282 -3124108,136,146,282 -3124109,196,197,393 -3124110,200,186,386 -3124111,186,166,352 -3124112,189,169,358 -3124113,112,113,225 -3124201,191,184,375 -3124202,167,145,312 -3124203,155,158,313 -3124204,140,140,280 -3124205,184,182,366 -3124206,212,233,445 -3124207,219,227,446 -3124208,145,146,291 -3124209,125,135,260 -3124210,121,129,250 -3124211,253,289,542 -3124212,82,85,167 -3124213,159,178,337 -3124214,235,244,479 -3124215,194,200,394 -3124216,205,209,414 -3124217,177,212,389 -3124218,141,179,320 -3124219,86,43,129 -3124220,218,225,443 -3124221,157,142,299 -3124222,198,206,404 -3124223,91,109,200 -3124224,122,131,253 -3124225,161,166,327 -3124226,115,110,225 -3124227,185,201,386 -3124228,115,153,268 -3124229,268,269,537 -3124230,242,232,474 -3124231,113,106,219 -3124232,117,107,224 -3124233,262,314,576 -3124234,178,192,370 -3124235,167,195,362 -3124236,221,210,431 -3124237,147,133,280 -3124238,156,176,332 -3124301,201,189,390 -3124302,162,159,321 -3124303,275,289,564 -3124304,23,21,44 -3124305,143,177,320 -3124306,301,316,617 -3124307,292,292,584 -3124308,147,146,293 -3124309,231,220,451 -3124310,206,187,393 -3124311,188,214,402 -3124312,214,196,410 -3124313,195,190,385 -3124314,129,118,247 -3124315,210,220,430 -3124316,170,176,346 -3124317,141,125,266 -3124318,173,162,335 -3124401,73,81,154 -3124402,115,104,219 -3124403,154,162,316 -3124404,84,76,160 -3124405,201,249,450 -3124406,216,236,452 -3124407,216,199,415 -3124408,232,251,483 -3124409,153,152,305 -3124410,0,0,0 -3124411,0,0,0 -3124412,159,162,321 -3124413,216,236,452 -3124414,255,299,554 -3124415,104,103,207 -3124416,276,276,552 -3124417,149,164,313 -3124418,128,144,272 -3124419,169,178,347 -3124420,316,299,615 -3124421,214,252,466 -3124422,117,127,244 -3124423,299,266,565 -3124424,220,237,457 -3124425,249,265,514 -3124426,151,154,305 -3124427,184,198,382 -3124428,173,166,339 -3124429,376,371,747 -3124430,422,436,858 -3124431,211,250,461 -3124432,240,215,455 -3124433,225,217,442 -3124434,175,163,338 -3124435,263,287,550 -3124436,188,164,352 -3124437,123,124,247 -3124438,228,247,475 -3124439,163,199,362 -3124440,150,151,301 -3124441,149,154,303 -3124442,150,165,315 -3124443,278,280,558 -3124444,181,170,351 -3124445,206,220,426 -3124501,568,614,1182 -3124502,92,110,202 -3124503,276,314,590 -3124504,191,239,430 -3124505,260,278,538 -3124506,224,224,448 -3124507,127,153,280 -3124508,465,491,956 -3124509,290,357,647 -3124510,316,351,667 -3124511,165,204,369 -3124512,260,306,566 -3124601,13,19,32 -3124602,193,206,399 -3124603,346,361,707 -3124604,166,182,348 -3124605,133,178,311 -3124606,11,4,15 -3124607,356,387,743 -3124608,157,147,304 -3124609,218,209,427 -3124610,218,238,456 -3124611,281,284,565 -3124612,105,112,217 -3124613,222,198,420 -3124614,121,153,274 -3124615,64,75,139 -3124616,174,182,356 -3124617,336,389,725 -3124618,125,149,274 -3124619,160,151,311 -3124620,161,140,301 -3124621,226,151,377 -3124622,131,88,219 -3124623,284,358,642 -3124624,328,383,711 -3124625,173,193,366 -3124626,222,232,454 -3124627,226,246,472 -3124628,285,299,584 -3124629,190,221,411 -3124630,0,0,0 -3124631,3,7,10 -3124701,210,241,451 -3124702,147,147,294 -3124703,191,199,390 -3124704,257,268,525 -3124705,278,277,555 -3124706,162,189,351 -3124707,276,264,540 -3124708,226,258,484 -3124709,140,132,272 -3124710,186,155,341 -3124711,212,204,416 -3124712,125,115,240 -3124713,131,144,275 -3124714,120,119,239 -3124715,174,191,365 -3124716,139,146,285 -3124717,142,161,303 -3124718,216,272,488 -3124719,0,0,0 -3124720,138,124,262 -3124721,237,244,481 -3124722,162,146,308 -3124723,174,183,357 -3124724,107,144,251 -3124801,110,100,210 -3124802,103,98,201 -3124803,186,174,360 -3124804,218,425,643 -3124805,5,5,10 -3124806,214,277,491 -3124807,221,277,498 -3124808,300,330,630 -3124809,201,203,404 -3124810,154,163,317 -3124811,213,231,444 -3124812,108,113,221 -3124813,148,161,309 -3124814,211,220,431 -3124815,145,150,295 -3124816,404,390,794 -3124817,302,351,653 -3124818,260,283,543 -3124819,249,250,499 -3124820,163,163,326 -3124821,262,316,578 -3124822,206,201,407 -3124823,191,174,365 -3124824,277,267,544 -3124825,217,248,465 -3124826,146,146,292 -3124827,0,0,0 -3124828,238,246,484 -3124829,305,272,577 -3124830,138,144,282 -3124831,245,251,496 -3124832,352,411,763 -3124833,226,265,491 -3124834,171,196,367 -3124835,166,181,347 -3124836,157,143,300 -3124837,223,222,445 -3124838,135,172,307 -3124839,248,257,505 -3124840,278,243,521 -3124841,118,124,242 -3124842,179,177,356 -3124843,230,238,468 -3124844,159,143,302 -3124845,0,0,0 -3124846,185,190,375 -3124847,110,154,264 -3124901,141,141,282 -3124902,157,162,319 -3124903,173,181,354 -3124904,157,166,323 -3124905,181,182,363 -3124906,154,141,295 -3124907,247,246,493 -3124908,174,182,356 -3124909,267,285,552 -3124910,408,402,810 -3124911,467,494,961 -3124912,384,404,788 -3124913,197,223,420 -3124914,303,292,595 -3124915,224,212,436 -3124916,277,275,552 -3124917,187,173,360 -3124918,161,151,312 -3124919,124,130,254 -3124920,254,245,499 -3124921,221,218,439 -3124922,233,262,495 -3124923,301,341,642 -3124924,241,220,461 -3124925,273,275,548 -3124926,538,516,1054 -3124927,335,348,683 -3124928,597,650,1247 -3124929,161,155,316 -3124930,264,288,552 -3124931,308,304,612 -3125001,224,219,443 -3125002,213,231,444 -3125003,229,210,439 -3125004,259,254,513 -3125005,170,174,344 -3125006,300,275,575 -3125007,233,215,448 -3125008,184,180,364 -3125009,162,273,435 -3125010,189,209,398 -3125011,244,237,481 -3125012,247,240,487 -3125013,104,91,195 -3125014,254,274,528 -3125015,228,226,454 -3125016,150,160,310 -3125017,282,291,573 -3125101,1221,1193,2414 -3125102,319,315,634 -3125103,590,621,1211 -3125104,223,203,426 -3125105,453,460,913 -3125106,155,152,307 -3125107,281,280,561 -3125108,195,202,397 -3125109,203,207,410 -3125110,268,279,547 -3125111,280,276,556 -3125112,201,213,414 -3125201,195,213,408 -3125202,143,227,370 -3125203,233,207,440 -3125204,175,203,378 -3125205,133,131,264 -3125206,150,155,305 -3125207,283,292,575 -3125208,369,359,728 -3125209,393,426,819 -3125210,266,263,529 -3125211,189,213,402 -3125212,16,14,30 -3125213,227,244,471 -3125214,273,269,542 -3125215,181,164,345 -3125216,219,227,446 -3125217,125,110,235 -3125218,192,179,371 -3125219,132,138,270 -3125220,220,235,455 -3125221,0,0,0 -3125222,170,193,363 -3125223,113,126,239 -3125224,201,221,422 -3125225,190,198,388 -3125226,169,174,343 -3125227,190,171,361 -3125228,237,214,451 -3125229,127,121,248 -3125230,287,288,575 -3125231,87,152,239 -3125232,270,298,568 -3125233,168,195,363 -3125234,215,224,439 -3125235,276,276,552 -3125236,324,342,666 -3125237,140,199,339 -3125238,268,283,551 -3125239,237,245,482 -3125301,77,89,166 -3125302,137,134,271 -3125303,234,230,464 -3125304,182,223,405 -3125305,143,141,284 -3125306,228,198,426 -3125307,207,218,425 -3125308,205,209,414 -3125309,0,0,0 -3125310,200,219,419 -3125311,226,245,471 -3125312,245,256,501 -3125313,405,387,792 -3125314,120,122,242 -3125315,7,3,10 -3125316,187,203,390 -3125317,414,388,802 -3125318,238,239,477 -3125319,173,177,350 -3125320,207,215,422 -3125321,129,129,258 -3125322,239,249,488 -3125323,64,37,101 -3125401,4,0,4 -3125402,239,201,440 -3125403,266,276,542 -3125404,143,128,271 -3125405,284,245,529 -3125406,93,109,202 -3125407,174,174,348 -3125408,117,115,232 -3125409,250,210,460 -3125410,148,133,281 -3125501,101,103,204 -3125502,111,118,229 -3125503,148,159,307 -3125504,295,271,566 -3125505,93,82,175 -3125506,341,306,647 -3125507,211,231,442 -3125508,210,168,378 -3125509,165,162,327 -3125510,110,117,227 -3125511,232,206,438 -3125512,197,194,391 -3125513,223,225,448 -3125514,204,183,387 -3125515,285,296,581 -3125516,235,254,489 -3125517,225,223,448 -3125518,367,395,762 -3125519,226,228,454 -3125520,195,192,387 -3125521,21,12,33 -3125522,417,414,831 -3125523,144,163,307 -3125524,255,253,508 -3125525,474,482,956 -3125526,22,13,35 -3125527,119,87,206 -3125528,132,104,236 -3125529,163,152,315 -3125530,299,300,599 -3125531,106,111,217 -3125532,568,584,1152 -3125533,445,439,884 -3125534,250,291,541 -3125535,237,259,496 -3125536,160,143,303 -3125601,182,200,382 -3125602,166,168,334 -3125603,0,0,0 -3125604,208,221,429 -3125605,168,161,329 -3125606,0,0,0 -3125607,0,0,0 -3125608,121,127,248 -3125609,243,213,456 -3125610,243,263,506 -3125611,369,386,755 -3125612,305,309,614 -3125613,266,272,538 -3125614,476,449,925 -3125615,271,246,517 -3125616,303,290,593 -3125617,172,169,341 -3125618,176,162,338 -3125619,179,195,374 -3125620,212,220,432 -3125621,223,224,447 -3125622,214,231,445 -3125623,249,231,480 -3125624,211,219,430 -3125625,188,202,390 -3125626,177,178,355 -3125627,458,480,938 -3125628,207,246,453 -3125629,193,228,421 -3125630,197,224,421 -3125631,174,184,358 -3125632,139,132,271 -3125633,190,194,384 -3125634,217,253,470 -3125701,153,154,307 -3125702,203,192,395 -3125703,131,152,283 -3125704,396,399,795 -3125705,707,724,1431 -3125801,256,262,518 -3125802,209,248,457 -3125803,179,204,383 -3125804,251,258,509 -3125805,191,170,361 -3125806,98,103,201 -3125807,167,136,303 -3125808,166,155,321 -3125809,225,238,463 -3125810,262,248,510 -3125811,168,142,310 -3125812,481,492,973 -3125813,463,462,925 -3125814,233,242,475 -3125815,122,109,231 -3125816,200,186,386 -3125817,143,143,286 -3125818,131,135,266 -3125819,186,191,377 -3125820,765,804,1569 -3125821,537,556,1093 -3125822,212,221,433 -3125823,136,134,270 -3125824,325,366,691 -3125825,129,152,281 -3125826,185,168,353 -3125827,146,153,299 -3125828,313,333,646 -3125829,181,186,367 -3125830,166,144,310 -3125831,217,220,437 -3125832,226,228,454 -3125833,255,260,515 -3125834,266,258,524 -3125835,351,349,700 -3125836,325,358,683 -3125837,323,421,744 -3125838,212,191,403 -3125839,189,209,398 -3125840,342,381,723 -3125841,656,676,1332 -3125842,237,251,488 -3125843,246,278,524 -3125844,142,159,301 -3125845,78,96,174 -3125846,309,329,638 -3125847,163,153,316 -3125901,196,224,420 -3125902,71,148,219 -3125903,236,257,493 -3125904,143,176,319 -3125905,234,246,480 -3125906,225,239,464 -3125907,155,166,321 -3125908,194,202,396 -3125909,244,238,482 -3125910,186,213,399 -3126001,200,214,414 -3126002,354,432,786 -3126003,252,275,527 -3126004,162,175,337 -3126005,157,153,310 -3126006,251,314,565 -3126007,217,237,454 -3126008,264,273,537 -3126009,144,166,310 -3126010,250,246,496 -3126011,214,257,471 -3126012,178,179,357 -3126013,194,211,405 -3126014,163,177,340 -3126101,138,157,295 -3126102,275,278,553 -3126103,278,289,567 -3126104,193,210,403 -3126105,282,314,596 -3126106,179,280,459 -3126107,155,184,339 -3126108,155,170,325 -3126109,134,127,261 -3126110,237,237,474 -3126111,254,300,554 -3126112,301,356,657 -3126113,207,263,470 -3126114,260,288,548 -3126115,274,293,567 -3126116,172,205,377 -3126117,207,209,416 -3126118,194,218,412 -3126119,173,190,363 -3126120,251,322,573 -3126121,194,193,387 -3126122,173,168,341 -3126123,141,171,312 -3126124,248,279,527 -3126125,159,186,345 -3126126,182,205,387 -3126127,254,304,558 -3126128,108,129,237 -3126129,146,154,300 -3126130,167,156,323 -3126131,137,164,301 -3126132,73,84,157 -3126133,198,194,392 -3126134,151,164,315 -3126135,213,208,421 -3126136,243,277,520 -3126137,153,158,311 -3126138,191,183,374 -3126139,190,210,400 -3126140,174,191,365 -3126141,136,158,294 -3126142,164,180,344 -3126143,162,158,320 -3126144,133,150,283 -3126145,171,170,341 -3126146,233,244,477 -3126147,200,206,406 -3126148,219,221,440 -3126149,218,234,452 -3126150,109,154,263 -3126151,195,232,427 -3126201,271,290,561 -3126202,232,242,474 -3126203,201,238,439 -3126204,390,391,781 -3126205,126,129,255 -3126206,178,174,352 -3126207,278,281,559 -3126208,447,507,954 -3126209,250,333,583 -3126210,252,255,507 -3126211,187,175,362 -3126212,122,167,289 -3126213,221,239,460 -3126214,376,411,787 -3126215,230,341,571 -3126216,292,322,614 -3126217,296,282,578 -3126218,143,155,298 -3126219,263,268,531 -3126220,105,132,237 -3126221,228,259,487 -3126222,390,404,794 -3126223,263,287,550 -3126224,64,87,151 -3126225,215,258,473 -3126226,199,203,402 -3126227,382,388,770 -3126228,262,267,529 -3126301,162,166,328 -3126302,128,124,252 -3126303,94,131,225 -3126304,238,225,463 -3126305,154,181,335 -3126306,198,205,403 -3126307,179,206,385 -3126308,225,246,471 -3126309,173,193,366 -3126310,121,111,232 -3126311,218,199,417 -3126312,177,198,375 -3126313,252,266,518 -3126314,187,154,341 -3126315,164,222,386 -3126316,263,230,493 -3126317,161,158,319 -3126318,199,294,493 -3126319,178,185,363 -3126320,232,239,471 -3126321,142,145,287 -3126322,161,345,506 -3126323,357,411,768 -3126324,7,0,7 -3126325,149,149,298 -3126326,107,124,231 -3126327,287,320,607 -3126328,226,225,451 -3126329,226,273,499 -3126330,129,176,305 -3126401,175,194,369 -3126402,289,293,582 -3126403,3,0,3 -3126404,290,274,564 -3126405,271,307,578 -3126406,227,188,415 -3126407,229,242,471 -3126408,246,234,480 -3126409,432,408,840 -3126410,212,182,394 -3126411,190,201,391 -3126412,285,327,612 -3126413,225,276,501 -3126414,3,0,3 -3126501,194,199,393 -3126502,265,271,536 -3126503,354,331,685 -3126504,222,208,430 -3126505,205,213,418 -3126506,169,176,345 -3126507,218,204,422 -3126508,140,148,288 -3126509,244,239,483 -3126510,212,231,443 -3126511,342,387,729 -3126512,369,326,695 -3126513,171,173,344 -3126514,284,297,581 -3126515,224,203,427 -3126516,134,143,277 -3126517,159,160,319 -3126518,317,293,610 -3126601,160,131,291 -3126602,183,189,372 -3126603,130,154,284 -3126604,0,0,0 -3126605,193,187,380 -3126606,240,263,503 -3126607,96,108,204 -3126608,355,118,473 -3126609,290,317,607 -3126610,117,125,242 -3126611,139,141,280 -3126612,227,245,472 -3126613,270,221,491 -3126614,158,236,394 -3126615,273,286,559 -3126616,195,210,405 -3126617,445,462,907 -3126618,434,488,922 -3126619,238,243,481 -3126620,256,269,525 -3126621,143,138,281 -3126622,249,280,529 -3126623,210,237,447 -3126624,180,194,374 -3126625,268,296,564 -3126626,109,120,229 -3126627,291,321,612 -3126628,149,174,323 -3126629,320,287,607 -3126630,190,203,393 -3126631,233,261,494 -3126632,179,149,328 -3126633,182,192,374 -3126634,349,391,740 -3126635,288,295,583 -3126636,188,230,418 -3126637,867,803,1670 -3126638,424,448,872 -3126639,281,302,583 -3126640,196,187,383 -3126641,113,204,317 -3126642,201,224,425 -3126643,215,244,459 -3126644,155,152,307 -3126645,158,174,332 -3126646,37,166,203 -3126647,125,172,297 -3126648,0,3,3 -3126649,253,310,563 -3126650,233,239,472 -3126651,214,239,453 -3126652,173,257,430 -3126653,214,258,472 -3126654,175,175,350 -3126655,190,160,350 -3126656,233,248,481 -3126657,158,149,307 -3126658,184,194,378 -3126659,299,327,626 -3126660,222,266,488 -3126661,182,175,357 -3126662,174,229,403 -3126663,136,119,255 -3126701,383,386,769 -3126702,188,215,403 -3126703,151,163,314 -3126704,199,195,394 -3126705,187,195,382 -3126706,211,259,470 -3126707,151,172,323 -3126708,245,256,501 -3126709,204,222,426 -3126710,231,232,463 -3126711,106,102,208 -3126712,153,142,295 -3126713,245,237,482 -3126714,124,130,254 -3126715,118,239,357 -3126716,202,236,438 -3126717,220,226,446 -3126718,235,238,473 -3126719,129,151,280 -3126720,148,154,302 -3126801,149,149,298 -3126802,99,110,209 -3126803,168,162,330 -3126804,277,291,568 -3126805,212,208,420 -3126806,138,134,272 -3126807,97,103,200 -3126808,273,289,562 -3126809,228,232,460 -3126810,4,4,8 -3126811,163,156,319 -3126812,260,285,545 -3126901,191,152,343 -3126902,174,134,308 -3126903,162,121,283 -3126904,237,299,536 -3126905,207,213,420 -3126906,182,164,346 -3126907,147,166,313 -3126908,268,258,526 -3126909,229,193,422 -3127001,138,110,248 -3127002,223,266,489 -3127003,205,196,401 -3127004,232,230,462 -3127005,308,268,576 -3127006,280,270,550 -3127007,237,191,428 -3127008,181,205,386 -3127009,82,95,177 -3127010,148,168,316 -3127011,219,215,434 -3127012,208,199,407 -3127013,225,213,438 -3127014,135,113,248 -3127015,208,202,410 -3127016,382,324,706 -3127017,241,238,479 -3127018,306,215,521 -3127019,235,168,403 -3127020,141,131,272 -3127021,248,202,450 -3127022,386,343,729 -3127023,309,271,580 -3127024,156,141,297 -3127025,216,191,407 -3127026,195,194,389 -3127027,238,180,418 -3127028,310,241,551 -3127029,264,232,496 -3127030,244,217,461 -3127031,330,252,582 -3127032,167,187,354 -3127033,143,148,291 -3127034,169,133,302 -3127035,218,234,452 -3127036,250,270,520 -3127037,181,162,343 -3127038,155,143,298 -3127039,172,157,329 -3127040,295,275,570 -3127041,164,152,316 -3127042,232,223,455 -3127043,243,241,484 -3127044,315,271,586 -3127045,168,164,332 -3127046,163,162,325 -3127101,208,170,378 -3127102,8,9,17 -3127103,228,223,451 -3127104,286,276,562 -3127105,274,261,535 -3127106,6,0,6 -3127107,182,188,370 -3127108,6,4,10 -3127109,0,0,0 -3127110,185,147,332 -3127111,250,230,480 -3127112,219,203,422 -3127113,272,252,524 -3127114,0,0,0 -3127115,141,152,293 -3127201,0,0,0 -3127202,180,193,373 -3127203,132,392,524 -3127204,217,185,402 -3127205,279,264,543 -3127206,262,276,538 -3127207,154,177,331 -3127208,157,157,314 -3127209,265,266,531 -3127210,138,152,290 -3127211,157,171,328 -3127212,199,192,391 -3127213,206,209,415 -3127214,222,221,443 -3127215,294,240,534 -3127216,304,288,592 -3127217,4,9,13 -3127301,143,150,293 -3127302,133,149,282 -3127303,343,325,668 -3127304,121,151,272 -3127305,190,216,406 -3127306,290,258,548 -3127307,290,278,568 -3127308,211,266,477 -3127309,167,152,319 -3127310,195,198,393 -3127311,193,210,403 -3127312,160,147,307 -3127313,249,264,513 -3127314,324,340,664 -3127315,213,247,460 -3127316,211,206,417 -3127317,174,196,370 -3127318,277,268,545 -3127319,153,172,325 -3127320,40,38,78 -3127321,280,294,574 -3127322,106,127,233 -3127323,276,293,569 -3127324,162,171,333 -3127325,183,198,381 -3127326,156,169,325 -3127327,142,164,306 -3127328,288,341,629 -3127329,176,188,364 -3127330,146,173,319 -3127331,235,245,480 -3127332,132,156,288 -3127333,171,199,370 -3127334,192,182,374 -3127335,147,200,347 -3127336,164,174,338 -3127337,250,290,540 -3127338,150,148,298 -3127339,270,322,592 -3127340,241,263,504 -3127341,271,257,528 -3127342,166,174,340 -3127343,165,172,337 -3127344,205,218,423 -3127345,214,227,441 -3127346,257,283,540 -3127347,192,233,425 -3127348,261,292,553 -3127349,293,305,598 -3127350,214,227,441 -3127351,213,219,432 -3127352,167,170,337 -3127353,617,564,1181 -3127354,141,156,297 -3127355,230,224,454 -3127356,213,243,456 -3127357,157,176,333 -3127358,135,128,263 -3127359,119,122,241 -3127360,125,134,259 -3127401,269,304,573 -3127402,0,3,3 -3127403,142,139,281 -3127404,200,177,377 -3127405,121,127,248 -3127406,239,248,487 -3127407,223,245,468 -3127408,285,290,575 -3127409,177,201,378 -3127410,193,205,398 -3127411,176,165,341 -3127412,168,171,339 -3127413,135,134,269 -3127414,187,202,389 -3127415,252,288,540 -3127416,244,264,508 -3127417,147,169,316 -3127418,144,175,319 -3127419,222,209,431 -3127420,290,321,611 -3127421,215,249,464 -3127422,183,169,352 -3127423,231,275,506 -3127424,121,139,260 -3127425,218,220,438 -3127426,149,171,320 -3127427,183,196,379 -3127428,223,215,438 -3127429,233,273,506 -3127430,243,244,487 -3127431,128,137,265 -3127432,200,232,432 -3127433,114,120,234 -3127434,281,306,587 -3127435,174,158,332 -3127436,326,305,631 -3127437,116,150,266 -3127438,275,298,573 -3127439,82,42,124 -3127501,315,304,619 -3127502,184,214,398 -3127503,146,246,392 -3127504,204,231,435 -3127505,294,288,582 -3127506,247,250,497 -3127507,92,96,188 -3127508,227,246,473 -3127509,137,121,258 -3127510,224,229,453 -3127511,71,31,102 -3127512,271,275,546 -3127513,138,153,291 -3127514,154,140,294 -3127515,165,180,345 -3127516,349,348,697 -3127517,168,188,356 -3127601,192,213,405 -3127602,48,50,98 -3127603,0,0,0 -3127604,145,139,284 -3127605,16,8,24 -3127606,120,113,233 -3127607,84,263,347 -3127608,878,0,878 -3127609,226,238,464 -3127610,276,252,528 -3127611,273,310,583 -3127612,24,0,24 -3127613,1076,0,1076 -3127701,188,224,412 -3127702,153,158,311 -3127703,126,128,254 -3127704,267,238,505 -3127705,208,203,411 -3127706,246,262,508 -3127707,379,382,761 -3127708,219,219,438 -3127709,109,109,218 -3127710,174,170,344 -3127711,100,109,209 -3127712,104,109,213 -3127713,158,154,312 -3127714,148,150,298 -3127715,143,130,273 -3127716,160,235,395 -3127717,203,192,395 -3127718,227,216,443 -3127719,223,192,415 -3127720,195,197,392 -3127721,197,193,390 -3127722,208,219,427 -3127723,146,122,268 -3127724,171,149,320 -3127725,188,181,369 -3127726,199,200,399 -3127727,246,239,485 -3127728,230,204,434 -3127729,26,35,61 -3127730,125,138,263 -3127801,145,187,332 -3127802,110,97,207 -3127803,220,238,458 -3127804,128,123,251 -3127805,99,132,231 -3127806,160,156,316 -3127807,252,255,507 -3127808,257,240,497 -3127809,161,146,307 -3127810,107,99,206 -3127811,126,123,249 -3127812,177,170,347 -3127813,132,133,265 -3127814,98,92,190 -3127815,208,214,422 -3127901,3,0,3 -3128001,241,227,468 -3128002,217,210,427 -3128003,208,214,422 -3128004,290,324,614 -3128005,154,176,330 -3128006,139,164,303 -3128007,178,179,357 -3128008,424,423,847 -3128009,125,135,260 -3128010,113,117,230 -3128011,96,96,192 -3128012,113,116,229 -3128013,161,171,332 -3128014,190,163,353 -3128015,150,153,303 -3128016,169,148,317 -3128017,117,120,237 -3128018,160,200,360 -3128019,261,345,606 -3128020,220,201,421 -3128021,129,130,259 -3128022,142,140,282 -3128023,142,115,257 -3128024,225,237,462 -3128025,118,120,238 -3128026,119,114,233 -3128027,149,136,285 -3128028,175,159,334 -3128029,143,159,302 -3128030,178,179,357 -3128031,96,100,196 -3128032,156,167,323 -3128033,121,121,242 -3128034,192,215,407 -3128035,230,223,453 -3128036,257,271,528 -3128037,138,117,255 -3128038,118,115,233 -3128039,127,152,279 -3128040,155,107,262 -3128041,149,117,266 -3128042,224,181,405 -3128043,104,113,217 -3128044,182,150,332 -3128045,232,238,470 -3128046,152,155,307 -3128047,213,202,415 -3128048,188,179,367 -3128049,189,205,394 -3128050,127,137,264 -3128051,151,150,301 -3128101,131,122,253 -3128102,138,140,278 -3128103,98,93,191 -3128104,295,265,560 -3128105,183,142,325 -3128106,157,167,324 -3128107,157,174,331 -3128108,177,196,373 -3128109,160,149,309 -3128110,125,111,236 -3128111,206,165,371 -3128112,116,78,194 -3128113,278,267,545 -3128114,244,202,446 -3128115,104,92,196 -3128116,184,193,377 -3128117,341,282,623 -3128118,274,318,592 -3128119,198,192,390 -3128120,97,99,196 -3128121,260,238,498 -3128122,242,236,478 -3128123,82,92,174 -3128124,165,173,338 -3128125,322,319,641 -3128126,178,210,388 -3128127,105,102,207 -3128128,208,221,429 -3128129,92,83,175 -3128130,176,199,375 -3128131,93,87,180 -3128132,216,191,407 -3128133,291,336,627 -3128201,109,126,235 -3128202,99,98,197 -3128203,201,212,413 -3128204,199,175,374 -3128205,113,100,213 -3128206,133,144,277 -3128207,178,239,417 -3128208,198,228,426 -3128209,106,100,206 -3128210,130,110,240 -3128211,189,173,362 -3128212,110,115,225 -3128213,197,189,386 -3128214,255,250,505 -3128215,144,120,264 -3128216,143,138,281 -3128217,216,199,415 -3128218,665,180,845 -3128219,181,175,356 -3128220,173,183,356 -3128221,124,115,239 -3128222,281,267,548 -3128223,292,324,616 -3128224,399,330,729 -3128225,25,20,45 -3128226,230,257,487 -3128227,145,150,295 -3128228,121,124,245 -3128229,373,349,722 -3128230,232,47,279 -3128231,243,237,480 -3128301,255,295,550 -3128302,221,220,441 -3128303,196,233,429 -3128304,0,0,0 -3128305,134,135,269 -3128306,0,0,0 -3128307,120,132,252 -3128308,379,420,799 -3128309,279,286,565 -3128310,160,171,331 -3128311,172,181,353 -3128312,132,149,281 -3128313,165,170,335 -3128314,204,228,432 -3128315,126,123,249 -3128316,247,315,562 -3128317,214,256,470 -3128318,122,132,254 -3128319,159,180,339 -3128320,117,136,253 -3128321,259,273,532 -3128322,179,195,374 -3128323,137,164,301 -3128324,436,437,873 -3128401,192,183,375 -3128402,135,135,270 -3128403,139,151,290 -3128404,174,149,323 -3128405,154,142,296 -3128406,271,255,526 -3128407,163,157,320 -3128408,270,262,532 -3128409,125,125,250 -3128410,265,238,503 -3128411,249,269,518 -3128412,147,171,318 -3128413,247,248,495 -3128414,220,221,441 -3128415,293,274,567 -3128416,186,191,377 -3128417,207,212,419 -3128418,138,130,268 -3128419,140,127,267 -3128420,236,270,506 -3128501,230,242,472 -3128502,130,152,282 -3128503,171,159,330 -3128504,289,266,555 -3128505,236,265,501 -3128506,292,267,559 -3128507,130,132,262 -3128508,251,231,482 -3128509,244,231,475 -3128510,277,294,571 -3128511,226,222,448 -3128512,156,169,325 -3128513,196,220,416 -3128514,125,126,251 -3128601,147,198,345 -3128602,266,195,461 -3128603,107,127,234 -3128604,170,189,359 -3128605,148,140,288 -3128606,200,198,398 -3128607,173,185,358 -3128608,301,236,537 -3128609,0,0,0 -3128610,84,157,241 -3128611,300,154,454 -3128612,197,188,385 -3128613,230,235,465 -3128614,0,6,6 -3128615,8,5,13 -3128616,196,206,402 -3128617,211,223,434 -3128618,201,176,377 -3128619,145,144,289 -3128620,113,115,228 -3128621,211,203,414 -3128701,155,198,353 -3128702,322,324,646 -3128703,197,213,410 -3128704,216,229,445 -3128705,141,155,296 -3128706,189,204,393 -3128707,173,138,311 -3128708,132,143,275 -3128709,130,142,272 -3128710,118,126,244 -3128711,167,186,353 -3128712,146,155,301 -3128713,244,257,501 -3128714,192,190,382 -3128715,221,215,436 -3128716,227,209,436 -3128717,130,125,255 -3128718,209,230,439 -3128719,147,177,324 -3128720,189,214,403 -3128721,186,178,364 -3128722,257,282,539 -3128723,286,313,599 -3128724,113,130,243 -3128725,198,195,393 -3128726,193,186,379 -3128727,147,134,281 -3128728,161,139,300 -3128729,248,210,458 -3128730,198,204,402 -3128731,112,118,230 -3128732,128,112,240 -3128733,140,164,304 -3128734,282,361,643 -3128735,184,165,349 -3128736,175,191,366 -3128737,171,198,369 -3128738,205,213,418 -3128739,164,195,359 -3128740,107,133,240 -3128741,173,182,355 -3128742,136,144,280 -3128743,164,162,326 -3128744,166,182,348 -3128745,125,149,274 -3128746,144,169,313 -3128801,174,164,338 -3128802,326,335,661 -3128803,108,114,222 -3128804,174,183,357 -3128805,162,135,297 -3128806,205,204,409 -3128807,184,172,356 -3128808,163,140,303 -3128809,220,200,420 -3128810,347,307,654 -3128811,148,134,282 -3128901,141,137,278 -3128902,216,186,402 -3128903,215,196,411 -3128904,235,221,456 -3128905,129,132,261 -3128906,312,330,642 -3128907,247,244,491 -3128908,272,245,517 -3128909,163,154,317 -3128910,137,133,270 -3128911,243,222,465 -3128912,145,127,272 -3129001,208,222,430 -3129002,186,202,388 -3129003,108,104,212 -3129004,260,263,523 -3129005,292,279,571 -3129006,294,291,585 -3129007,159,151,310 -3129008,194,203,397 -3129009,204,210,414 -3129010,122,116,238 -3129011,197,199,396 -3129012,124,130,254 -3129013,247,237,484 -3129014,184,192,376 -3129015,185,197,382 -3129101,333,359,692 -3129102,242,255,497 -3129103,208,211,419 -3129104,229,226,455 -3129105,161,188,349 -3129106,256,280,536 -3129107,22,18,40 -3129108,100,89,189 -3129109,141,145,286 -3129110,176,197,373 -3129111,229,225,454 -3129112,198,202,400 -3129113,234,237,471 -3129114,207,214,421 -3129115,269,289,558 -3129116,285,280,565 -3129117,4,4,8 -3129201,147,103,250 -3129202,0,0,0 -3129203,102,122,224 -3129204,205,209,414 -3129205,216,233,449 -3129206,129,126,255 -3129207,112,112,224 -3129208,118,115,233 -3129209,125,113,238 -3129210,177,155,332 -3129211,162,185,347 -3129212,230,219,449 -3129213,156,147,303 -3129214,200,190,390 -3129215,120,99,219 -3129216,189,194,383 -3129217,94,101,195 -3129218,151,160,311 -3129219,336,410,746 -3129220,177,178,355 -3129301,124,136,260 -3129302,225,216,441 -3129303,170,184,354 -3129304,140,159,299 -3129305,187,197,384 -3129306,215,210,425 -3129307,275,278,553 -3129308,250,284,534 -3129309,217,205,422 -3129310,203,246,449 -3129311,194,225,419 -3129312,147,215,362 -3129313,96,124,220 -3129314,271,268,539 -3129315,131,141,272 -3129316,247,247,494 -3129317,176,185,361 -3129318,169,164,333 -3129319,7,8,15 -3129320,209,204,413 -3129321,227,247,474 -3129322,85,98,183 -3129323,144,152,296 -3129324,190,275,465 -3129325,210,235,445 -3129326,161,183,344 -3129327,119,111,230 -3129328,227,251,478 -3129329,97,104,201 -3129330,414,461,875 -3129331,9,6,15 -3129332,168,181,349 -3129333,242,215,457 -3129334,191,212,403 -3129335,189,217,406 -3129336,478,571,1049 -3129401,240,224,464 -3129402,171,160,331 -3129403,162,168,330 -3129404,174,170,344 -3129405,119,107,226 -3129406,146,174,320 -3129407,203,184,387 -3129408,221,214,435 -3129501,246,263,509 -3129502,179,182,361 -3129503,11,4,15 -3129504,103,117,220 -3129505,210,224,434 -3129506,260,248,508 -3129507,137,137,274 -3129508,210,184,394 -3129509,255,279,534 -3129510,0,0,0 -3129601,18,22,40 -3129602,258,247,505 -3129603,474,456,930 -3129604,398,410,808 -3129605,324,326,650 -3129606,310,304,614 -3129607,192,175,367 -3129608,154,149,303 -3129609,201,203,404 -3129610,329,290,619 -3129611,193,192,385 -3129612,242,219,461 -3129613,11,6,17 -3129614,132,122,254 -3129615,204,178,382 -3129616,198,177,375 -3129617,275,243,518 -3129618,178,159,337 -3129619,254,242,496 -3129701,171,194,365 -3129702,179,203,382 -3129703,231,226,457 -3129704,267,213,480 -3129705,121,115,236 -3129706,111,100,211 -3129707,289,238,527 -3129708,170,163,333 -3129709,230,254,484 -3129710,127,128,255 -3129711,94,95,189 -3129712,337,273,610 -3129713,160,167,327 -3129714,0,0,0 -3129715,120,137,257 -3129716,166,168,334 -3129717,214,200,414 -3129718,230,218,448 -3129719,280,269,549 -3129720,292,306,598 -3129721,222,217,439 -3129722,186,189,375 -3129723,158,164,322 -3129724,239,195,434 -3129801,3,0,3 -3129901,132,143,275 -3129902,112,131,243 -3129903,163,149,312 -3129904,123,158,281 -3129905,257,236,493 -3129906,247,257,504 -3129907,213,201,414 -3129908,163,173,336 -3129909,213,216,429 -3129910,178,176,354 -3129911,114,131,245 -3129912,228,218,446 -3129913,132,200,332 -3129914,483,457,940 -3129915,242,254,496 -3129916,272,287,559 -3129917,0,4,4 -3129918,0,0,0 -3129919,0,0,0 -3129920,21,12,33 -3129921,115,121,236 -3129922,117,91,208 -3129923,185,135,320 -3129924,133,149,282 -3130001,163,156,319 -3130002,250,239,489 -3130003,239,233,472 -3130004,233,244,477 -3130005,352,368,720 -3130006,226,227,453 -3130007,108,104,212 -3130008,233,237,470 -3130009,148,166,314 -3130010,155,160,315 -3130011,107,101,208 -3130012,121,117,238 -3130013,218,217,435 -3130014,135,150,285 -3130015,244,290,534 -3130016,336,310,646 -3130017,204,204,408 -3130018,227,212,439 -3130019,438,414,852 -3130020,230,254,484 -3130021,232,254,486 -3130101,0,0,0 -3130201,327,358,685 -3130202,3,3,6 -3130203,331,355,686 -3130204,483,466,949 -3130205,224,251,475 -3130206,16,18,34 -3130207,279,242,521 -3130208,190,193,383 -3130209,212,199,411 -3130210,210,208,418 -3130211,167,176,343 -3130212,178,159,337 -3130213,560,592,1152 -3130214,766,776,1542 -3130215,265,282,547 -3130216,224,253,477 -3130217,370,363,733 -3130218,302,298,600 -3130219,169,186,355 -3130220,189,159,348 -3130221,269,311,580 -3130222,168,163,331 -3130223,182,187,369 -3130224,175,170,345 -3130225,178,149,327 -3130226,130,138,268 -3130227,271,294,565 -3130228,135,130,265 -3130229,256,245,501 -3130230,207,211,418 -3130301,212,230,442 -3130302,274,312,586 -3130303,247,264,511 -3130304,146,129,275 -3130305,235,271,506 -3130306,462,493,955 -3130307,118,128,246 -3130308,236,236,472 -3130309,317,296,613 -3130310,342,382,724 -3130311,246,248,494 -3130312,153,146,299 -3130313,230,252,482 -3130314,0,3,3 -3130401,323,337,660 -3130402,479,504,983 -3130403,206,228,434 -3130404,667,682,1349 -3130405,5,0,5 -3130406,210,218,428 -3130407,185,198,383 -3130408,140,154,294 -3130409,284,304,588 -3130410,316,312,628 -3130411,177,213,390 -3130412,188,182,370 -3130413,191,173,364 -3130414,195,212,407 -3130415,164,195,359 -3130416,193,185,378 -3130417,57,48,105 -3130418,150,159,309 -3130419,333,339,672 -3130420,352,399,751 -3130421,185,212,397 -3130501,128,132,260 -3130502,127,152,279 -3130503,253,249,502 -3130504,113,124,237 -3130505,203,256,459 -3130506,266,306,572 -3130507,165,192,357 -3130508,271,256,527 -3130509,200,191,391 -3130510,312,323,635 -3130511,487,570,1057 -3130512,219,236,455 -3130513,156,150,306 -3130514,408,415,823 -3130515,142,127,269 -3130516,292,329,621 -3130517,234,224,458 -3130518,156,151,307 -3130519,95,86,181 -3130520,304,283,587 -3130521,176,186,362 -3130522,98,104,202 -3130523,137,129,266 -3130524,222,211,433 -3130525,93,108,201 -3130526,142,150,292 -3130527,229,234,463 -3130528,117,119,236 -3130529,150,69,219 -3130530,196,227,423 -3130601,11,3,14 -3130602,118,113,231 -3130603,246,235,481 -3130604,230,231,461 -3130605,126,129,255 -3130606,192,211,403 -3130607,146,131,277 -3130608,299,323,622 -3130609,268,254,522 -3130610,177,189,366 -3130611,310,288,598 -3130612,166,159,325 -3130613,154,124,278 -3130614,257,264,521 -3130615,224,253,477 -3130616,158,160,318 -3130617,285,279,564 -3130618,254,222,476 -3130619,120,125,245 -3130620,173,159,332 -3130621,111,127,238 -3130622,0,0,0 -3130623,118,112,230 -3130701,222,239,461 -3130702,259,245,504 -3130703,251,232,483 -3130704,188,195,383 -3130705,48,39,87 -3130706,19,11,30 -3130707,168,230,398 -3130708,362,385,747 -3130709,550,569,1119 -3130710,293,343,636 -3130711,87,102,189 -3130712,331,339,670 -3130713,214,257,471 -3130714,436,473,909 -3130715,173,194,367 -3130716,221,239,460 -3130717,239,230,469 -3130718,257,234,491 -3130719,272,303,575 -3130720,94,103,197 -3130721,237,233,470 -3130722,219,215,434 -3130723,256,252,508 -3130724,127,138,265 -3130725,350,321,671 -3130801,190,192,382 -3130802,325,357,682 -3130803,172,149,321 -3130804,242,248,490 -3130805,250,243,493 -3130806,199,195,394 -3130807,240,231,471 -3130808,175,187,362 -3130809,161,168,329 -3130810,122,123,245 -3130811,155,150,305 -3130812,373,400,773 -3130813,224,241,465 -3130814,251,261,512 -3130815,174,186,360 -3130901,262,261,523 -3130902,174,159,333 -3130903,244,253,497 -3130904,86,128,214 -3130905,242,263,505 -3130906,170,179,349 -3130907,156,168,324 -3130908,151,182,333 -3130909,224,259,483 -3130910,155,172,327 -3130911,138,159,297 -3130912,109,119,228 -3130913,210,205,415 -3130914,119,101,220 -3130915,199,216,415 -3130916,88,112,200 -3131001,147,150,297 -3131002,274,289,563 -3131003,260,287,547 -3131004,339,354,693 -3131005,248,212,460 -3131006,145,147,292 -3131007,315,303,618 -3131008,251,291,542 -3131009,167,156,323 -3131010,310,337,647 -3131011,170,156,326 -3131101,184,180,364 -3131102,222,217,439 -3131103,268,284,552 -3131104,290,302,592 -3131105,250,234,484 -3131106,309,308,617 -3131107,235,227,462 -3131108,210,196,406 -3131109,338,408,746 -3131110,100,110,210 -3131111,140,144,284 -3131112,105,92,197 -3131113,171,129,300 -3131114,217,199,416 -3131115,199,174,373 -3131116,153,161,314 -3131117,232,243,475 -3131118,160,147,307 -3131119,114,182,296 -3131120,126,138,264 -3131121,0,0,0 -3131122,317,414,731 -3131123,130,170,300 -3131124,202,224,426 -3131125,186,182,368 -3131126,221,258,479 -3131127,270,287,557 -3131128,268,278,546 -3131129,96,117,213 -3131201,244,227,471 -3131202,107,96,203 -3131203,138,146,284 -3131204,152,159,311 -3131205,178,197,375 -3131206,233,280,513 -3131207,232,258,490 -3131208,193,187,380 -3131209,0,0,0 -3131210,172,159,331 -3131211,261,251,512 -3131212,507,580,1087 -3131213,265,222,487 -3131214,204,189,393 -3131215,230,221,451 -3131216,177,196,373 -3131301,138,106,244 -3131302,152,148,300 -3131303,109,84,193 -3131304,146,145,291 -3131305,323,299,622 -3131306,177,195,372 -3131307,107,110,217 -3131308,164,159,323 -3131309,246,247,493 -3131310,209,228,437 -3131311,129,141,270 -3131401,228,228,456 -3131402,180,180,360 -3131403,153,189,342 -3131404,192,173,365 -3131405,202,225,427 -3131406,194,201,395 -3131407,354,395,749 -3131408,232,249,481 -3131409,0,0,0 -3131410,239,246,485 -3131411,280,230,510 -3131412,0,0,0 -3131413,214,231,445 -3131414,280,279,559 -3131415,172,178,350 -3131416,249,233,482 -3131417,207,198,405 -3131418,164,154,318 -3131419,224,221,445 -3131420,277,274,551 -3131421,230,224,454 -3131422,169,187,356 -3131423,224,235,459 -3131424,161,156,317 -3131425,230,274,504 -3131426,152,182,334 -3131427,348,317,665 -3131501,0,0,0 -3131601,238,244,482 -3131602,177,184,361 -3131603,129,107,236 -3131604,265,285,550 -3131605,222,235,457 -3131606,124,118,242 -3131607,163,176,339 -3131608,282,277,559 -3131609,237,244,481 -3131610,191,196,387 -3131611,206,195,401 -3131612,163,152,315 -3131613,3,3,6 -3131614,184,223,407 -3131615,226,219,445 -3131616,141,126,267 -3131617,315,300,615 -3131618,250,218,468 -3131619,202,206,408 -3131620,163,149,312 -3131701,108,103,211 -3131702,407,438,845 -3131703,304,316,620 -3131704,150,148,298 -3131705,354,375,729 -3131706,287,283,570 -3131707,242,240,482 -3131708,489,487,976 -3131709,231,206,437 -3131710,152,165,317 -3131711,230,273,503 -3131712,165,192,357 -3131713,114,122,236 -3131714,119,130,249 -3131715,281,256,537 -3131716,385,369,754 -3131717,245,237,482 -3131718,116,95,211 -3131719,300,281,581 -3131720,144,142,286 -3131721,154,166,320 -3131722,141,122,263 -3131723,290,271,561 -3131724,236,229,465 -3131725,108,104,212 -3131726,0,0,0 -3131801,151,133,284 -3131802,192,170,362 -3131803,100,97,197 -3131804,134,117,251 -3131805,159,150,309 -3131806,149,126,275 -3131807,200,202,402 -3131808,218,198,416 -3131809,196,167,363 -3131810,207,221,428 -3131811,192,172,364 -3131812,177,181,358 -3131813,147,135,282 -3131814,151,144,295 -3131901,145,148,293 -3131902,210,230,440 -3131903,155,137,292 -3131904,222,254,476 -3131905,132,135,267 -3131906,229,229,458 -3131907,212,227,439 -3131908,292,298,590 -3131909,251,243,494 -3131910,201,231,432 -3131911,211,207,418 -3131912,328,323,651 -3131913,206,219,425 -3131914,221,217,438 -3131915,188,169,357 -3131916,188,198,386 -3131917,237,227,464 -3131918,253,287,540 -3131919,336,346,682 -3131920,685,731,1416 -3131921,224,216,440 -3131922,167,163,330 -3131923,115,132,247 -3131924,203,201,404 -3131925,253,272,525 -3131926,249,265,514 -3131927,0,0,0 -3131928,308,297,605 -3131929,222,229,451 -3131930,248,240,488 -3131931,247,233,480 -3131932,3,0,3 -3131933,205,179,384 -3131934,142,133,275 -3131935,209,221,430 -3132001,147,132,279 -3132002,160,151,311 -3132003,230,227,457 -3132004,554,535,1089 -3132005,130,122,252 -3132006,145,134,279 -3132007,101,93,194 -3132008,286,276,562 -3132009,128,109,237 -3132010,184,178,362 -3132011,66,59,125 -3132012,173,153,326 -3132013,274,277,551 -3132014,179,175,354 -3132015,269,263,532 -3132016,126,126,252 -3132017,234,245,479 -3132018,456,460,916 -3132019,220,197,417 -3132020,334,332,666 -3132021,186,195,381 -3132022,125,137,262 -3132023,118,121,239 -3132024,197,186,383 -3132025,0,0,0 -3132026,222,217,439 -3132027,171,186,357 -3132028,173,165,338 -3132029,383,369,752 -3132101,213,194,407 -3132102,139,153,292 -3132103,206,189,395 -3132104,224,190,414 -3132105,255,253,508 -3132106,209,227,436 -3132107,221,202,423 -3132108,225,224,449 -3132109,127,100,227 -3132110,197,207,404 -3132111,151,146,297 -3132112,307,269,576 -3132113,173,178,351 -3132114,459,506,965 -3132115,136,143,279 -3132116,301,299,600 -3132117,373,313,686 -3132118,534,523,1057 -3132119,210,222,432 -3132120,142,161,303 -3132121,378,366,744 -3132122,274,310,584 -3132123,202,186,388 -3132124,133,120,253 -3132125,302,310,612 -3132126,166,163,329 -3132127,305,293,598 -3132128,128,124,252 -3132129,259,232,491 -3132130,198,197,395 -3132131,106,100,206 -3132132,202,181,383 -3132133,198,194,392 -3132134,138,130,268 -3132135,112,126,238 -3132136,163,146,309 -3132137,235,233,468 -3132138,142,131,273 -3132139,151,150,301 -3132140,231,228,459 -3132141,215,208,423 -3132142,186,197,383 -3132143,213,205,418 -3132144,261,248,509 -3132145,266,275,541 -3132201,129,120,249 -3132202,196,183,379 -3132203,190,181,371 -3132204,157,150,307 -3132205,256,238,494 -3132206,198,166,364 -3132207,175,165,340 -3132208,204,212,416 -3132209,104,93,197 -3132210,156,146,302 -3132211,149,150,299 -3132212,160,160,320 -3132213,144,133,277 -3132214,221,228,449 -3132215,119,117,236 -3132216,119,117,236 -3132217,116,106,222 -3132218,210,174,384 -3132301,107,123,230 -3132302,109,199,308 -3132303,190,227,417 -3132304,204,237,441 -3132305,181,180,361 -3132306,298,300,598 -3132307,244,243,487 -3132308,262,283,545 -3132309,181,223,404 -3132310,212,301,513 -3132311,133,250,383 -3132312,226,234,460 -3132313,407,426,833 -3132314,114,106,220 -3132315,0,3,3 -3132316,208,243,451 -3132317,76,86,162 -3132318,115,120,235 -3132319,242,247,489 -3132320,326,355,681 -3132321,164,143,307 -3132401,134,144,278 -3132402,115,131,246 -3132403,180,170,350 -3132404,232,219,451 -3132405,178,183,361 -3132406,235,225,460 -3132407,167,153,320 -3132408,119,111,230 -3132409,153,141,294 -3132410,146,148,294 -3132411,109,100,209 -3132412,209,192,401 -3132413,160,157,317 -3132414,282,272,554 -3132415,221,201,422 -3132416,134,70,204 -3132417,80,119,199 -3132418,149,159,308 -3132419,175,177,352 -3132420,218,211,429 -3132421,236,278,514 -3132422,226,238,464 -3132423,190,192,382 -3132501,261,275,536 -3132502,185,211,396 -3132503,183,183,366 -3132504,138,135,273 -3132505,199,198,397 -3132506,155,122,277 -3132507,153,180,333 -3132508,239,223,462 -3132509,133,152,285 -3132510,137,148,285 -3132511,140,150,290 -3132512,75,85,160 -3132513,160,187,347 -3132514,293,315,608 -3132515,265,253,518 -3132516,280,287,567 -3132517,152,151,303 -3132518,188,189,377 -3132519,0,0,0 -3132520,298,296,594 -3132521,378,367,745 -3132522,287,293,580 -3132523,299,280,579 -3132524,154,159,313 -3132525,0,0,0 -3132526,270,270,540 -3132527,203,190,393 -3132528,95,108,203 -3132601,94,126,220 -3132602,161,169,330 -3132603,252,295,547 -3132604,195,179,374 -3132605,188,173,361 -3132606,215,242,457 -3132607,224,238,462 -3132608,258,278,536 -3132609,255,314,569 -3132610,188,209,397 -3132611,169,181,350 -3132612,287,296,583 -3132613,251,248,499 -3132614,347,350,697 -3132615,258,243,501 -3132616,237,251,488 -3132617,0,0,0 -3132618,241,239,480 -3132619,14,13,27 -3132620,188,209,397 -3132621,0,0,0 -3132622,277,313,590 -3132623,222,214,436 -3132701,289,304,593 -3132702,207,176,383 -3132703,195,191,386 -3132704,197,190,387 -3132705,225,227,452 -3132706,98,80,178 -3132707,193,186,379 -3132708,229,219,448 -3132709,212,224,436 -3132710,220,210,430 -3132711,114,126,240 -3132712,164,144,308 -3132713,155,163,318 -3132714,112,104,216 -3132715,271,279,550 -3132716,155,191,346 -3132717,222,226,448 -3132718,175,189,364 -3132719,289,320,609 -3132720,131,128,259 -3132721,214,227,441 -3132722,187,195,382 -3132723,220,224,444 -3132724,197,182,379 -3132725,193,210,403 -3132726,171,164,335 -3132727,226,234,460 -3132728,99,119,218 -3132729,239,253,492 -3132801,150,140,290 -3132802,260,282,542 -3132803,298,286,584 -3132804,293,270,563 -3132805,108,107,215 -3132806,172,278,450 -3132807,321,298,619 -3132808,412,444,856 -3132809,102,104,206 -3132810,266,257,523 -3132811,113,145,258 -3132812,286,292,578 -3132813,249,274,523 -3132814,141,144,285 -3132815,256,278,534 -3132901,200,204,404 -3132902,144,131,275 -3132903,217,217,434 -3132904,136,138,274 -3132905,191,192,383 -3132906,372,391,763 -3132907,237,230,467 -3132908,249,229,478 -3132909,137,127,264 -3132910,0,0,0 -3132911,236,230,466 -3132912,193,197,390 -3132913,227,173,400 -3132914,159,175,334 -3132915,183,188,371 -3132916,140,148,288 -3132917,127,137,264 -3133001,205,224,429 -3133002,198,152,350 -3133003,244,235,479 -3133004,222,247,469 -3133005,230,234,464 -3133006,200,200,400 -3133007,5,3,8 -3133008,283,240,523 -3133009,144,164,308 -3133010,188,162,350 -3133011,188,201,389 -3133012,221,230,451 -3133013,200,172,372 -3133014,301,306,607 -3133015,253,255,508 -3133016,284,283,567 -3133017,148,160,308 -3133018,289,287,576 -3133019,73,80,153 -3133020,240,265,505 -3133021,269,248,517 -3133022,178,186,364 -3133023,201,211,412 -3133024,137,141,278 -3133025,7,5,12 -3133026,193,193,386 -3133101,125,116,241 -3133102,265,220,485 -3133103,54,34,88 -3133104,280,272,552 -3133105,114,137,251 -3133106,295,302,597 -3133107,226,255,481 -3133108,168,173,341 -3133109,286,222,508 -3133110,279,255,534 -3133111,185,184,369 -3133112,180,184,364 -3133113,293,311,604 -3133114,250,230,480 -3133115,172,201,373 -3133201,131,138,269 -3133202,190,194,384 -3133203,178,180,358 -3133204,205,241,446 -3133205,188,215,403 -3133206,272,270,542 -3133207,224,247,471 -3133208,152,157,309 -3133209,213,242,455 -3133210,166,196,362 -3133211,260,273,533 -3133212,65,59,124 -3133213,194,187,381 -3133214,164,146,310 -3133215,229,251,480 -3133216,239,250,489 -3133217,248,253,501 -3133218,120,137,257 -3133219,150,144,294 -3133220,159,174,333 -3133221,238,231,469 -3133222,132,126,258 -3133223,235,230,465 -3133224,182,219,401 -3133225,173,160,333 -3133226,166,163,329 -3133227,148,139,287 -3133228,279,274,553 -3133229,156,160,316 -3133230,96,118,214 -3133231,167,185,352 -3133232,259,281,540 -3133233,219,236,455 -3133234,125,144,269 -3133235,177,189,366 -3133236,141,154,295 -3133237,249,306,555 -3133238,153,160,313 -3133239,131,140,271 -3133240,184,198,382 -3133301,134,157,291 -3133302,220,227,447 -3133303,230,207,437 -3133304,292,242,534 -3133305,14,6,20 -3133306,229,240,469 -3133307,130,176,306 -3133308,131,148,279 -3133309,210,188,398 -3133310,108,134,242 -3133311,152,154,306 -3133312,94,115,209 -3133313,185,188,373 -3133314,90,113,203 -3133315,217,236,453 -3133316,282,296,578 -3133317,159,154,313 -3133318,253,267,520 -3133319,225,235,460 -3133320,259,258,517 -3133321,222,198,420 -3133322,280,322,602 -3133323,197,187,384 -3133324,175,174,349 -3133325,220,238,458 -3133326,214,239,453 -3133327,212,181,393 -3133401,293,304,597 -3133402,291,274,565 -3133403,134,174,308 -3133404,150,131,281 -3133405,277,257,534 -3133406,218,219,437 -3133407,233,218,451 -3133408,157,174,331 -3133409,221,277,498 -3133410,279,307,586 -3133411,269,295,564 -3133412,126,113,239 -3133413,174,169,343 -3133414,174,199,373 -3133415,241,236,477 -3133416,241,245,486 -3133417,276,258,534 -3133418,129,134,263 -3133419,144,149,293 -3133420,131,147,278 -3133421,127,122,249 -3133422,149,157,306 -3133501,469,478,947 -3133502,207,237,444 -3133503,187,177,364 -3133504,218,213,431 -3133505,136,130,266 -3133506,4,4,8 -3133507,183,179,362 -3133508,166,190,356 -3133509,139,148,287 -3133510,346,339,685 -3133511,86,80,166 -3133512,281,257,538 -3133513,247,222,469 -3133601,250,258,508 -3133602,264,271,535 -3133603,245,239,484 -3133604,318,333,651 -3133605,143,151,294 -3133606,133,117,250 -3133607,221,211,432 -3133608,235,201,436 -3133609,152,182,334 -3133610,239,233,472 -3133611,223,215,438 -3133612,119,119,238 -3133613,188,216,404 -3133614,240,244,484 -3133615,156,151,307 -3133616,109,118,227 -3133617,165,146,311 -3133618,255,255,510 -3133619,212,194,406 -3133620,105,112,217 -3133621,167,156,323 -3133622,169,248,417 -3133623,220,193,413 -3133624,344,361,705 -3133625,117,125,242 -3133626,156,179,335 -3133627,208,200,408 -3133628,233,233,466 -3133629,237,258,495 -3133630,271,304,575 -3133631,226,247,473 -3133701,125,117,242 -3133702,286,204,490 -3133703,192,148,340 -3133704,198,175,373 -3133705,283,247,530 -3133706,192,189,381 -3133707,190,179,369 -3133708,309,233,542 -3133709,185,172,357 -3133710,211,205,416 -3133711,267,294,561 -3133712,161,140,301 -3133713,256,240,496 -3133714,256,220,476 -3133715,213,204,417 -3133716,143,136,279 -3133717,278,261,539 -3133718,273,267,540 -3133719,303,231,534 -3133720,205,183,388 -3133721,117,156,273 -3133801,371,281,652 -3133802,304,269,573 -3133803,136,117,253 -3133804,171,150,321 -3133805,230,200,430 -3133806,308,251,559 -3133807,249,97,346 -3133808,216,175,391 -3133809,214,168,382 -3133810,440,177,617 -3133811,221,177,398 -3133812,176,131,307 -3133813,163,139,302 -3133814,353,321,674 -3133815,198,104,302 -3133816,123,108,231 -3133817,118,107,225 -3133818,187,168,355 -3133819,156,112,268 -3133820,242,184,426 -3133821,230,166,396 -3133822,136,122,258 -3133823,301,173,474 -3133824,179,170,349 -3133825,0,0,0 -3133826,165,149,314 -3133827,0,0,0 -3133828,36,30,66 -3133901,155,174,329 -3133902,195,211,406 -3133903,152,130,282 -3133904,191,158,349 -3133905,191,180,371 -3133906,229,212,441 -3133907,469,415,884 -3133908,245,215,460 -3133909,115,109,224 -3134001,115,83,198 -3134002,123,119,242 -3134003,130,115,245 -3134004,161,139,300 -3134005,140,132,272 -3134006,135,110,245 -3134007,178,166,344 -3134008,324,243,567 -3134009,140,124,264 -3134010,128,94,222 -3134011,76,61,137 -3134012,249,211,460 -3134013,153,137,290 -3134014,0,0,0 -3134015,159,104,263 -3134101,32,9,41 -3134102,547,478,1025 -3134103,193,167,360 -3134104,352,315,667 -3134105,233,214,447 -3134106,236,225,461 -3134107,125,97,222 -3134108,202,164,366 -3134109,255,241,496 -3134110,235,214,449 -3134111,189,32,221 -3134112,165,135,300 -3134113,224,199,423 -3134114,267,71,338 -3134115,309,257,566 -3134116,258,207,465 -3134117,115,98,213 -3134118,192,183,375 -3134119,171,144,315 -3134120,256,187,443 -3134121,179,162,341 -3134122,243,190,433 -3134201,244,258,502 -3134202,312,307,619 -3134203,204,199,403 -3134204,217,235,452 -3134205,233,221,454 -3134206,49,50,99 -3134207,140,142,282 -3134208,11,10,21 -3134209,284,272,556 -3134210,221,220,441 -3134211,133,121,254 -3134212,146,163,309 -3134213,110,111,221 -3134214,213,206,419 -3134215,257,235,492 -3134216,208,189,397 -3134217,181,164,345 -3134218,106,109,215 -3134219,227,196,423 -3134220,229,273,502 -3134221,246,277,523 -3134222,205,198,403 -3134223,452,418,870 -3134224,136,142,278 -3134225,154,154,308 -3134226,274,264,538 -3134227,248,225,473 -3134228,271,268,539 -3134229,279,246,525 -3134230,204,169,373 -3134231,391,370,761 -3134232,156,137,293 -3134233,384,477,861 -3134234,128,133,261 -3134301,151,141,292 -3134302,261,217,478 -3134303,0,0,0 -3134304,158,151,309 -3134305,141,110,251 -3134306,0,0,0 -3134307,242,210,452 -3134308,176,159,335 -3134309,214,172,386 -3134310,174,165,339 -3134311,204,197,401 -3134312,156,231,387 -3134401,264,242,506 -3134402,230,208,438 -3134403,147,148,295 -3134404,134,107,241 -3134405,245,202,447 -3134406,413,372,785 -3134407,219,186,405 -3134408,224,219,443 -3134409,534,477,1011 -3134410,345,286,631 -3134411,219,180,399 -3134412,312,309,621 -3134413,186,168,354 -3134414,375,330,705 -3134415,122,120,242 -3134416,261,242,503 -3134417,442,420,862 -3134418,231,219,450 -3134419,164,153,317 -3134420,129,119,248 -3134501,0,4,4 -3134601,215,207,422 -3134602,199,159,358 -3134603,197,162,359 -3134604,194,185,379 -3134605,257,178,435 -3134606,234,238,472 -3134607,291,260,551 -3134608,295,247,542 -3134609,90,65,155 -3134610,252,150,402 -3134701,283,243,526 -3134801,118,139,257 -3134802,174,160,334 -3134803,197,205,402 -3134804,177,158,335 -3134805,119,126,245 -3134806,321,314,635 -3134807,98,118,216 -3134808,131,122,253 -3134809,579,583,1162 -3134810,300,295,595 -3134811,239,225,464 -3134812,250,253,503 -3134813,415,480,895 -3134814,153,142,295 -3134815,253,252,505 -3134816,100,90,190 -3134817,143,121,264 -3134818,188,173,361 -3134819,166,155,321 -3134820,179,171,350 -3134821,207,195,402 -3134822,203,194,397 -3134823,313,318,631 -3134824,226,221,447 -3134825,148,135,283 -3134901,143,152,295 -3134902,136,122,258 -3134903,197,216,413 -3134904,248,211,459 -3134905,66,41,107 -3134906,245,261,506 -3134907,182,180,362 -3134908,258,245,503 -3134909,239,250,489 -3134910,172,244,416 -3134911,168,153,321 -3134912,176,221,397 -3134913,104,67,171 -3134914,248,252,500 -3134915,125,127,252 -3134916,196,188,384 -3134917,270,240,510 -3134918,189,177,366 -3134919,24,14,38 -3135001,41,25,66 -3135002,255,193,448 -3135003,265,203,468 -3135004,180,116,296 -3135005,465,409,874 -3135006,169,161,330 -3135007,200,205,405 -3135008,118,112,230 -3135009,386,373,759 -3135010,126,116,242 -3135101,217,205,422 -3135102,148,127,275 -3135103,132,127,259 -3135104,175,162,337 -3135105,158,148,306 -3135106,261,233,494 -3135107,351,309,660 -3135108,303,233,536 -3135109,294,227,521 -3135110,330,268,598 -3135111,644,610,1254 -3135112,205,199,404 -3135113,124,116,240 -3135114,252,258,510 -3135115,128,133,261 -3135201,129,111,240 -3135202,0,0,0 -3135203,121,101,222 -3135204,405,366,771 -3135205,205,201,406 -3135206,114,115,229 -3135207,252,266,518 -3135208,146,147,293 -3135209,136,112,248 -3135210,248,220,468 -3135211,324,282,606 -3135212,1152,1043,2195 -3135213,140,128,268 -3135214,134,126,260 -3135215,91,92,183 -3135216,176,149,325 -3135217,322,299,621 -3135218,100,72,172 -3135219,185,170,355 -3135220,379,322,701 -3135221,252,229,481 -3135222,298,277,575 -3135223,166,154,320 -3135224,189,163,352 -3135225,0,0,0 -3135226,446,343,789 -3135301,58,59,117 -3135302,142,112,254 -3135303,84,85,169 -3135304,0,0,0 -3135305,65,45,110 -3135306,134,102,236 -3135307,242,202,444 -3135308,71,74,145 -3135309,158,135,293 -3135310,240,188,428 -3135311,243,203,446 -3135312,132,124,256 -3135313,240,240,480 -3135314,190,168,358 -3135315,155,128,283 -3135316,163,154,317 -3135317,145,133,278 -3135318,244,206,450 -3135319,122,133,255 -3135320,180,166,346 -3135321,120,120,240 -3135322,203,173,376 -3135323,266,233,499 -3135324,169,130,299 -3135325,236,185,421 -3135326,208,181,389 -3135327,154,142,296 -3135328,121,120,241 -3135401,236,258,494 -3135402,291,304,595 -3135403,154,125,279 -3135404,226,195,421 -3135405,359,304,663 -3135406,201,181,382 -3135407,407,371,778 -3135408,113,98,211 -3135409,57,45,102 -3135410,189,190,379 -3135411,202,218,420 -3135412,145,155,300 -3135413,166,154,320 -3135501,106,108,214 -3135502,211,186,397 -3135503,136,120,256 -3135504,165,142,307 -3135505,253,220,473 -3135506,234,213,447 -3135507,254,242,496 -3135508,109,103,212 -3135509,191,176,367 -3135510,234,215,449 -3135511,110,128,238 -3135512,0,3,3 -3135513,0,0,0 -3135601,220,189,409 -3135602,172,183,355 -3135603,141,156,297 -3135604,223,227,450 -3135605,226,197,423 -3135606,297,332,629 -3135607,320,318,638 -3135608,245,252,497 -3135609,218,237,455 -3135610,252,233,485 -3135611,182,181,363 -3135612,172,171,343 -3135613,160,155,315 -3135614,3,0,3 -3135615,172,159,331 -3135616,218,183,401 -3135617,187,155,342 -3135618,213,218,431 -3135619,121,132,253 -3135701,71,67,138 -3135702,168,167,335 -3135703,146,127,273 -3135704,216,212,428 -3135705,202,165,367 -3135706,224,162,386 -3135707,244,188,432 -3135708,147,130,277 -3135709,252,218,470 -3135710,122,119,241 -3135711,193,195,388 -3135712,242,229,471 -3135713,107,110,217 -3135714,156,147,303 -3135715,134,124,258 -3135716,184,170,354 -3135717,168,176,344 -3135718,131,124,255 -3135719,152,160,312 -3135720,279,259,538 -3135721,189,154,343 -3135722,250,213,463 -3135723,418,399,817 -3135801,199,214,413 -3135802,231,223,454 -3135803,145,115,260 -3135804,246,260,506 -3135805,255,265,520 -3135806,179,171,350 -3135807,7,12,19 -3135808,221,192,413 -3135809,129,142,271 -3135810,248,258,506 -3135811,220,254,474 -3135812,287,293,580 -3135813,137,129,266 -3135814,155,154,309 -3135815,141,128,269 -3135816,239,252,491 -3135817,189,219,408 -3135901,140,101,241 -3135902,120,105,225 -3135903,175,145,320 -3135904,164,140,304 -3135905,655,553,1208 -3135906,171,135,306 -3135907,245,221,466 -3135908,146,142,288 -3135909,250,205,455 -3135910,334,287,621 -3135911,225,201,426 -3135912,157,154,311 -3135913,159,178,337 -3135914,258,207,465 -3135915,77,64,141 -3135916,48,43,91 -3135917,0,0,0 -3135918,54,41,95 -3135919,82,92,174 -3135920,173,148,321 -3135921,279,196,475 -3135922,278,261,539 -3135923,131,114,245 -3135924,101,87,188 -3135925,179,234,413 -3135926,202,142,344 -3135927,193,183,376 -3135928,366,368,734 -3135929,227,205,432 -3136001,0,0,0 -3136101,267,231,498 -3136102,276,276,552 -3136103,219,175,394 -3136104,164,155,319 -3136105,258,235,493 -3136106,233,223,456 -3136107,178,148,326 -3136108,119,108,227 -3136109,219,196,415 -3136110,222,250,472 -3136111,52,46,98 -3136112,171,154,325 -3136113,221,199,420 -3136114,233,240,473 -3136115,110,119,229 -3136116,197,206,403 -3136117,151,134,285 -3136118,173,198,371 -3136119,178,195,373 -3136120,185,176,361 -3136121,0,0,0 -3136122,149,114,263 -3136123,120,100,220 -3136201,226,217,443 -3136202,158,152,310 -3136203,441,467,908 -3136204,3,8,11 -3136205,209,207,416 -3136206,440,520,960 -3136207,119,111,230 -3136208,237,224,461 -3136209,206,156,362 -3136210,166,143,309 -3136211,170,167,337 -3136212,131,144,275 -3136213,163,170,333 -3136214,302,278,580 -3136215,187,209,396 -3136216,201,213,414 -3136217,291,310,601 -3136218,159,145,304 -3136219,332,341,673 -3136220,193,227,420 -3136221,157,172,329 -3136222,104,115,219 -3136223,187,219,406 -3136224,237,250,487 -3136225,118,133,251 -3136226,237,273,510 -3136227,218,240,458 -3136228,206,195,401 -3136229,225,220,445 -3136230,238,260,498 -3136231,202,191,393 -3136232,176,160,336 -3136301,219,251,470 -3136302,273,282,555 -3136303,217,229,446 -3136304,194,190,384 -3136305,183,199,382 -3136306,222,265,487 -3136307,93,117,210 -3136308,139,171,310 -3136309,185,215,400 -3136310,170,158,328 -3136311,168,186,354 -3136312,196,195,391 -3136313,95,110,205 -3136314,270,299,569 -3136315,271,278,549 -3136316,205,211,416 -3136317,234,255,489 -3136318,185,182,367 -3136319,425,402,827 -3136320,4,0,4 -3136321,0,0,0 -3136322,67,78,145 -3136323,222,241,463 -3136324,255,337,592 -3136325,139,139,278 -3136326,223,205,428 -3136327,125,117,242 -3136328,141,131,272 -3136329,280,311,591 -3136330,0,0,0 -3136331,255,352,607 -3136332,252,266,518 -3136333,176,196,372 -3136334,134,150,284 -3136335,231,238,469 -3136336,320,333,653 -3136337,93,118,211 -3136338,192,218,410 -3136339,137,159,296 -3136340,234,253,487 -3136341,216,236,452 -3136342,130,154,284 -3136343,163,161,324 -3136344,55,57,112 -3136345,184,233,417 -3136401,123,105,228 -3136402,216,194,410 -3136403,218,217,435 -3136404,204,197,401 -3136405,165,151,316 -3136406,248,243,491 -3136407,181,176,357 -3136408,229,227,456 -3136409,180,185,365 -3136410,108,107,215 -3136501,232,235,467 -3136502,156,236,392 -3136503,173,168,341 -3136504,231,257,488 -3136505,235,245,480 -3136506,128,142,270 -3136507,306,318,624 -3136508,292,274,566 -3136509,160,165,325 -3136510,303,298,601 -3136511,144,185,329 -3136512,72,73,145 -3136513,279,348,627 -3136514,147,162,309 -3136515,238,228,466 -3136516,444,478,922 -3136517,300,296,596 -3136518,222,217,439 -3136519,154,187,341 -3136520,244,316,560 -3136521,229,235,464 -3136522,114,122,236 -3136523,178,144,322 -3136524,316,351,667 -3136525,284,269,553 -3136526,70,66,136 -3136527,279,271,550 -3136528,186,259,445 -3136529,136,142,278 -3136530,287,279,566 -3136531,299,289,588 -3136532,303,254,557 -3136533,288,288,576 -3136534,439,449,888 -3136535,311,312,623 -3136536,116,112,228 -3136537,318,375,693 -3136538,163,195,358 -3136539,238,234,472 -3136540,242,261,503 -3136541,208,252,460 -3136542,189,177,366 -3136543,216,225,441 -3136544,149,173,322 -3136545,314,351,665 -3136546,192,176,368 -3136547,86,84,170 -3136548,243,280,523 -3136601,268,297,565 -3136602,131,135,266 -3136603,214,215,429 -3136604,149,177,326 -3136605,151,152,303 -3136606,103,135,238 -3136607,318,340,658 -3136608,291,271,562 -3136609,260,284,544 -3136610,176,233,409 -3136611,200,238,438 -3136612,0,0,0 -3136613,262,268,530 -3136614,282,335,617 -3136615,292,349,641 -3136616,248,244,492 -3136617,356,389,745 -3136618,159,200,359 -3136619,133,162,295 -3136620,224,257,481 -3136621,250,292,542 -3136622,279,297,576 -3136623,621,679,1300 -3136624,201,242,443 -3136625,202,197,399 -3136626,187,172,359 -3136627,266,288,554 -3136628,190,181,371 -3136629,130,134,264 -3136630,184,191,375 -3136631,360,339,699 -3136632,527,556,1083 -3136633,529,537,1066 -3136634,173,200,373 -3136635,178,179,357 -3136636,210,205,415 -3136637,247,271,518 -3136701,262,235,497 -3136702,210,207,417 -3136703,195,188,383 -3136704,137,160,297 -3136705,187,203,390 -3136706,152,146,298 -3136707,112,117,229 -3136708,198,197,395 -3136709,228,208,436 -3136710,189,193,382 -3136801,106,105,211 -3136802,225,248,473 -3136803,173,179,352 -3136804,240,257,497 -3136805,101,111,212 -3136806,193,224,417 -3136807,209,186,395 -3136808,329,321,650 -3136809,301,287,588 -3136810,196,249,445 -3136811,355,353,708 -3136812,284,294,578 -3136813,520,545,1065 -3136814,279,295,574 -3136901,112,104,216 -3136902,125,120,245 -3136903,144,133,277 -3136904,234,197,431 -3136905,211,218,429 -3136906,235,254,489 -3136907,446,419,865 -3136908,319,313,632 -3137001,220,216,436 -3137002,158,171,329 -3137003,169,141,310 -3137004,149,171,320 -3137005,233,215,448 -3137006,288,267,555 -3137007,135,132,267 -3137008,133,122,255 -3137009,279,255,534 -3137010,159,156,315 -3137011,222,209,431 -3137012,153,188,341 -3137013,148,146,294 -3137101,183,177,360 -3137102,554,0,554 -3137103,152,139,291 -3137104,262,267,529 -3137105,255,291,546 -3137106,201,232,433 -3137107,407,422,829 -3137108,353,360,713 -3137109,31,28,59 -3137110,89,81,170 -3137111,238,243,481 -3137112,90,78,168 -3137113,272,277,549 -3137114,82,80,162 -3137115,163,129,292 -3137116,176,143,319 -3137201,108,103,211 -3137202,287,279,566 -3137203,146,153,299 -3137204,218,197,415 -3137205,0,0,0 -3137206,129,121,250 -3137207,145,136,281 -3137208,130,122,252 -3137209,113,125,238 -3137210,329,420,749 -3137211,168,149,317 -3137212,186,198,384 -3137213,118,133,251 -3137214,105,101,206 -3137215,243,244,487 -3137216,170,162,332 -3137217,163,212,375 -3137218,130,131,261 -3137219,228,283,511 -3137220,152,166,318 -3137221,221,216,437 -3137222,108,109,217 -3137223,214,199,413 -3137224,186,171,357 -3137225,213,220,433 -3137226,249,272,521 -3137227,180,208,388 -3137228,227,234,461 -3137229,268,304,572 -3137230,228,244,472 -3137231,120,116,236 -3137232,357,333,690 -3137233,148,121,269 -3137234,228,203,431 -3137235,174,186,360 -3137301,294,253,547 -3137302,170,175,345 -3137303,141,178,319 -3137304,265,278,543 -3137305,354,298,652 -3137306,229,214,443 -3137307,170,173,343 -3137308,138,125,263 -3137309,197,227,424 -3137310,135,134,269 -3137311,193,186,379 -3137312,420,427,847 -3137313,0,0,0 -3137314,239,349,588 -3137315,118,111,229 -3137316,139,167,306 -3137317,99,117,216 -3137318,304,279,583 -3137319,233,229,462 -3137320,304,318,622 -3137321,140,170,310 -3137322,257,272,529 -3137323,256,262,518 -3137324,155,188,343 -3137325,138,147,285 -3137326,144,158,302 -3137327,0,0,0 -3137328,125,195,320 -3137329,46,48,94 -3137330,210,195,405 -3137331,172,186,358 -3137332,277,265,542 -3137333,313,333,646 -3137334,165,177,342 -3137335,167,179,346 -3137336,75,103,178 -3137337,0,0,0 -3137338,134,138,272 -3137339,236,262,498 -3137340,155,177,332 -3137341,183,181,364 -3137342,231,234,465 -3137343,181,194,375 -3137344,153,159,312 -3137345,144,164,308 -3137346,114,137,251 -3137347,369,367,736 -3137348,176,248,424 -3137349,234,251,485 -3137350,297,314,611 -3137351,286,305,591 -3137352,164,158,322 -3137353,214,233,447 -3137354,180,205,385 -3137355,195,195,390 -3137356,160,165,325 -3137401,135,125,260 -3137402,144,135,279 -3137403,223,239,462 -3137404,179,179,358 -3137405,138,127,265 -3137406,148,146,294 -3137407,213,200,413 -3137408,165,153,318 -3137409,167,155,322 -3137410,146,139,285 -3137411,214,195,409 -3137412,166,174,340 -3137413,160,165,325 -3137414,143,148,291 -3137415,102,94,196 -3137501,188,212,400 -3137502,338,340,678 -3137503,210,225,435 -3137504,142,171,313 -3137505,211,223,434 -3137506,104,118,222 -3137507,159,160,319 -3137508,627,674,1301 -3137509,238,205,443 -3137510,225,234,459 -3137511,172,149,321 -3137512,451,461,912 -3137513,357,362,719 -3137514,240,213,453 -3137515,288,308,596 -3137516,158,176,334 -3137517,226,226,452 -3137518,188,195,383 -3137519,198,206,404 -3137520,187,191,378 -3137521,183,155,338 -3137522,267,268,535 -3137523,306,315,621 -3137524,199,215,414 -3137525,362,394,756 -3137526,214,217,431 -3137527,166,149,315 -3137528,275,269,544 -3137529,311,310,621 -3137530,261,266,527 -3137531,154,152,306 -3137532,3,3,6 -3137533,148,158,306 -3137534,151,142,293 -3137535,140,125,265 -3137601,0,0,0 -3137602,190,192,382 -3137603,138,128,266 -3137604,187,167,354 -3137605,154,148,302 -3137606,216,229,445 -3137607,147,121,268 -3137608,180,156,336 -3137609,213,255,468 -3137701,0,4,4 -3137702,20,6,26 -3137703,0,0,0 -3137704,134,140,274 -3137705,192,211,403 -3137706,190,182,372 -3137707,225,207,432 -3137708,266,300,566 -3137709,199,175,374 -3137710,196,164,360 -3137711,144,165,309 -3137712,211,195,406 -3137713,229,255,484 -3137714,347,348,695 -3137715,210,209,419 -3137716,134,158,292 -3137717,263,239,502 -3137718,141,133,274 -3137719,285,282,567 -3137720,242,252,494 -3137721,223,216,439 -3137722,98,116,214 -3137801,185,183,368 -3137802,116,153,269 -3137803,211,240,451 -3137804,215,214,429 -3137805,159,192,351 -3137806,246,270,516 -3137807,136,136,272 -3137808,156,167,323 -3137809,205,228,433 -3137810,112,120,232 -3137811,152,149,301 -3137812,208,230,438 -3137813,275,276,551 -3137814,195,205,400 -3137815,210,273,483 -3137816,174,190,364 -3137817,215,242,457 -3137818,114,127,241 -3137819,253,266,519 -3137820,222,226,448 -3137821,238,243,481 -3137822,226,256,482 -3137823,161,171,332 -3137824,165,186,351 -3137825,130,148,278 -3137826,283,296,579 -3137827,143,162,305 -3137828,235,207,442 -3137901,162,175,337 -3137902,194,209,403 -3137903,151,151,302 -3137904,186,200,386 -3137905,200,216,416 -3137906,168,153,321 -3137907,198,206,404 -3137908,143,141,284 -3137909,166,187,353 -3137910,337,369,706 -3137911,213,218,431 -3137912,183,221,404 -3137913,223,289,512 -3137914,243,289,532 -3137915,212,218,430 -3137916,204,216,420 -3137917,176,149,325 -3137918,230,266,496 -3137919,5,4,9 -3137920,271,282,553 -3137921,85,102,187 -3137922,77,120,197 -3137923,183,211,394 -3137924,197,203,400 -3138001,192,184,376 -3138002,209,202,411 -3138003,347,453,800 -3138004,406,385,791 -3138005,423,462,885 -3138006,193,214,407 -3138007,168,216,384 -3138008,198,272,470 -3138009,162,177,339 -3138010,194,211,405 -3138011,151,156,307 -3138012,174,159,333 -3138013,239,234,473 -3138014,378,419,797 -3138015,141,175,316 -3138016,199,190,389 -3138017,169,220,389 -3138018,191,197,388 -3138019,233,226,459 -3138020,104,135,239 -3138021,198,238,436 -3138022,99,108,207 -3138023,247,240,487 -3138024,157,146,303 -3138025,110,122,232 -3138026,336,402,738 -3138027,215,274,489 -3138028,130,151,281 -3138029,202,207,409 -3138030,152,184,336 -3138031,173,230,403 -3138032,224,219,443 -3138033,231,319,550 -3138034,164,148,312 -3138035,247,276,523 -3138036,141,134,275 -3138037,3,0,3 -3138038,192,241,433 -3138039,0,0,0 -3138040,0,0,0 -3138041,58,53,111 -3138042,143,139,282 -3138101,150,134,284 -3138102,116,96,212 -3138103,227,219,446 -3138104,223,253,476 -3138105,161,151,312 -3138106,192,180,372 -3138107,212,192,404 -3138108,188,220,408 -3138109,132,261,393 -3138110,153,150,303 -3138111,139,151,290 -3138112,129,112,241 -3138113,167,167,334 -3138114,209,220,429 -3138115,152,149,301 -3138116,138,130,268 -3138117,210,215,425 -3138118,184,173,357 -3138119,115,124,239 -3138120,167,215,382 -3138121,299,319,618 -3138122,248,279,527 -3138123,162,200,362 -3138124,196,227,423 -3138125,213,231,444 -3138126,140,140,280 -3138127,162,209,371 -3138128,192,186,378 -3138129,188,201,389 -3138130,245,262,507 -3138201,299,290,589 -3138202,138,138,276 -3138203,179,179,358 -3138204,113,135,248 -3138205,247,276,523 -3138206,238,230,468 -3138207,274,226,500 -3138208,146,127,273 -3138209,304,313,617 -3138210,123,128,251 -3138211,123,119,242 -3138212,143,163,306 -3138213,295,280,575 -3138214,172,201,373 -3138215,222,216,438 -3138216,143,139,282 -3138217,165,182,347 -3138218,328,311,639 -3138219,121,299,420 -3138220,229,221,450 -3138221,134,135,269 -3138222,165,189,354 -3138223,162,144,306 -3138224,0,0,0 -3138225,378,380,758 -3138226,157,140,297 -3138227,196,196,392 -3138228,194,224,418 -3138229,203,181,384 -3138230,171,166,337 -3138231,189,198,387 -3138232,149,126,275 -3138233,267,239,506 -3138234,273,275,548 -3138235,207,207,414 -3138236,173,170,343 -3138237,180,188,368 -3138238,143,153,296 -3138239,187,205,392 -3138240,178,195,373 -3138241,127,127,254 -3138301,251,233,484 -3138302,165,162,327 -3138303,152,166,318 -3138304,166,148,314 -3138305,102,102,204 -3138306,128,119,247 -3138307,120,124,244 -3138308,418,417,835 -3138309,215,202,417 -3138310,115,111,226 -3138311,276,295,571 -3138312,293,313,606 -3138313,431,434,865 -3138314,443,425,868 -3138315,141,147,288 -3138316,235,251,486 -3138317,148,171,319 -3138318,164,158,322 -3138319,378,384,762 -3138320,259,253,512 -3138321,262,240,502 -3138322,297,270,567 -3138323,258,276,534 -3138324,183,181,364 -3138325,188,176,364 -3138326,269,257,526 -3138327,161,161,322 -3138328,315,320,635 -3138329,237,232,469 -3138330,220,274,494 -3138331,137,120,257 -3138332,295,308,603 -3138333,286,276,562 -3138401,253,244,497 -3138402,136,157,293 -3138403,159,176,335 -3138404,115,116,231 -3138405,141,143,284 -3138406,124,125,249 -3138407,159,125,284 -3138408,164,178,342 -3138409,155,149,304 -3138410,232,226,458 -3138411,133,112,245 -3138412,179,183,362 -3138413,205,168,373 -3138414,168,170,338 -3138415,182,176,358 -3138416,107,102,209 -3138417,202,191,393 -3138418,256,242,498 -3138419,284,282,566 -3138420,283,273,556 -3138421,240,244,484 -3138501,236,260,496 -3138502,241,246,487 -3138503,171,176,347 -3138504,233,203,436 -3138505,213,230,443 -3138506,104,110,214 -3138507,245,246,491 -3138508,238,240,478 -3138509,218,216,434 -3138510,116,120,236 -3138511,357,339,696 -3138512,130,145,275 -3138513,155,151,306 -3138514,231,233,464 -3138515,255,277,532 -3138516,117,112,229 -3138517,181,167,348 -3138518,162,149,311 -3138519,231,277,508 -3138520,125,129,254 -3138601,157,156,313 -3138602,248,262,510 -3138603,241,210,451 -3138604,128,144,272 -3138605,252,238,490 -3138606,120,117,237 -3138607,273,297,570 -3138608,235,212,447 -3138609,264,269,533 -3138610,240,240,480 -3138611,119,97,216 -3138612,296,313,609 -3138613,157,168,325 -3138614,213,218,431 -3138615,158,170,328 -3138616,199,181,380 -3138617,193,177,370 -3138618,281,262,543 -3138619,123,114,237 -3138620,310,302,612 -3138621,114,120,234 -3138622,199,226,425 -3138623,98,105,203 -3138624,129,132,261 -3138625,310,337,647 -3138626,112,136,248 -3138627,0,0,0 -3138628,148,152,300 -3138629,155,171,326 -3138630,127,127,254 -3138631,150,146,296 -3138632,285,331,616 -3138633,202,187,389 -3138634,235,237,472 -3138635,173,156,329 -3138636,246,264,510 -3138637,123,107,230 -3138638,179,178,357 -3138639,196,205,401 -3138640,201,177,378 -3138641,103,97,200 -3138642,178,175,353 -3138643,187,191,378 -3138644,240,267,507 -3138645,234,248,482 -3138646,193,181,374 -3138647,289,289,578 -3138648,241,258,499 -3138649,210,193,403 -3138650,177,179,356 -3138651,112,116,228 -3138652,166,174,340 -3138653,165,171,336 -3138654,262,249,511 -3138655,182,175,357 -3138656,171,178,349 -3138657,152,145,297 -3138658,136,152,288 -3138659,137,147,284 -3138660,104,178,282 -3138661,6,3,9 -3138701,238,238,476 -3138702,235,214,449 -3138703,168,168,336 -3138704,209,207,416 -3138705,147,135,282 -3138706,237,217,454 -3138707,116,119,235 -3138708,219,221,440 -3138709,118,112,230 -3138710,144,161,305 -3138711,146,151,297 -3138712,302,302,604 -3138713,230,264,494 -3138714,215,217,432 -3138715,278,281,559 -3138716,144,148,292 -3138717,144,135,279 -3138718,313,320,633 -3138719,256,251,507 -3138720,212,245,457 -3138721,196,208,404 -3138722,149,153,302 -3138723,212,231,443 -3138724,210,210,420 -3138725,209,186,395 -3138726,159,176,335 -3138727,164,155,319 -3138728,66,60,126 -3138801,182,174,356 -3138802,115,133,248 -3138803,261,245,506 -3138804,136,126,262 -3138805,208,197,405 -3138806,230,202,432 -3138807,213,231,444 -3138808,255,262,517 -3138809,265,292,557 -3138810,250,264,514 -3138811,140,150,290 -3138812,108,126,234 -3138813,167,135,302 -3138814,201,229,430 -3138815,14,15,29 -3138816,227,221,448 -3138817,297,369,666 -3138818,135,155,290 -3138819,215,255,470 -3138820,181,210,391 -3138821,274,273,547 -3138822,105,101,206 -3138823,121,136,257 -3138824,328,353,681 -3138825,383,386,769 -3138826,323,329,652 -3138827,237,240,477 -3138828,159,182,341 -3138829,329,361,690 -3138830,176,262,438 -3138831,209,271,480 -3138832,291,274,565 -3138833,198,223,421 -3138834,160,139,299 -3138835,214,229,443 -3138836,225,223,448 -3138837,110,108,218 -3138838,202,202,404 -3138839,297,231,528 -3138840,157,165,322 -3138841,358,377,735 -3138842,150,142,292 -3138843,144,156,300 -3138844,318,347,665 -3138845,335,349,684 -3138846,161,153,314 -3138847,109,112,221 -3138848,129,109,238 -3138901,318,347,665 -3138902,194,179,373 -3138903,244,250,494 -3138904,219,244,463 -3138905,90,84,174 -3138906,251,241,492 -3138907,220,240,460 -3138908,245,250,495 -3138909,217,265,482 -3138910,402,393,795 -3138911,185,208,393 -3138912,198,216,414 -3138913,296,260,556 -3138914,259,291,550 -3138915,483,637,1120 -3138916,228,258,486 -3138917,155,156,311 -3138918,178,166,344 -3138919,142,142,284 -3138920,258,280,538 -3138921,658,674,1332 -3138922,269,268,537 -3139001,525,537,1062 -3139002,0,0,0 -3139003,171,171,342 -3139004,203,205,408 -3139005,171,177,348 -3139006,891,925,1816 -3139007,322,293,615 -3139008,1017,1064,2081 -3139009,0,4,4 -3139010,91,107,198 -3139011,297,305,602 -3139012,267,325,592 -3139013,207,224,431 -3139014,445,484,929 -3139015,666,695,1361 -3139016,279,302,581 -3139017,164,330,494 -3139018,147,152,299 -3139019,169,180,349 -3139020,107,120,227 -3139021,196,190,386 -3139022,219,246,465 -3139023,251,273,524 -3139024,177,183,360 -3139025,129,142,271 -3139026,430,438,868 -3139027,110,118,228 -3139028,321,327,648 -3139029,220,241,461 -3139030,245,268,513 -3139031,180,184,364 -3139032,202,201,403 -3139033,127,126,253 -3139034,224,243,467 -3139035,194,208,402 -3139101,161,176,337 -3139102,133,146,279 -3139103,91,104,195 -3139104,222,255,477 -3139105,329,364,693 -3139106,163,160,323 -3139107,189,165,354 -3139108,144,157,301 -3139109,260,270,530 -3139110,155,178,333 -3139111,232,290,522 -3139112,179,199,378 -3139113,425,449,874 -3139114,217,197,414 -3139115,86,100,186 -3139116,288,303,591 -3139117,200,211,411 -3139118,222,243,465 -3139119,128,131,259 -3139120,174,167,341 -3139121,255,249,504 -3139122,219,232,451 -3139123,102,116,218 -3139124,285,263,548 -3139201,218,165,383 -3139202,258,244,502 -3139203,186,181,367 -3139204,183,180,363 -3139205,184,277,461 -3139206,272,289,561 -3139207,294,265,559 -3139208,228,216,444 -3139209,121,167,288 -3139210,109,110,219 -3139211,213,204,417 -3139212,149,171,320 -3139213,181,169,350 -3139214,228,260,488 -3139301,108,115,223 -3139302,195,187,382 -3139303,140,122,262 -3139304,167,164,331 -3139305,125,134,259 -3139306,193,180,373 -3139307,188,202,390 -3139308,177,194,371 -3139309,153,162,315 -3139310,166,161,327 -3139311,195,214,409 -3139312,175,174,349 -3139313,123,115,238 -3139314,182,188,370 -3139315,121,118,239 -3139316,215,236,451 -3139317,181,192,373 -3139318,261,234,495 -3139319,103,103,206 -3139320,302,304,606 -3139321,0,0,0 -3139322,212,216,428 -3139323,176,195,371 -3139324,191,200,391 -3139325,169,167,336 -3139401,148,131,279 -3139402,152,152,304 -3139403,207,225,432 -3139404,286,311,597 -3139405,15,9,24 -3139406,147,130,277 -3139407,134,111,245 -3139408,361,327,688 -3139409,242,349,591 -3139410,186,158,344 -3139411,183,180,363 -3139412,259,249,508 -3139413,290,273,563 -3139414,198,202,400 -3139415,151,152,303 -3139416,201,170,371 -3139417,83,96,179 -3139418,141,148,289 -3139419,127,173,300 -3139420,3,0,3 -3139421,12,10,22 -3139422,226,221,447 -3139423,216,235,451 -3139424,209,196,405 -3139425,278,298,576 -3139426,141,133,274 -3139427,251,247,498 -3139428,244,209,453 -3139429,186,190,376 -3139430,291,275,566 -3139501,633,655,1288 -3139502,3,3,6 -3139601,511,462,973 -3139602,113,71,184 -3139603,32,48,80 -3139604,226,177,403 -3139605,133,137,270 -3139606,66,39,105 -3139607,223,177,400 -3139608,15,3,18 -3139609,136,91,227 -3139610,133,130,263 -3139611,25,22,47 -3139612,459,4,463 -3139613,441,410,851 -3139614,218,246,464 -3139615,35,12,47 -3139616,146,165,311 -3139617,163,149,312 -3139618,165,166,331 -3139619,237,240,477 -3139620,263,236,499 -3139621,97,82,179 -3139622,11,5,16 -3139623,72,67,139 -3139701,127,116,243 -3139702,195,152,347 -3139703,183,122,305 -3139704,169,143,312 -3139801,0,0,0 -3139802,502,529,1031 -3139803,0,0,0 -3139804,342,320,662 -3139901,7,0,7 -3139902,0,0,0 -3139903,495,549,1044 -3139904,136,138,274 -3139905,103,100,203 -3139906,126,154,280 -3139907,235,233,468 -3139908,0,0,0 -3139909,3,3,6 -3139910,8,7,15 -3140001,640,62,702 -3140002,100,92,192 -3140003,191,175,366 -3140004,206,184,390 -3140005,168,155,323 -3140006,174,157,331 -3140007,194,137,331 -3140008,181,162,343 -3140009,219,195,414 -3140010,144,134,278 -3140011,147,146,293 -3140012,143,118,261 -3140013,269,228,497 -3140014,259,238,497 -3140015,145,128,273 -3140101,0,0,0 -3140102,0,0,0 -3140103,0,0,0 -3140104,0,0,0 -3140105,192,172,364 -3140106,98,120,218 -3140107,234,257,491 -3140108,15,7,22 -3140109,298,318,616 -3140110,38,30,68 -3140111,10,9,19 -3140112,0,0,0 -3140113,0,0,0 -3140114,307,305,612 -3140115,282,257,539 -3140116,146,160,306 -3140201,163,152,315 -3140202,123,115,238 -3140203,74,75,149 -3140204,210,166,376 -3140205,186,178,364 -3140206,102,106,208 -3140207,61,69,130 -3140208,114,111,225 -3140209,27,21,48 -3140210,255,224,479 -3140211,404,379,783 -3140212,127,132,259 -3140213,87,76,163 -3140214,120,138,258 -3140215,123,127,250 -3140301,12,11,23 -3140302,419,396,815 -3140303,255,227,482 -3140304,333,317,650 -3140305,324,240,564 -3140306,254,207,461 -3140307,0,0,0 -3140308,177,166,343 -3140401,4,8,12 -3140402,554,572,1126 -3140403,331,255,586 -3140404,171,177,348 -3140405,142,153,295 -3140406,119,132,251 -3140407,649,608,1257 -3140408,157,101,258 -3140409,252,129,381 -3140410,105,97,202 -3140411,151,161,312 -3140412,0,0,0 -3140501,273,277,550 -3140502,148,135,283 -3140503,219,205,424 -3140504,126,89,215 -3140505,185,142,327 -3140506,249,224,473 -3140507,213,227,440 -3140508,168,120,288 -3140509,209,198,407 -3140510,365,280,645 -3140511,240,228,468 -3140512,194,167,361 -3140513,241,196,437 -3140514,182,192,374 -3140515,112,97,209 -3140516,226,220,446 -3140517,214,184,398 -3140518,118,135,253 -3140519,294,248,542 -3140520,203,210,413 -3140521,246,218,464 -3140522,237,203,440 -3140523,281,305,586 -3140524,250,226,476 -3140525,337,260,597 -3140526,186,162,348 -3140527,238,245,483 -3140528,301,273,574 -3140529,279,272,551 -3140530,55,39,94 -3140531,310,237,547 -3140532,203,129,332 -3140533,0,0,0 -3140534,254,198,452 -3140535,255,194,449 -3140536,207,191,398 -3140537,159,116,275 -3140538,154,137,291 -3140539,194,170,364 -3140540,227,212,439 -3140541,233,245,478 -3140542,252,217,469 -3140543,189,159,348 -3140544,182,200,382 -3140545,217,236,453 -3140546,290,225,515 -3140547,299,301,600 -3140548,248,264,512 -3140549,166,142,308 -3140550,114,57,171 -3140551,111,103,214 -3140601,222,211,433 -3140602,131,139,270 -3140603,212,188,400 -3140604,155,145,300 -3140605,89,98,187 -3140606,365,82,447 -3140607,355,128,483 -3140608,131,110,241 -3140609,177,181,358 -3140610,154,167,321 -3140611,274,155,429 -3140701,3,3,6 -3140702,96,97,193 -3140703,134,127,261 -3140704,181,147,328 -3140705,183,186,369 -3140706,120,106,226 -3140707,156,129,285 -3140708,178,173,351 -3140709,198,153,351 -3140710,158,153,311 -3140711,163,127,290 -3140712,306,111,417 -3140713,144,145,289 -3140801,174,179,353 -3140802,174,174,348 -3140803,190,227,417 -3140804,158,149,307 -3140805,146,154,300 -3140806,115,105,220 -3140807,182,186,368 -3140808,177,151,328 -3140809,155,144,299 -3140810,179,158,337 -3140811,118,130,248 -3140812,238,244,482 -3140813,230,262,492 -3140814,143,117,260 -3140815,189,179,368 -3140816,144,145,289 -3140901,211,203,414 -3140902,218,190,408 -3140903,79,65,144 -3140904,91,88,179 -3140905,231,247,478 -3140906,197,201,398 -3140907,212,243,455 -3140908,147,167,314 -3140909,88,109,197 -3140910,272,254,526 -3140911,170,191,361 -3140912,159,170,329 -3140913,135,120,255 -3140914,90,70,160 -3141001,217,187,404 -3141002,114,113,227 -3141003,125,106,231 -3141004,142,106,248 -3141005,164,159,323 -3141006,217,163,380 -3141007,190,160,350 -3141008,155,128,283 -3141101,172,157,329 -3141102,128,114,242 -3141103,0,0,0 -3141104,226,174,400 -3141105,152,152,304 -3141106,158,162,320 -3141107,178,172,350 -3141108,105,120,225 -3141109,135,62,197 -3141110,109,97,206 -3141111,123,98,221 -3141112,236,208,444 -3141201,103,106,209 -3141202,146,174,320 -3141203,129,113,242 -3141204,134,119,253 -3141205,240,252,492 -3141206,175,204,379 -3141207,151,166,317 -3141208,105,115,220 -3141209,117,98,215 -3141210,182,166,348 -3141211,144,128,272 -3141212,146,172,318 -3141213,157,181,338 -3141214,126,144,270 -3141215,0,0,0 -3141301,157,164,321 -3141302,230,231,461 -3141303,168,386,554 -3141304,174,193,367 -3141305,195,194,389 -3141306,234,261,495 -3141307,184,234,418 -3141308,105,156,261 -3141309,242,260,502 -3141310,141,173,314 -3141311,218,252,470 -3141312,226,317,543 -3141313,216,249,465 -3141314,205,245,450 -3141315,105,110,215 -3141316,192,221,413 -3141317,153,168,321 -3141318,311,352,663 -3141319,245,262,507 -3141320,189,226,415 -3141321,254,260,514 -3141322,194,226,420 -3141323,185,219,404 -3141324,279,275,554 -3141325,155,151,306 -3141326,163,283,446 -3141327,248,326,574 -3141328,115,196,311 -3141329,180,208,388 -3141330,125,134,259 -3141331,267,271,538 -3141332,235,232,467 -3141333,343,332,675 -3141334,269,302,571 -3141335,132,131,263 -3141336,11,12,23 -3141401,194,209,403 -3141402,169,171,340 -3141403,203,206,409 -3141404,235,233,468 -3141405,302,304,606 -3141406,141,160,301 -3141407,243,248,491 -3141408,157,128,285 -3141409,192,202,394 -3141410,178,195,373 -3141411,326,355,681 -3141412,246,233,479 -3141413,123,119,242 -3141414,176,194,370 -3141415,206,201,407 -3141416,243,237,480 -3141417,0,0,0 -3141418,91,161,252 -3141419,126,134,260 -3141420,292,330,622 -3141421,132,186,318 -3141422,305,319,624 -3141423,150,135,285 -3141424,258,262,520 -3141425,109,113,222 -3141426,111,108,219 -3141427,195,218,413 -3141428,140,170,310 -3141429,240,234,474 -3141430,0,0,0 -3141431,114,119,233 -3141432,157,184,341 -3141433,441,429,870 -3141434,394,439,833 -3141435,172,198,370 -3141436,208,238,446 -3141501,233,264,497 -3141502,203,195,398 -3141503,285,291,576 -3141504,251,246,497 -3141505,286,288,574 -3141506,320,377,697 -3141507,230,196,426 -3141508,261,279,540 -3141509,252,266,518 -3141510,134,133,267 -3141511,128,128,256 -3141512,171,165,336 -3141513,184,194,378 -3141514,523,536,1059 -3141515,0,0,0 -3141601,0,0,0 -3141602,492,777,1269 -3141603,225,259,484 -3141604,237,250,487 -3141605,128,151,279 -3141606,276,323,599 -3141607,171,275,446 -3141608,197,214,411 -3141609,215,259,474 -3141610,284,279,563 -3141611,228,289,517 -3141612,191,218,409 -3141613,255,276,531 -3141614,222,251,473 -3141615,163,161,324 -3141616,211,221,432 -3141617,201,216,417 -3141618,447,513,960 -3141619,10,3,13 -3141701,225,286,511 -3141702,152,158,310 -3141703,102,116,218 -3141704,174,199,373 -3141705,130,132,262 -3141706,237,303,540 -3141707,232,256,488 -3141708,184,143,327 -3141709,151,157,308 -3141710,246,287,533 -3141711,170,219,389 -3141712,278,288,566 -3141713,122,136,258 -3141714,179,197,376 -3141715,224,228,452 -3141716,226,247,473 -3141717,115,119,234 -3141718,0,0,0 -3141719,167,156,323 -3141720,212,230,442 -3141721,261,303,564 -3141722,257,293,550 -3141723,137,142,279 -3141724,213,223,436 -3141725,232,217,449 -3141801,163,264,427 -3141802,205,216,421 -3141803,158,186,344 -3141804,124,114,238 -3141805,167,185,352 -3141806,128,128,256 -3141807,240,221,461 -3141808,209,211,420 -3141809,119,125,244 -3141810,241,264,505 -3141811,114,124,238 -3141812,259,260,519 -3141813,188,205,393 -3141814,243,251,494 -3141815,203,185,388 -3141816,218,215,433 -3141901,156,167,323 -3141902,221,202,423 -3141903,225,230,455 -3141904,251,260,511 -3141905,200,228,428 -3141906,201,214,415 -3141907,286,323,609 -3141908,181,166,347 -3141909,201,202,403 -3141910,96,101,197 -3141911,133,161,294 -3141912,128,140,268 -3141913,294,368,662 -3141914,166,193,359 -3141915,0,0,0 -3141916,181,206,387 -3142001,337,318,655 -3142002,195,277,472 -3142003,186,174,360 -3142004,205,261,466 -3142005,240,251,491 -3142006,348,393,741 -3142007,256,299,555 -3142008,3,0,3 -3142009,152,165,317 -3142010,125,133,258 -3142011,142,113,255 -3142012,156,155,311 -3142013,215,227,442 -3142014,432,466,898 -3142015,286,350,636 -3142016,239,257,496 -3142017,332,341,673 -3142018,143,142,285 -3142019,167,220,387 -3142020,323,334,657 -3142021,244,288,532 -3142022,185,174,359 -3142023,616,698,1314 -3142024,228,263,491 -3142025,153,135,288 -3142026,358,390,748 -3142027,228,228,456 -3142028,215,262,477 -3142029,206,197,403 -3142030,127,195,322 -3142031,171,194,365 -3142101,206,222,428 -3142102,171,170,341 -3142103,252,247,499 -3142104,126,127,253 -3142105,312,324,636 -3142106,170,173,343 -3142107,171,182,353 -3142108,183,183,366 -3142109,257,320,577 -3142110,173,179,352 -3142111,170,155,325 -3142112,143,196,339 -3142113,201,220,421 -3142114,0,0,0 -3142115,188,194,382 -3142116,245,258,503 -3142117,141,177,318 -3142118,197,202,399 -3142119,208,240,448 -3142120,188,193,381 -3142121,215,239,454 -3142122,18,28,46 -3142123,300,318,618 -3142124,185,190,375 -3142125,192,197,389 -3142126,334,342,676 -3142201,140,155,295 -3142202,169,188,357 -3142203,102,116,218 -3142204,142,144,286 -3142205,190,189,379 -3142206,129,136,265 -3142207,216,216,432 -3142208,259,282,541 -3142209,235,253,488 -3142210,200,222,422 -3142211,157,185,342 -3142212,189,193,382 -3142213,250,259,509 -3142214,202,231,433 -3142215,125,133,258 -3142216,214,192,406 -3142217,213,273,486 -3142218,202,201,403 -3142219,213,283,496 -3142220,184,201,385 -3142301,0,0,0 -3142302,166,165,331 -3142303,122,123,245 -3142304,188,196,384 -3142305,148,141,289 -3142306,180,174,354 -3142307,195,211,406 -3142308,180,210,390 -3142309,133,190,323 -3142310,338,374,712 -3142311,230,272,502 -3142312,416,425,841 -3142313,101,98,199 -3142314,177,201,378 -3142315,124,111,235 -3142316,143,158,301 -3142317,160,164,324 -3142318,165,142,307 -3142319,228,231,459 -3142320,271,260,531 -3142321,233,367,600 -3142322,0,0,0 -3142323,335,317,652 -3142324,9,5,14 -3142325,165,170,335 -3142401,276,289,565 -3142402,190,186,376 -3142403,235,254,489 -3142404,177,193,370 -3142405,221,294,515 -3142406,259,226,485 -3142407,266,248,514 -3142408,309,329,638 -3142409,293,316,609 -3142410,293,296,589 -3142411,224,204,428 -3142412,159,155,314 -3142413,0,0,0 -3142501,131,136,267 -3142502,180,242,422 -3142503,276,279,555 -3142504,84,84,168 -3142505,145,173,318 -3142506,198,194,392 -3142507,238,240,478 -3142508,184,190,374 -3142509,175,200,375 -3142510,269,298,567 -3142511,138,166,304 -3142512,213,213,426 -3142513,214,221,435 -3142514,165,176,341 -3142515,195,211,406 -3142516,355,371,726 -3142517,219,235,454 -3142518,256,274,530 -3142519,185,218,403 -3142520,190,200,390 -3142521,197,186,383 -3142522,155,161,316 -3142523,181,184,365 -3142524,235,259,494 -3142525,155,154,309 -3142526,188,203,391 -3142527,314,369,683 -3142528,151,184,335 -3142529,0,0,0 -3142530,136,122,258 -3142531,415,437,852 -3142532,173,187,360 -3142533,40,29,69 -3142601,268,264,532 -3142602,167,197,364 -3142603,234,234,468 -3142604,229,247,476 -3142605,208,233,441 -3142606,150,146,296 -3142607,49,43,92 -3142608,160,155,315 -3142609,0,0,0 -3142610,179,179,358 -3142611,192,213,405 -3142612,174,176,350 -3142613,144,157,301 -3142614,170,183,353 -3142615,293,285,578 -3142616,215,264,479 -3142617,220,184,404 -3142618,153,147,300 -3142619,284,260,544 -3142620,204,198,402 -3142621,242,292,534 -3142622,375,445,820 -3142623,196,185,381 -3142624,162,178,340 -3142625,113,123,236 -3142626,210,203,413 -3142701,165,193,358 -3142702,257,335,592 -3142703,143,173,316 -3142704,233,239,472 -3142705,156,143,299 -3142706,162,176,338 -3142707,193,225,418 -3142708,213,196,409 -3142709,214,221,435 -3142710,219,250,469 -3142711,203,232,435 -3142712,261,247,508 -3142713,157,156,313 -3142714,214,230,444 -3142715,209,212,421 -3142716,197,176,373 -3142717,222,247,469 -3142718,149,256,405 -3142719,165,165,330 -3142720,232,261,493 -3142721,109,125,234 -3142722,237,264,501 -3142723,140,162,302 -3142724,0,0,0 -3142725,169,173,342 -3142726,187,194,381 -3142727,181,168,349 -3142728,163,172,335 -3142729,208,282,490 -3142730,206,237,443 -3142731,150,158,308 -3142732,215,200,415 -3142733,266,275,541 -3142734,104,113,217 -3142735,296,314,610 -3142736,216,250,466 -3142737,112,213,325 -3142738,197,196,393 -3142739,215,231,446 -3142740,206,223,429 -3142741,427,457,884 -3142801,148,145,293 -3142802,132,128,260 -3142803,293,298,591 -3142804,156,183,339 -3142805,266,315,581 -3142806,164,165,329 -3142807,111,108,219 -3142808,250,221,471 -3142809,170,209,379 -3142810,123,157,280 -3142811,182,225,407 -3142812,213,210,423 -3142813,162,158,320 -3142814,260,288,548 -3142815,183,171,354 -3142816,133,156,289 -3142817,121,135,256 -3142818,234,237,471 -3142819,277,271,548 -3142820,276,219,495 -3142821,256,305,561 -3142822,190,184,374 -3142823,171,178,349 -3142824,196,174,370 -3142825,238,250,488 -3142826,202,189,391 -3142827,134,121,255 -3142828,198,226,424 -3142901,126,130,256 -3142902,139,129,268 -3142903,101,94,195 -3142904,84,74,158 -3142905,207,204,411 -3142906,166,152,318 -3142907,463,503,966 -3142908,210,223,433 -3142909,264,250,514 -3142910,153,192,345 -3142911,161,166,327 -3142912,173,159,332 -3142913,200,200,400 -3142914,127,134,261 -3142915,187,191,378 -3142916,286,301,587 -3142917,253,282,535 -3142918,0,0,0 -3142919,0,0,0 -3143001,240,205,445 -3143002,111,109,220 -3143003,148,138,286 -3143004,102,121,223 -3143005,156,156,312 -3143006,147,144,291 -3143007,201,194,395 -3143008,235,241,476 -3143009,127,123,250 -3143010,140,113,253 -3143011,107,103,210 -3143101,184,187,371 -3143102,157,135,292 -3143103,207,234,441 -3143104,124,114,238 -3143105,129,133,262 -3143106,208,171,379 -3143107,354,344,698 -3143108,294,256,550 -3143109,109,92,201 -3143110,203,197,400 -3143111,311,313,624 -3143112,201,178,379 -3143113,313,294,607 -3143114,171,156,327 -3143115,125,113,238 -3143116,219,186,405 -3143117,149,142,291 -3143118,168,142,310 -3143119,288,339,627 -3143120,386,404,790 -3143121,130,141,271 -3143122,265,273,538 -3143123,100,76,176 -3143201,229,253,482 -3143202,136,266,402 -3143203,245,261,506 -3143204,243,250,493 -3143205,158,159,317 -3143206,151,159,310 -3143207,169,155,324 -3143208,284,270,554 -3143209,128,158,286 -3143210,149,182,331 -3143211,142,148,290 -3143212,163,239,402 -3143213,207,220,427 -3143214,205,204,409 -3143215,123,122,245 -3143216,148,161,309 -3143217,125,110,235 -3143218,159,184,343 -3143219,104,115,219 -3143220,225,253,478 -3143221,280,327,607 -3143222,322,352,674 -3143223,154,166,320 -3143224,154,164,318 -3143225,250,319,569 -3143226,228,234,462 -3143227,102,90,192 -3143228,183,167,350 -3143229,160,175,335 -3143230,376,393,769 -3143231,282,299,581 -3143232,248,240,488 -3143233,245,258,503 -3143234,138,178,316 -3143235,190,180,370 -3143236,132,175,307 -3143237,148,186,334 -3143238,418,461,879 -3143239,207,224,431 -3143240,278,285,563 -3143241,247,272,519 -3143242,185,220,405 -3143243,213,265,478 -3143301,106,104,210 -3143302,180,168,348 -3143303,194,180,374 -3143304,229,211,440 -3143305,251,231,482 -3143306,165,159,324 -3143307,109,104,213 -3143308,127,164,291 -3143309,110,131,241 -3143310,153,154,307 -3143311,126,138,264 -3143312,122,144,266 -3143313,186,220,406 -3143314,141,178,319 -3143315,162,158,320 -3143316,181,185,366 -3143317,144,141,285 -3143318,152,161,313 -3143319,158,164,322 -3143320,71,73,144 -3143321,243,237,480 -3143322,187,240,427 -3143323,260,239,499 -3143324,157,124,281 -3143325,266,252,518 -3143326,185,187,372 -3143327,127,135,262 -3143328,197,226,423 -3143329,134,137,271 -3143330,127,128,255 -3143331,184,178,362 -3143332,160,159,319 -3143333,264,264,528 -3143334,132,120,252 -3143335,162,185,347 -3143336,145,151,296 -3143337,131,111,242 -3143338,224,218,442 -3143339,160,163,323 -3143340,206,200,406 -3143341,240,232,472 -3143342,180,146,326 -3143343,101,79,180 -3143344,105,105,210 -3143345,187,171,358 -3143346,255,213,468 -3143347,188,222,410 -3143348,93,87,180 -3143349,203,217,420 -3143350,194,208,402 -3143351,171,141,312 -3143352,164,166,330 -3143353,149,133,282 -3143354,165,167,332 -3143355,145,147,292 -3143356,143,138,281 -3143357,221,227,448 -3143358,274,305,579 -3143359,209,227,436 -3143401,34,88,122 -3143402,194,187,381 -3143403,205,222,427 -3143404,121,123,244 -3143405,115,135,250 -3143406,174,195,369 -3143407,143,148,291 -3143408,0,0,0 -3143409,0,0,0 -3143410,168,169,337 -3143411,262,226,488 -3143412,170,180,350 -3143413,215,208,423 -3143414,153,166,319 -3143501,0,0,0 -3143502,171,196,367 -3143503,130,172,302 -3143504,175,197,372 -3143505,136,165,301 -3143506,71,67,138 -3143507,228,234,462 -3143508,216,220,436 -3143509,187,275,462 -3143510,101,131,232 -3143511,0,0,0 -3143512,214,228,442 -3143513,269,285,554 -3143514,326,291,617 -3143515,186,193,379 -3143516,157,156,313 -3143517,202,218,420 -3143518,150,171,321 -3143519,318,344,662 -3143520,14,25,39 -3143521,74,76,150 -3143522,0,0,0 -3143523,0,0,0 -3143524,334,426,760 -3143601,688,701,1389 -3143602,169,159,328 -3143603,214,223,437 -3143604,433,480,913 -3143605,168,152,320 -3143606,158,168,326 -3143607,216,230,446 -3143608,130,156,286 -3143609,260,269,529 -3143610,161,171,332 -3143611,179,149,328 -3143612,235,241,476 -3143613,8,5,13 -3143614,201,222,423 -3143615,327,312,639 -3143616,294,294,588 -3143701,131,160,291 -3143702,96,112,208 -3143703,182,178,360 -3143704,243,253,496 -3143705,137,117,254 -3143706,200,230,430 -3143707,188,209,397 -3143708,293,313,606 -3143709,164,163,327 -3143710,240,272,512 -3143711,0,0,0 -3143712,84,99,183 -3143713,0,0,0 -3143714,257,238,495 -3143715,0,0,0 -3143716,204,201,405 -3143717,79,96,175 -3143718,170,185,355 -3143719,163,171,334 -3143720,119,137,256 -3143721,120,153,273 -3143801,91,117,208 -3143802,211,217,428 -3143803,112,114,226 -3143804,196,193,389 -3143805,303,308,611 -3143806,204,220,424 -3143807,144,169,313 -3143808,117,148,265 -3143809,195,202,397 -3143810,126,134,260 -3143811,235,279,514 -3143812,154,271,425 -3143813,174,197,371 -3143814,216,206,422 -3143815,113,119,232 -3143816,212,333,545 -3143817,214,229,443 -3143818,165,196,361 -3143819,190,192,382 -3143820,237,264,501 -3143821,184,228,412 -3143822,124,109,233 -3143823,162,148,310 -3143824,139,148,287 -3143825,0,0,0 -3143826,0,0,0 -3143827,176,254,430 -3143828,151,142,293 -3143829,169,180,349 -3143901,226,229,455 -3143902,240,251,491 -3143903,154,157,311 -3143904,188,189,377 -3143905,142,155,297 -3143906,304,378,682 -3143907,261,297,558 -3143908,201,289,490 -3143909,423,479,902 -3143910,203,197,400 -3143911,638,670,1308 -3143912,142,126,268 -3143913,200,177,377 -3143914,145,142,287 -3144001,166,165,331 -3144002,122,115,237 -3144003,139,142,281 -3144004,300,371,671 -3144005,96,149,245 -3144006,317,408,725 -3144007,90,93,183 -3144008,263,267,530 -3144009,136,152,288 -3144010,130,151,281 -3144011,142,155,297 -3144012,128,126,254 -3144013,105,99,204 -3144014,149,161,310 -3144015,271,234,505 -3144016,187,196,383 -3144017,184,189,373 -3144018,159,174,333 -3144019,235,229,464 -3144020,140,184,324 -3144021,266,266,532 -3144022,117,119,236 -3144101,148,126,274 -3144102,414,480,894 -3144103,86,65,151 -3144104,169,146,315 -3144105,207,196,403 -3144106,319,324,643 -3144107,111,104,215 -3144108,0,0,0 -3144109,280,262,542 -3144110,152,172,324 -3144111,142,144,286 -3144112,74,84,158 -3144113,194,196,390 -3144114,159,156,315 -3144115,324,300,624 -3144201,182,199,381 -3144202,79,78,157 -3144203,155,166,321 -3144204,197,191,388 -3144205,216,246,462 -3144206,158,167,325 -3144207,143,144,287 -3144208,190,201,391 -3144209,124,123,247 -3144210,145,151,296 -3144211,3,3,6 -3144212,158,166,324 -3144213,203,197,400 -3144214,72,80,152 -3144215,214,203,417 -3144216,222,224,446 -3144217,135,142,277 -3144218,166,179,345 -3144219,128,134,262 -3144220,203,211,414 -3144221,154,152,306 -3144222,152,135,287 -3144223,250,240,490 -3144224,146,148,294 -3144225,188,208,396 -3144226,159,155,314 -3144227,138,126,264 -3144228,0,0,0 -3144229,120,116,236 -3144230,106,90,196 -3144231,198,198,396 -3144301,156,144,300 -3144302,177,192,369 -3144303,215,264,479 -3144304,116,132,248 -3144305,159,186,345 -3144306,88,81,169 -3144307,157,169,326 -3144308,126,110,236 -3144309,171,156,327 -3144310,222,205,427 -3144311,155,162,317 -3144312,0,0,0 -3144313,140,134,274 -3144314,125,129,254 -3144315,152,174,326 -3144316,115,125,240 -3144317,138,137,275 -3144318,119,113,232 -3144319,181,208,389 -3144320,232,193,425 -3144401,210,178,388 -3144402,117,114,231 -3144403,191,184,375 -3144404,197,208,405 -3144405,194,208,402 -3144406,147,120,267 -3144407,200,207,407 -3144408,217,235,452 -3144409,178,171,349 -3144410,176,157,333 -3144411,175,160,335 -3144412,207,231,438 -3144413,140,141,281 -3144414,266,264,530 -3144415,115,98,213 -3144416,246,236,482 -3144417,230,255,485 -3144418,116,112,228 -3144419,162,136,298 -3144420,111,109,220 -3144421,276,295,571 -3144422,176,195,371 -3144423,190,189,379 -3144424,200,213,413 -3144425,231,255,486 -3144426,141,190,331 -3144427,143,158,301 -3144428,89,100,189 -3144501,74,80,154 -3144502,304,304,608 -3144503,185,198,383 -3144504,111,140,251 -3144505,353,346,699 -3144506,132,139,271 -3144507,457,454,911 -3144508,327,342,669 -3144509,123,128,251 -3144510,187,176,363 -3144511,174,195,369 -3144512,129,138,267 -3144513,149,148,297 -3144514,113,97,210 -3144601,220,237,457 -3144602,146,170,316 -3144603,242,267,509 -3144604,266,283,549 -3144605,236,290,526 -3144606,166,160,326 -3144607,217,250,467 -3144608,123,89,212 -3144609,250,161,411 -3144610,183,315,498 -3144611,249,262,511 -3144612,392,415,807 -3144613,241,263,504 -3144614,215,235,450 -3144615,228,265,493 -3144616,124,158,282 -3144617,137,165,302 -3144618,167,183,350 -3144619,127,113,240 -3144620,144,123,267 -3144621,256,280,536 -3144622,140,192,332 -3144623,200,234,434 -3144624,231,246,477 -3144625,104,110,214 -3144626,178,213,391 -3144627,195,318,513 -3144628,230,249,479 -3144629,190,208,398 -3144701,124,118,242 -3144702,307,314,621 -3144703,190,194,384 -3144704,191,322,513 -3144705,246,242,488 -3144706,207,244,451 -3144707,149,134,283 -3144708,113,134,247 -3144709,253,263,516 -3144710,292,310,602 -3144711,382,383,765 -3144712,298,298,596 -3144713,130,114,244 -3144714,220,275,495 -3144715,236,218,454 -3144716,215,218,433 -3144717,139,142,281 -3144718,282,269,551 -3144719,171,197,368 -3144720,319,339,658 -3144721,186,297,483 -3144722,176,257,433 -3144801,193,187,380 -3144802,205,207,412 -3144803,144,139,283 -3144804,78,226,304 -3144805,276,259,535 -3144806,114,110,224 -3144807,258,259,517 -3144808,128,127,255 -3144809,215,225,440 -3144810,230,276,506 -3144811,114,123,237 -3144812,162,187,349 -3144813,119,140,259 -3144814,206,198,404 -3144815,126,138,264 -3144816,227,250,477 -3144817,421,455,876 -3144818,215,240,455 -3144901,134,141,275 -3144902,133,142,275 -3144903,268,249,517 -3144904,195,219,414 -3144905,206,215,421 -3144906,141,110,251 -3144907,195,190,385 -3144908,192,176,368 -3144909,269,280,549 -3144910,190,194,384 -3144911,113,113,226 -3144912,223,221,444 -3144913,123,117,240 -3144914,415,416,831 -3145001,149,155,304 -3145002,140,153,293 -3145003,388,410,798 -3145004,272,274,546 -3145005,321,332,653 -3145006,141,133,274 -3145007,429,478,907 -3145008,159,213,372 -3145009,121,138,259 -3145010,186,167,353 -3145011,227,238,465 -3145012,110,90,200 -3145013,219,234,453 -3145014,187,186,373 -3145015,149,167,316 -3145016,270,260,530 -3145017,189,177,366 -3145018,142,147,289 -3145019,187,203,390 -3145020,132,121,253 -3145021,198,194,392 -3145022,196,199,395 -3145023,168,151,319 -3145024,194,173,367 -3145025,231,210,441 -3145026,170,143,313 -3145027,301,316,617 -3145101,126,109,235 -3145102,101,112,213 -3145103,170,163,333 -3145104,129,137,266 -3145105,120,120,240 -3145106,187,209,396 -3145107,102,85,187 -3145108,172,180,352 -3145109,220,220,440 -3145110,95,81,176 -3145111,212,192,404 -3145112,103,124,227 -3145113,148,130,278 -3145114,237,241,478 -3145115,172,184,356 -3145116,162,171,333 -3145117,151,167,318 -3145118,114,99,213 -3145119,87,91,178 -3145120,197,190,387 -3145121,178,163,341 -3145122,239,201,440 -3145123,114,115,229 -3145124,193,188,381 -3145125,155,166,321 -3145126,132,100,232 -3145127,253,256,509 -3145128,108,106,214 -3145129,103,108,211 -3145130,138,104,242 -3145131,90,91,181 -3145132,314,328,642 -3145133,158,141,299 -3145201,178,299,477 -3145202,472,528,1000 -3145203,171,201,372 -3145204,141,136,277 -3145205,164,173,337 -3145206,213,230,443 -3145207,240,219,459 -3145208,168,157,325 -3145209,181,177,358 -3145210,118,128,246 -3145211,155,172,327 -3145212,183,168,351 -3145213,185,207,392 -3145214,208,213,421 -3145215,185,174,359 -3145216,159,243,402 -3145301,142,158,300 -3145302,157,184,341 -3145303,269,248,517 -3145304,158,187,345 -3145305,136,190,326 -3145306,223,244,467 -3145307,124,143,267 -3145308,160,204,364 -3145309,195,395,590 -3145310,206,201,407 -3145311,143,153,296 -3145312,157,170,327 -3145313,178,213,391 -3145314,124,146,270 -3145315,196,213,409 -3145316,268,275,543 -3145317,237,281,518 -3145318,178,186,364 -3145319,123,137,260 -3145320,240,294,534 -3145321,139,173,312 -3145322,167,143,310 -3145323,201,236,437 -3145324,175,199,374 -3145325,148,145,293 -3145401,119,147,266 -3145402,117,108,225 -3145403,102,121,223 -3145404,223,199,422 -3145405,270,297,567 -3145406,195,219,414 -3145407,235,260,495 -3145408,267,300,567 -3145409,259,241,500 -3145410,205,225,430 -3145411,201,201,402 -3145412,178,205,383 -3145413,188,208,396 -3145414,249,201,450 -3145415,77,84,161 -3145501,216,261,477 -3145502,297,299,596 -3145503,134,143,277 -3145504,149,148,297 -3145505,147,161,308 -3145506,153,160,313 -3145507,229,248,477 -3145508,113,158,271 -3145509,204,232,436 -3145510,258,265,523 -3145511,123,136,259 -3145512,249,258,507 -3145513,180,195,375 -3145514,140,148,288 -3145515,137,141,278 -3145516,149,201,350 -3145517,145,168,313 -3145518,189,211,400 -3145519,167,197,364 -3145520,244,251,495 -3145521,10,8,18 -3145522,136,161,297 -3145523,127,165,292 -3145601,207,232,439 -3145602,215,198,413 -3145603,176,189,365 -3145604,252,194,446 -3145605,115,66,181 -3145606,148,207,355 -3145607,243,256,499 -3145608,152,161,313 -3145609,177,231,408 -3145610,151,183,334 -3145611,217,257,474 -3145612,145,140,285 -3145613,146,155,301 -3145614,163,168,331 -3145615,145,154,299 -3145616,120,150,270 -3145617,147,159,306 -3145618,229,267,496 -3145619,178,169,347 -3145620,175,186,361 -3145621,125,141,266 -3145622,237,275,512 -3145623,188,216,404 -3145624,240,237,477 -3145625,219,223,442 -3145626,178,189,367 -3145627,140,155,295 -3145628,184,200,384 -3145629,173,275,448 -3145630,167,183,350 -3145631,126,129,255 -3145632,162,178,340 -3145633,172,194,366 -3145634,230,214,444 -3145635,147,187,334 -3145636,67,139,206 -3145637,91,109,200 -3145701,240,308,548 -3145702,232,245,477 -3145703,169,175,344 -3145704,123,130,253 -3145705,197,175,372 -3145706,202,228,430 -3145707,91,110,201 -3145708,168,196,364 -3145709,147,165,312 -3145710,194,197,391 -3145711,93,119,212 -3145712,186,221,407 -3145713,199,223,422 -3145714,139,133,272 -3145715,358,84,442 -3145716,162,180,342 -3145717,185,211,396 -3145718,206,219,425 -3145719,167,192,359 -3145720,174,179,353 -3145721,125,189,314 -3145722,234,258,492 -3145723,219,245,464 -3145724,112,124,236 -3145725,256,255,511 -3145726,13,4,17 -3145727,264,259,523 -3145728,49,130,179 -3145801,157,199,356 -3145802,313,415,728 -3145803,95,120,215 -3145804,151,172,323 -3145805,142,207,349 -3145806,188,167,355 -3145807,389,447,836 -3145808,206,231,437 -3145809,166,185,351 -3145810,213,220,433 -3145811,225,216,441 -3145812,341,323,664 -3145813,135,144,279 -3145814,358,367,725 -3145815,484,493,977 -3145816,374,269,643 -3145817,153,149,302 -3145818,162,158,320 -3145819,211,202,413 -3145820,153,150,303 -3145821,85,86,171 -3145822,150,152,302 -3145823,132,140,272 -3145824,313,325,638 -3145825,133,131,264 -3145826,161,150,311 -3145827,0,4,4 -3145901,133,146,279 -3145902,134,144,278 -3145903,124,132,256 -3145904,160,175,335 -3145905,172,159,331 -3145906,201,188,389 -3145907,168,178,346 -3145908,168,217,385 -3145909,161,158,319 -3145910,155,149,304 -3145911,123,135,258 -3145912,219,233,452 -3145913,147,167,314 -3145914,172,192,364 -3145915,112,116,228 -3145916,240,237,477 -3145917,146,166,312 -3145918,271,272,543 -3145919,75,129,204 -3145920,180,174,354 -3145921,88,107,195 -3145922,117,57,174 -3145923,259,296,555 -3145924,233,263,496 -3145925,256,265,521 -3145926,181,204,385 -3145927,155,151,306 -3145928,0,0,0 -3145929,115,134,249 -3145930,166,208,374 -3145931,267,310,577 -3145932,150,171,321 -3145933,136,144,280 -3145934,202,234,436 -3145935,244,264,508 -3145936,182,213,395 -3145937,183,235,418 -3146001,188,199,387 -3146002,159,168,327 -3146003,249,264,513 -3146004,245,278,523 -3146005,292,322,614 -3146006,289,313,602 -3146007,138,148,286 -3146008,114,132,246 -3146009,246,330,576 -3146010,151,140,291 -3146011,233,239,472 -3146012,231,224,455 -3146013,179,169,348 -3146014,153,185,338 -3146015,216,194,410 -3146016,283,286,569 -3146017,297,314,611 -3146018,147,154,301 -3146019,103,88,191 -3146020,152,148,300 -3146021,165,171,336 -3146022,138,133,271 -3146023,99,88,187 -3146101,210,200,410 -3146102,221,214,435 -3146103,125,139,264 -3146104,271,254,525 -3146105,121,104,225 -3146106,243,207,450 -3146107,194,170,364 -3146108,155,140,295 -3146109,179,159,338 -3146110,143,152,295 -3146111,124,123,247 -3146112,160,131,291 -3146113,219,187,406 -3146114,105,95,200 -3146115,173,137,310 -3146116,100,112,212 -3146117,142,136,278 -3146118,165,140,305 -3146119,168,155,323 -3146120,159,122,281 -3146121,127,132,259 -3146122,138,125,263 -3146123,153,173,326 -3146124,155,177,332 -3146125,266,243,509 -3146201,157,173,330 -3146202,118,106,224 -3146203,214,212,426 -3146204,134,125,259 -3146205,196,220,416 -3146206,47,56,103 -3146207,265,304,569 -3146208,204,208,412 -3146209,269,227,496 -3146210,117,148,265 -3146211,85,119,204 -3146212,127,140,267 -3146213,159,143,302 -3146214,111,107,218 -3146215,202,203,405 -3146216,155,163,318 -3146217,165,208,373 -3146218,229,257,486 -3146219,167,200,367 -3146220,179,158,337 -3146221,239,248,487 -3146222,159,164,323 -3146223,73,72,145 -3146224,242,244,486 -3146301,201,148,349 -3146302,122,103,225 -3146303,223,232,455 -3146304,163,133,296 -3146305,320,293,613 -3146306,202,186,388 -3146307,86,69,155 -3146308,248,197,445 -3146309,124,105,229 -3146310,153,135,288 -3146311,256,242,498 -3146401,183,171,354 -3146402,223,228,451 -3146403,205,223,428 -3146404,162,198,360 -3146405,275,319,594 -3146406,110,119,229 -3146407,217,196,413 -3146408,159,182,341 -3146409,263,272,535 -3146410,132,120,252 -3146411,172,181,353 -3146412,55,43,98 -3146413,32,33,65 -3146414,143,154,297 -3146501,155,163,318 -3146502,157,158,315 -3146503,161,143,304 -3146504,231,199,430 -3146505,225,225,450 -3146506,183,168,351 -3146507,67,52,119 -3146508,146,133,279 -3146509,125,108,233 -3146510,253,202,455 -3146511,30,14,44 -3146512,137,135,272 -3146513,174,145,319 -3146514,261,236,497 -3146515,222,219,441 -3146516,246,204,450 -3146517,221,165,386 -3146518,178,151,329 -3146519,169,170,339 -3146520,227,225,452 -3146601,1225,1111,2336 -3146602,0,0,0 -3146701,235,243,478 -3146702,165,162,327 -3146703,310,289,599 -3146704,175,159,334 -3146705,220,242,462 -3146706,193,206,399 -3146707,192,213,405 -3146708,237,249,486 -3146709,103,92,195 -3146710,174,177,351 -3146711,146,134,280 -3146712,120,122,242 -3146713,177,169,346 -3146801,222,227,449 -3146802,110,127,237 -3146803,83,147,230 -3146804,145,136,281 -3146805,114,129,243 -3146806,127,144,271 -3146807,134,139,273 -3146808,189,185,374 -3146809,278,267,545 -3146810,186,181,367 -3146811,455,37,492 -3146812,219,238,457 -3146813,113,126,239 -3146814,0,0,0 -3146815,227,237,464 -3146816,141,156,297 -3146817,196,177,373 -3146818,154,175,329 -3146819,169,149,318 -3146820,237,236,473 -3146821,126,116,242 -3146822,222,238,460 -3146823,136,134,270 -3146824,210,219,429 -3146825,141,157,298 -3146826,104,120,224 -3146827,192,209,401 -3146828,208,213,421 -3146901,181,164,345 -3146902,191,203,394 -3146903,201,184,385 -3146904,248,248,496 -3146905,212,327,539 -3146906,190,193,383 -3146907,222,213,435 -3146908,70,93,163 -3146909,165,155,320 -3147001,161,144,305 -3147002,186,204,390 -3147003,316,308,624 -3147004,224,236,460 -3147005,59,58,117 -3147006,353,396,749 -3147007,128,120,248 -3147008,237,208,445 -3147009,352,364,716 -3147010,368,363,731 -3147011,361,357,718 -3147101,257,263,520 -3147102,160,154,314 -3147103,252,299,551 -3147104,182,172,354 -3147105,136,114,250 -3147106,197,196,393 -3147107,180,192,372 -3147108,129,116,245 -3147109,168,188,356 -3147110,160,158,318 -3147111,220,223,443 -3147112,280,250,530 -3147113,205,215,420 -3147114,223,255,478 -3147115,148,147,295 -3147116,328,441,769 -3147117,149,169,318 -3147118,205,188,393 -3147119,42,25,67 -3147120,181,187,368 -3147121,233,223,456 -3147122,76,74,150 -3147123,229,295,524 -3147124,0,0,0 -3147125,173,174,347 -3147126,130,136,266 -3147127,161,153,314 -3147128,97,126,223 -3147129,151,159,310 -3147201,231,240,471 -3147202,172,223,395 -3147203,249,243,492 -3147204,158,141,299 -3147205,119,139,258 -3147206,130,138,268 -3147207,232,236,468 -3147208,158,165,323 -3147209,212,192,404 -3147210,222,238,460 -3147211,153,140,293 -3147212,106,115,221 -3147213,202,249,451 -3147214,277,302,579 -3147215,167,181,348 -3147216,199,209,408 -3147301,213,196,409 -3147302,216,212,428 -3147303,428,434,862 -3147304,264,257,521 -3147305,226,206,432 -3147306,281,279,560 -3147307,440,406,846 -3147308,247,225,472 -3147309,245,255,500 -3147310,138,123,261 -3147311,238,240,478 -3147312,344,318,662 -3147313,255,235,490 -3147314,277,230,507 -3147315,310,297,607 -3147316,217,211,428 -3147317,14,5,19 -3147318,235,220,455 -3147319,192,228,420 -3147320,489,508,997 -3147321,172,171,343 -3147322,209,233,442 -3147323,245,240,485 -3147324,146,142,288 -3147325,248,229,477 -3147326,238,230,468 -3147327,130,119,249 -3147328,222,229,451 -3147329,204,175,379 -3147330,413,426,839 -3147331,226,223,449 -3147401,121,112,233 -3147402,250,291,541 -3147403,211,216,427 -3147404,131,151,282 -3147405,229,252,481 -3147406,322,350,672 -3147407,165,190,355 -3147408,334,370,704 -3147409,324,348,672 -3147410,175,164,339 -3147411,357,476,833 -3147412,233,259,492 -3147413,73,63,136 -3147414,276,256,532 -3147415,56,53,109 -3147416,179,198,377 -3147417,3,3,6 -3147501,219,214,433 -3147502,168,149,317 -3147503,281,256,537 -3147504,187,193,380 -3147505,211,224,435 -3147506,293,247,540 -3147507,180,170,350 -3147508,134,133,267 -3147509,146,144,290 -3147510,44,27,71 -3147511,167,175,342 -3147512,221,262,483 -3147513,290,281,571 -3147514,47,24,71 -3147515,258,256,514 -3147516,313,289,602 -3147517,291,238,529 -3147601,172,159,331 -3147602,167,194,361 -3147603,192,201,393 -3147604,279,290,569 -3147605,181,189,370 -3147606,173,177,350 -3147607,280,259,539 -3147608,150,141,291 -3147609,164,163,327 -3147610,156,164,320 -3147611,123,153,276 -3147612,238,250,488 -3147613,237,214,451 -3147614,227,223,450 -3147615,108,96,204 -3147616,166,203,369 -3147617,114,150,264 -3147618,239,249,488 -3147619,266,257,523 -3147620,176,166,342 -3147621,221,186,407 -3147701,195,229,424 -3147702,170,158,328 -3147703,243,268,511 -3147704,190,188,378 -3147705,214,193,407 -3147706,247,226,473 -3147707,159,162,321 -3147708,176,219,395 -3147709,170,188,358 -3147710,150,163,313 -3147711,148,156,304 -3147801,135,139,274 -3147802,130,114,244 -3147803,151,138,289 -3147804,196,198,394 -3147805,229,211,440 -3147806,101,97,198 -3147807,0,0,0 -3147808,187,191,378 -3147809,155,149,304 -3147810,148,154,302 -3147811,176,206,382 -3147812,331,300,631 -3147813,222,224,446 -3147814,195,183,378 -3147815,242,215,457 -3147901,199,226,425 -3147902,140,145,285 -3147903,237,261,498 -3147904,201,195,396 -3147905,282,265,547 -3147906,237,252,489 -3147907,170,177,347 -3147908,129,140,269 -3147909,273,311,584 -3147910,204,204,408 -3147911,301,315,616 -3148001,171,225,396 -3148002,201,192,393 -3148003,311,305,616 -3148004,271,289,560 -3148005,139,126,265 -3148006,19,20,39 -3148007,116,116,232 -3148008,172,181,353 -3148009,145,172,317 -3148010,345,384,729 -3148011,345,300,645 -3148012,276,262,538 -3148013,224,249,473 -3148014,253,256,509 -3148015,227,230,457 -3148016,225,250,475 -3148017,234,271,505 -3148018,245,257,502 -3148019,155,145,300 -3148020,374,391,765 -3148021,207,217,424 -3148022,204,212,416 -3148023,160,169,329 -3148101,200,167,367 -3148102,237,213,450 -3148103,226,217,443 -3148104,193,207,400 -3148105,247,244,491 -3148106,171,184,355 -3148107,141,134,275 -3148108,221,270,491 -3148109,160,183,343 -3148110,141,142,283 -3148111,139,140,279 -3148112,198,189,387 -3148113,155,152,307 -3148114,157,160,317 -3148115,95,124,219 -3148116,146,134,280 -3148117,161,141,302 -3148118,183,165,348 -3148119,168,173,341 -3148120,86,159,245 -3148121,117,118,235 -3148122,136,133,269 -3148123,94,113,207 -3148124,257,275,532 -3148201,153,161,314 -3148202,160,165,325 -3148203,248,280,528 -3148204,128,140,268 -3148205,142,159,301 -3148206,177,184,361 -3148207,291,307,598 -3148208,219,230,449 -3148209,116,140,256 -3148210,344,361,705 -3148211,144,160,304 -3148212,154,151,305 -3148213,110,108,218 -3148214,263,266,529 -3148215,157,162,319 -3148216,145,130,275 -3148217,170,178,348 -3148218,157,172,329 -3148219,137,160,297 -3148220,119,147,266 -3148221,118,148,266 -3148222,165,204,369 -3148223,219,268,487 -3148224,150,158,308 -3148225,217,233,450 -3148226,216,210,426 -3148227,111,134,245 -3148228,134,151,285 -3148229,58,67,125 -3148230,0,0,0 -3148231,157,155,312 -3148232,283,345,628 -3148233,170,190,360 -3148234,111,120,231 -3148235,217,249,466 -3148236,189,203,392 -3148237,172,203,375 -3148238,161,187,348 -3148239,220,203,423 -3148240,116,120,236 -3148241,222,228,450 -3148242,272,303,575 -3148243,195,229,424 -3148244,165,207,372 -3148301,163,163,326 -3148302,200,201,401 -3148303,157,168,325 -3148304,170,165,335 -3148305,23,17,40 -3148306,221,201,422 -3148307,61,54,115 -3148308,124,114,238 -3148401,263,262,525 -3148402,299,290,589 -3148403,229,190,419 -3148404,190,191,381 -3148405,186,160,346 -3148406,373,389,762 -3148407,0,0,0 -3148408,239,232,471 -3148409,175,202,377 -3148410,279,308,587 -3148411,219,232,451 -3148412,152,160,312 -3148413,256,246,502 -3148414,407,417,824 -3148415,132,130,262 -3148416,96,69,165 -3148417,439,465,904 -3148501,127,124,251 -3148502,161,183,344 -3148503,203,195,398 -3148504,202,370,572 -3148505,208,209,417 -3148506,122,113,235 -3148507,239,261,500 -3148508,164,165,329 -3148509,126,136,262 -3148510,292,268,560 -3148601,253,225,478 -3148602,191,186,377 -3148603,203,187,390 -3148604,261,198,459 -3148605,117,101,218 -3148606,184,192,376 -3148607,169,125,294 -3148608,286,288,574 -3148609,230,205,435 -3148610,155,129,284 -3148611,216,193,409 -3148612,472,431,903 -3148613,69,55,124 -3148614,141,134,275 -3148615,252,223,475 -3148701,271,238,509 -3148702,129,137,266 -3148703,141,139,280 -3148704,129,140,269 -3148705,272,258,530 -3148706,234,242,476 -3148707,174,187,361 -3148708,403,463,866 -3148709,488,502,990 -3148710,182,194,376 -3148711,0,0,0 -3148712,194,146,340 -3148801,279,266,545 -3148802,165,167,332 -3148803,209,193,402 -3148804,0,0,0 -3148805,11,6,17 -3148806,0,0,0 -3148807,208,214,422 -3148808,218,218,436 -3148809,166,164,330 -3148810,195,209,404 -3148811,222,202,424 -3148812,120,117,237 -3148813,202,199,401 -3148814,139,144,283 -3148815,213,124,337 -3148816,301,227,528 -3148901,218,202,420 -3148902,238,218,456 -3148903,164,137,301 -3148904,0,0,0 -3148905,196,181,377 -3148906,176,172,348 -3148907,120,122,242 -3148908,157,146,303 -3148909,215,194,409 -3148910,152,130,282 -3148911,134,125,259 -3148912,77,47,124 -3148913,246,198,444 -3149001,282,307,589 -3149002,207,211,418 -3149003,268,281,549 -3149004,385,331,716 -3149005,241,199,440 -3149006,364,363,727 -3149007,180,204,384 -3149008,167,223,390 -3149009,215,191,406 -3149010,206,169,375 -3149011,465,344,809 -3149012,182,143,325 -3149013,136,98,234 -3149014,215,136,351 -3149015,0,0,0 -3149016,215,231,446 -3149017,262,233,495 -3149018,264,239,503 -3149019,233,213,446 -3149101,446,126,572 -3149102,186,194,380 -3149103,173,168,341 -3149104,126,145,271 -3149105,120,137,257 -3149106,166,153,319 -3149107,194,191,385 -3149108,221,238,459 -3149109,283,311,594 -3149110,252,273,525 -3149111,218,238,456 -3149112,169,171,340 -3149113,142,121,263 -3149114,130,71,201 -3149115,100,109,209 -3149116,6,0,6 -3149117,113,120,233 -3149118,119,130,249 -3149201,239,260,499 -3149202,215,239,454 -3149203,147,142,289 -3149204,221,204,425 -3149205,273,324,597 -3149206,183,179,362 -3149207,239,279,518 -3149208,216,250,466 -3149209,155,153,308 -3149210,184,194,378 -3149211,107,127,234 -3149212,222,224,446 -3149301,317,331,648 -3149302,186,223,409 -3149303,98,97,195 -3149304,128,129,257 -3149305,128,110,238 -3149306,347,334,681 -3149307,161,179,340 -3149308,205,208,413 -3149309,330,332,662 -3149310,235,231,466 -3149311,133,129,262 -3149312,154,136,290 -3149313,117,96,213 -3149314,274,296,570 -3149315,214,211,425 -3149316,257,280,537 -3149317,158,154,312 -3149318,212,190,402 -3149319,238,190,428 -3149320,276,252,528 -3149321,214,223,437 -3149322,426,476,902 -3149323,191,192,383 -3149324,314,370,684 -3149325,317,297,614 -3149326,285,296,581 -3149327,233,234,467 -3149328,258,283,541 -3149329,148,143,291 -3149330,198,236,434 -3149331,263,271,534 -3149332,123,113,236 -3149333,247,247,494 -3149334,230,278,508 -3149401,317,338,655 -3149402,261,269,530 -3149403,203,186,389 -3149404,245,252,497 -3149405,149,131,280 -3149406,213,218,431 -3149407,273,279,552 -3149408,102,116,218 -3149409,173,157,330 -3149501,182,202,384 -3149502,190,191,381 -3149503,147,167,314 -3149504,136,90,226 -3149505,123,105,228 -3149506,148,168,316 -3149507,181,200,381 -3149508,183,179,362 -3149509,229,248,477 -3149510,226,250,476 -3149511,155,144,299 -3149512,188,187,375 -3149513,213,206,419 -3149514,278,300,578 -3149515,214,240,454 -3149516,112,123,235 -3149517,125,153,278 -3149601,90,90,180 -3149602,247,253,500 -3149603,181,192,373 -3149604,216,232,448 -3149605,106,130,236 -3149606,316,354,670 -3149607,187,144,331 -3149608,245,266,511 -3149609,262,252,514 -3149610,106,120,226 -3149611,211,206,417 -3149612,283,339,622 -3149613,101,82,183 -3149701,135,160,295 -3149702,119,107,226 -3149703,246,311,557 -3149704,160,166,326 -3149705,197,260,457 -3149706,166,162,328 -3149707,204,177,381 -3149708,124,119,243 -3149709,276,308,584 -3149710,109,112,221 -3149711,195,205,400 -3149712,133,165,298 -3149713,130,142,272 -3149714,193,198,391 -3149715,182,158,340 -3149716,102,114,216 -3149717,185,170,355 -3149718,84,109,193 -3149719,122,104,226 -3149720,145,137,282 -3149721,175,171,346 -3149722,169,192,361 -3149801,204,202,406 -3149802,342,311,653 -3149803,159,151,310 -3149804,161,183,344 -3149805,173,166,339 -3149806,147,143,290 -3149807,80,76,156 -3149808,212,185,397 -3149809,221,220,441 -3149810,152,156,308 -3149811,142,148,290 -3149812,69,77,146 -3149813,233,241,474 -3149814,270,249,519 -3149815,205,177,382 -3149816,125,112,237 -3149817,214,194,408 -3149818,266,217,483 -3149819,231,207,438 -3149820,195,187,382 -3149821,129,130,259 -3149822,188,160,348 -3149901,143,126,269 -3149902,198,191,389 -3149903,184,155,339 -3149904,178,168,346 -3149905,250,234,484 -3149906,203,189,392 -3149907,318,296,614 -3149908,124,119,243 -3149909,165,122,287 -3149910,254,255,509 -3149911,154,160,314 -3149912,161,163,324 -3149913,173,163,336 -3149914,159,158,317 -3149915,145,140,285 -3149916,99,89,188 -3149917,221,182,403 -3149918,0,0,0 -3149919,212,195,407 -3149920,159,153,312 -3149921,113,114,227 -3149922,211,186,397 -3149923,149,139,288 -3149924,105,127,232 -3149925,136,133,269 -3149926,157,173,330 -3149927,162,171,333 -3149928,113,92,205 -3149929,53,61,114 -3149930,120,101,221 -3150001,107,152,259 -3150002,133,219,352 -3150003,64,88,152 -3150004,220,227,447 -3150005,164,176,340 -3150006,259,286,545 -3150007,223,248,471 -3150008,133,152,285 -3150009,207,195,402 -3150010,158,194,352 -3150011,134,131,265 -3150012,247,271,518 -3150013,89,100,189 -3150014,190,212,402 -3150015,171,191,362 -3150016,0,0,0 -3150017,312,337,649 -3150018,229,246,475 -3150019,191,199,390 -3150020,7,11,18 -3150021,133,119,252 -3150022,186,341,527 -3150101,240,252,492 -3150102,187,210,397 -3150103,214,235,449 -3150104,133,129,262 -3150105,171,217,388 -3150106,218,236,454 -3150107,214,236,450 -3150108,180,151,331 -3150109,235,262,497 -3150110,180,190,370 -3150111,181,217,398 -3150112,144,142,286 -3150113,175,178,353 -3150114,256,317,573 -3150115,31,28,59 -3150201,194,211,405 -3150202,290,308,598 -3150203,191,226,417 -3150204,322,370,692 -3150205,144,167,311 -3150206,192,189,381 -3150207,281,280,561 -3150208,163,186,349 -3150209,178,201,379 -3150210,176,180,356 -3150211,146,178,324 -3150212,153,169,322 -3150213,188,193,381 -3150214,158,186,344 -3150215,314,330,644 -3150216,152,187,339 -3150217,183,176,359 -3150218,253,280,533 -3150219,207,226,433 -3150220,243,225,468 -3150221,217,276,493 -3150222,129,150,279 -3150223,113,132,245 -3150224,148,146,294 -3150225,221,251,472 -3150226,121,144,265 -3150227,177,184,361 -3150301,190,170,360 -3150302,170,142,312 -3150303,181,192,373 -3150304,273,281,554 -3150305,70,74,144 -3150306,199,193,392 -3150307,100,126,226 -3150308,194,175,369 -3150309,174,216,390 -3150310,132,136,268 -3150311,210,188,398 -3150312,138,143,281 -3150313,107,91,198 -3150314,166,158,324 -3150315,161,166,327 -3150316,153,134,287 -3150317,169,169,338 -3150318,215,209,424 -3150319,132,104,236 -3150320,118,108,226 -3150401,134,127,261 -3150402,160,135,295 -3150403,254,244,498 -3150404,165,162,327 -3150405,126,101,227 -3150406,159,123,282 -3150407,205,210,415 -3150408,226,253,479 -3150409,152,143,295 -3150410,204,188,392 -3150411,120,109,229 -3150412,255,236,491 -3150413,285,262,547 -3150414,178,146,324 -3150501,198,210,408 -3150502,235,246,481 -3150503,122,135,257 -3150504,193,203,396 -3150505,74,103,177 -3150506,107,150,257 -3150507,180,172,352 -3150508,137,155,292 -3150509,109,123,232 -3150510,391,423,814 -3150511,265,271,536 -3150512,261,270,531 -3150513,135,193,328 -3150514,184,175,359 -3150515,111,115,226 -3150516,202,197,399 -3150517,145,137,282 -3150518,117,108,225 -3150519,257,270,527 -3150520,237,212,449 -3150521,149,161,310 -3150522,297,325,622 -3150523,163,190,353 -3150524,192,227,419 -3150525,278,298,576 -3150601,173,190,363 -3150602,134,116,250 -3150603,167,165,332 -3150604,197,192,389 -3150605,206,197,403 -3150606,106,109,215 -3150607,118,116,234 -3150608,112,102,214 -3150609,121,122,243 -3150610,144,159,303 -3150611,125,116,241 -3150612,233,182,415 -3150613,595,631,1226 -3150614,274,287,561 -3150615,138,139,277 -3150616,222,210,432 -3150617,193,162,355 -3150618,139,103,242 -3150619,125,140,265 -3150620,199,190,389 -3150621,120,129,249 -3150622,159,163,322 -3150623,131,147,278 -3150624,264,265,529 -3150625,274,323,597 -3150701,103,92,195 -3150702,164,152,316 -3150703,136,129,265 -3150704,171,150,321 -3150705,154,134,288 -3150706,102,82,184 -3150707,124,111,235 -3150708,156,129,285 -3150709,136,137,273 -3150710,90,76,166 -3150711,97,104,201 -3150712,180,170,350 -3150713,136,141,277 -3150714,188,172,360 -3150801,139,130,269 -3150802,98,94,192 -3150803,154,187,341 -3150804,166,168,334 -3150805,94,105,199 -3150806,113,125,238 -3150807,0,0,0 -3150808,102,90,192 -3150809,157,135,292 -3150810,144,112,256 -3150811,10,11,21 -3150812,131,136,267 -3150813,149,136,285 -3150814,81,80,161 -3150815,99,104,203 -3150816,116,116,232 -3150817,120,102,222 -3150901,104,99,203 -3150902,191,181,372 -3150903,186,187,373 -3150904,140,144,284 -3150905,209,230,439 -3150906,181,216,397 -3150907,106,103,209 -3150908,208,205,413 -3150909,180,194,374 -3150910,116,114,230 -3150911,210,226,436 -3150912,132,136,268 -3150913,160,144,304 -3150914,139,140,279 -3150915,168,175,343 -3150916,207,182,389 -3150917,134,137,271 -3150918,103,118,221 -3150919,182,213,395 -3150920,224,214,438 -3150921,250,240,490 -3150922,155,120,275 -3150923,261,248,509 -3150924,221,236,457 -3150925,249,242,491 -3150926,128,136,264 -3150927,129,143,272 -3151001,3,3,6 -3151101,193,208,401 -3151102,174,162,336 -3151103,195,186,381 -3151104,243,246,489 -3151105,135,134,269 -3151106,180,197,377 -3151107,196,161,357 -3151108,248,228,476 -3151109,321,308,629 -3151110,143,137,280 -3151111,139,135,274 -3151112,3,0,3 -3151113,29,31,60 -3151114,219,202,421 -3151115,65,43,108 -3151116,266,243,509 -3151117,182,164,346 -3151201,345,320,665 -3151202,331,312,643 -3151203,393,437,830 -3151204,250,280,530 -3151205,197,212,409 -3151206,256,312,568 -3151207,115,103,218 -3151208,128,118,246 -3151209,182,202,384 -3151210,113,120,233 -3151211,194,191,385 -3151212,194,216,410 -3151213,153,165,318 -3151214,88,128,216 -3151215,144,188,332 -3151216,129,142,271 -3151217,163,216,379 -3151218,254,300,554 -3151219,177,194,371 -3151220,186,239,425 -3151221,125,159,284 -3151222,212,230,442 -3151223,295,322,617 -3151224,157,167,324 -3151225,124,119,243 -3151226,152,148,300 -3151227,118,125,243 -3151228,144,165,309 -3151229,235,257,492 -3151230,106,144,250 -3151231,179,212,391 -3151232,161,186,347 -3151233,269,311,580 -3151301,283,271,554 -3151302,180,183,363 -3151303,298,291,589 -3151304,259,274,533 -3151305,307,347,654 -3151306,114,128,242 -3151307,269,301,570 -3151308,160,164,324 -3151309,160,159,319 -3151310,201,228,429 -3151311,273,274,547 -3151312,195,188,383 -3151313,373,422,795 -3151401,175,178,353 -3151402,231,214,445 -3151403,251,253,504 -3151404,202,198,400 -3151405,190,167,357 -3151406,181,188,369 -3151407,0,0,0 -3151408,147,146,293 -3151409,265,250,515 -3151410,107,120,227 -3151411,143,146,289 -3151412,48,37,85 -3151413,159,149,308 -3151414,211,188,399 -3151415,190,190,380 -3151416,148,135,283 -3151417,142,143,285 -3151418,238,228,466 -3151419,0,0,0 -3151420,81,85,166 -3151421,112,92,204 -3151422,225,213,438 -3151423,83,79,162 -3151424,124,124,248 -3151425,71,70,141 -3151426,149,126,275 -3151427,172,140,312 -3151428,224,225,449 -3151429,177,175,352 -3151430,190,204,394 -3151431,195,206,401 -3151432,140,131,271 -3151433,191,234,425 -3151434,165,148,313 -3151435,195,181,376 -3151436,208,185,393 -3151437,131,141,272 -3151438,207,213,420 -3151439,97,85,182 -3151440,252,218,470 -3151441,163,155,318 -3151442,172,163,335 -3151443,143,144,287 -3151444,178,180,358 -3151445,157,143,300 -3151446,225,208,433 -3151447,129,107,236 -3151448,157,159,316 -3151449,99,97,196 -3151450,216,203,419 -3151451,253,248,501 -3151452,105,101,206 -3151453,191,175,366 -3151501,204,207,411 -3151502,143,131,274 -3151503,246,252,498 -3151504,226,207,433 -3151505,174,178,352 -3151506,141,127,268 -3151507,100,109,209 -3151508,131,144,275 -3151509,149,141,290 -3151510,144,144,288 -3151511,146,135,281 -3151601,172,178,350 -3151602,352,371,723 -3151603,147,126,273 -3151604,0,0,0 -3151605,394,389,783 -3151606,102,105,207 -3151607,187,203,390 -3151608,113,108,221 -3151609,169,159,328 -3151610,253,259,512 -3151611,191,185,376 -3151701,146,165,311 -3151702,186,191,377 -3151703,156,138,294 -3151704,155,144,299 -3151705,174,195,369 -3151706,213,211,424 -3151707,267,258,525 -3151708,133,145,278 -3151709,224,222,446 -3151710,148,170,318 -3151711,134,129,263 -3151712,303,290,593 -3151801,209,210,419 -3151802,211,240,451 -3151803,221,250,471 -3151804,227,258,485 -3151805,215,211,426 -3151806,176,179,355 -3151807,242,254,496 -3151808,165,197,362 -3151809,182,211,393 -3151810,107,132,239 -3151811,202,248,450 -3151812,127,121,248 -3151813,432,447,879 -3151814,253,306,559 -3151815,205,215,420 -3151816,164,200,364 -3151817,229,256,485 -3151818,0,0,0 -3151819,0,0,0 -3151820,130,144,274 -3151821,198,224,422 -3151822,223,258,481 -3151823,174,198,372 -3151824,215,239,454 -3151825,259,264,523 -3151826,159,228,387 -3151827,206,249,455 -3151828,228,319,547 -3151829,250,259,509 -3151830,331,342,673 -3151901,0,0,0 -3151902,286,292,578 -3151903,191,226,417 -3151904,133,160,293 -3151905,244,290,534 -3151906,222,256,478 -3151907,163,164,327 -3151908,229,281,510 -3151909,173,174,347 -3151910,176,171,347 -3151911,184,215,399 -3151912,183,214,397 -3151913,120,120,240 -3151914,192,237,429 -3151915,186,208,394 -3152001,196,192,388 -3152002,194,214,408 -3152003,208,206,414 -3152004,127,121,248 -3152005,191,203,394 -3152006,122,127,249 -3152007,314,337,651 -3152008,199,226,425 -3152009,177,201,378 -3152010,193,223,416 -3152011,148,195,343 -3152012,121,139,260 -3152013,131,156,287 -3152014,181,191,372 -3152015,175,183,358 -3152016,140,149,289 -3152017,249,233,482 -3152018,273,294,567 -3152019,259,303,562 -3152020,240,328,568 -3152021,174,295,469 -3152022,223,251,474 -3152023,231,263,494 -3152024,205,256,461 -3152025,122,145,267 -3152026,338,339,677 -3152027,166,170,336 -3152028,146,167,313 -3152029,176,162,338 -3152030,221,251,472 -3152031,104,202,306 -3152032,327,332,659 -3152033,148,185,333 -3152034,164,171,335 -3152035,233,263,496 -3152101,253,237,490 -3152102,116,127,243 -3152103,191,201,392 -3152104,155,160,315 -3152105,161,151,312 -3152106,195,242,437 -3152107,280,286,566 -3152108,129,136,265 -3152109,294,292,586 -3152110,149,150,299 -3152111,147,176,323 -3152112,157,155,312 -3152113,233,278,511 -3152114,210,242,452 -3152115,171,178,349 -3152116,245,255,500 -3152117,264,320,584 -3152118,149,175,324 -3152119,132,116,248 -3152120,190,157,347 -3152121,204,216,420 -3152122,186,170,356 -3152123,258,273,531 -3152124,43,36,79 -3152125,550,586,1136 -3152126,151,153,304 -3152127,185,211,396 -3152128,146,175,321 -3152201,251,249,500 -3152202,269,284,553 -3152203,235,238,473 -3152204,153,150,303 -3152205,139,127,266 -3152206,231,203,434 -3152207,208,162,370 -3152208,308,276,584 -3152209,178,170,348 -3152210,6,4,10 -3152211,167,187,354 -3152212,163,182,345 -3152213,244,266,510 -3152214,142,139,281 -3152215,126,125,251 -3152216,155,148,303 -3152217,83,62,145 -3152218,163,157,320 -3152219,188,159,347 -3152220,157,158,315 -3152221,152,162,314 -3152222,165,169,334 -3152223,189,179,368 -3152224,27,25,52 -3152225,146,144,290 -3152226,144,151,295 -3152301,219,240,459 -3152302,224,225,449 -3152303,226,242,468 -3152304,177,175,352 -3152305,235,251,486 -3152306,237,244,481 -3152307,238,234,472 -3152401,283,313,596 -3152402,125,173,298 -3152403,241,236,477 -3152404,108,143,251 -3152405,152,159,311 -3152406,132,139,271 -3152407,133,137,270 -3152408,130,141,271 -3152409,100,102,202 -3152410,209,214,423 -3152411,256,274,530 -3152412,158,160,318 -3152413,171,179,350 -3152414,474,0,474 -3152415,134,154,288 -3152416,188,195,383 -3152417,159,199,358 -3152418,138,131,269 -3152419,224,269,493 -3152420,178,184,362 -3152421,313,289,602 -3152422,157,171,328 -3152423,112,101,213 -3152424,133,166,299 -3152425,252,266,518 -3152426,126,140,266 -3152427,192,235,427 -3152428,121,140,261 -3152429,238,253,491 -3152430,140,133,273 -3152431,147,151,298 -3152432,219,211,430 -3152433,125,111,236 -3152434,205,185,390 -3152435,199,139,338 -3152436,152,130,282 -3152437,161,160,321 -3152438,3,3,6 -3152439,245,249,494 -3152440,347,338,685 -3152441,180,197,377 -3152442,194,223,417 -3152443,185,201,386 -3152444,170,181,351 -3152445,158,175,333 -3152446,173,178,351 -3152447,175,238,413 -3152448,198,194,392 -3152449,120,133,253 -3152450,101,197,298 -3152451,153,122,275 -3152501,298,293,591 -3152502,364,308,672 -3152503,145,131,276 -3152504,143,120,263 -3152505,344,345,689 -3152506,89,82,171 -3152507,145,118,263 -3152508,231,241,472 -3152509,169,152,321 -3152510,179,140,319 -3152511,134,144,278 -3152512,194,176,370 -3152513,151,154,305 -3152514,229,225,454 -3152515,4,3,7 -3152516,92,96,188 -3152517,182,176,358 -3152518,226,239,465 -3152519,125,91,216 -3152520,133,121,254 -3152521,188,195,383 -3152522,174,163,337 -3152601,294,273,567 -3152602,129,143,272 -3152603,88,86,174 -3152604,228,236,464 -3152605,191,179,370 -3152606,131,156,287 -3152607,207,209,416 -3152608,252,284,536 -3152609,249,222,471 -3152610,148,153,301 -3152611,163,156,319 -3152612,208,219,427 -3152613,141,142,283 -3949999,7151,5394,12545 -3979991,0,0,0 -3979992,3,0,3 -3979993,274,192,466 -4100101,233,235,468 -4100102,206,180,386 -4100103,113,94,207 -4100104,312,268,580 -4100105,179,181,360 -4100106,210,163,373 -4100107,284,281,565 -4100108,198,148,346 -4100109,282,270,552 -4100110,530,576,1106 -4100111,208,121,329 -4100112,376,332,708 -4100113,350,246,596 -4100114,141,151,292 -4100115,208,182,390 -4100116,183,171,354 -4100117,215,198,413 -4100118,138,126,264 -4100119,258,251,509 -4100120,199,209,408 -4100121,424,348,772 -4100122,295,30,325 -4100123,669,681,1350 -4100124,203,161,364 -4100125,309,290,599 -4100126,3,3,6 -4100127,0,0,0 -4100128,0,0,0 -4100129,9,3,12 -4100130,166,157,323 -4100131,3,3,6 -4100132,0,0,0 -4100201,226,253,479 -4100202,186,217,403 -4100203,127,178,305 -4100204,194,195,389 -4100205,327,299,626 -4100206,156,152,308 -4100207,124,134,258 -4100208,221,354,575 -4100209,168,172,340 -4100210,120,137,257 -4100211,175,170,345 -4100212,152,192,344 -4100213,0,0,0 -4100214,159,124,283 -4100215,217,243,460 -4100216,216,214,430 -4100217,0,0,0 -4100218,0,0,0 -4100219,140,146,286 -4100220,150,118,268 -4100221,172,143,315 -4100301,143,149,292 -4100302,126,142,268 -4100303,193,177,370 -4100304,168,170,338 -4100305,146,157,303 -4100306,223,209,432 -4100307,122,116,238 -4100308,194,175,369 -4100309,111,90,201 -4100310,112,110,222 -4100311,160,149,309 -4100312,268,268,536 -4100313,164,169,333 -4100314,180,202,382 -4100315,154,174,328 -4100316,144,159,303 -4100317,107,102,209 -4100318,168,146,314 -4100319,256,259,515 -4100320,0,5,5 -4100321,125,126,251 -4100322,66,65,131 -4100323,98,79,177 -4100401,220,235,455 -4100402,269,254,523 -4100403,194,218,412 -4100404,155,143,298 -4100405,247,218,465 -4100406,183,185,368 -4100407,129,143,272 -4100408,195,184,379 -4100409,160,148,308 -4100410,175,162,337 -4100411,193,187,380 -4100412,200,192,392 -4100413,142,140,282 -4100414,210,209,419 -4100415,132,159,291 -4100416,265,265,530 -4100417,203,247,450 -4100418,174,190,364 -4100419,185,171,356 -4100420,129,133,262 -4100421,242,241,483 -4100422,238,268,506 -4100423,248,223,471 -4100424,203,200,403 -4100425,186,211,397 -4100426,212,204,416 -4100427,248,252,500 -4100428,200,180,380 -4100429,151,150,301 -4100430,151,158,309 -4100431,149,169,318 -4100432,121,119,240 -4100433,209,187,396 -4100434,283,289,572 -4100435,265,255,520 -4100436,134,153,287 -4100437,120,118,238 -4100438,149,149,298 -4100439,252,264,516 -4100440,236,224,460 -4100441,175,187,362 -4100442,205,210,415 -4100443,103,100,203 -4100444,97,93,190 -4100445,99,93,192 -4100446,110,104,214 -4100447,103,108,211 -4100501,127,138,265 -4100502,205,254,459 -4100503,120,124,244 -4100504,122,106,228 -4100505,144,130,274 -4100506,122,108,230 -4100507,179,202,381 -4100508,221,220,441 -4100509,150,151,301 -4100510,253,231,484 -4100511,102,99,201 -4100512,110,100,210 -4100513,125,150,275 -4100514,141,160,301 -4100601,218,238,456 -4100602,104,110,214 -4100603,149,140,289 -4100604,147,134,281 -4100605,389,272,661 -4100606,223,240,463 -4100607,182,191,373 -4100608,190,198,388 -4100609,173,148,321 -4100610,99,102,201 -4100611,175,193,368 -4100612,116,138,254 -4100613,190,210,400 -4100614,147,147,294 -4100615,214,220,434 -4100616,221,253,474 -4100617,262,259,521 -4100618,330,332,662 -4100619,166,176,342 -4100620,176,159,335 -4100621,175,222,397 -4100622,90,83,173 -4100623,130,110,240 -4100624,133,163,296 -4100625,90,83,173 -4100701,88,109,197 -4100702,170,175,345 -4100703,191,243,434 -4100704,129,135,264 -4100705,91,79,170 -4100706,179,172,351 -4100707,130,162,292 -4100708,181,234,415 -4100709,136,149,285 -4100710,173,233,406 -4100711,367,395,762 -4100712,235,247,482 -4100713,139,138,277 -4100714,254,278,532 -4100715,89,109,198 -4100716,238,276,514 -4100717,117,134,251 -4100718,215,240,455 -4100719,215,256,471 -4100720,200,199,399 -4100721,229,265,494 -4100722,239,282,521 -4100723,241,285,526 -4100724,260,266,526 -4100725,292,292,584 -4100726,277,298,575 -4100727,164,168,332 -4100728,318,334,652 -4100729,96,111,207 -4100730,192,205,397 -4100731,118,175,293 -4100732,211,209,420 -4100733,404,395,799 -4100734,334,360,694 -4100735,197,208,405 -4100801,157,146,303 -4100802,102,107,209 -4100803,275,229,504 -4100804,207,196,403 -4100805,119,125,244 -4100806,141,125,266 -4100807,182,186,368 -4100808,114,92,206 -4100809,139,148,287 -4100810,168,173,341 -4100811,110,131,241 -4100812,136,144,280 -4100813,228,223,451 -4100814,252,262,514 -4100815,138,137,275 -4100816,361,344,705 -4100817,164,177,341 -4100901,231,256,487 -4100902,226,225,451 -4100903,142,136,278 -4100904,399,429,828 -4100905,162,181,343 -4100906,375,408,783 -4100907,238,265,503 -4100908,162,149,311 -4100909,106,109,215 -4100910,105,114,219 -4101001,220,214,434 -4101002,0,0,0 -4101003,337,266,603 -4101004,166,170,336 -4101005,230,231,461 -4101006,0,0,0 -4101007,233,209,442 -4101008,275,261,536 -4101009,242,224,466 -4101010,177,178,355 -4101011,129,132,261 -4101012,173,168,341 -4101013,201,173,374 -4101014,224,216,440 -4101015,4,0,4 -4101016,124,159,283 -4101101,230,233,463 -4101102,171,165,336 -4101103,274,289,563 -4101104,238,235,473 -4101105,201,207,408 -4101106,158,166,324 -4101107,208,250,458 -4101108,138,176,314 -4101109,175,194,369 -4101110,177,180,357 -4101111,181,182,363 -4101112,197,210,407 -4101113,193,209,402 -4101114,245,258,503 -4101115,250,292,542 -4101116,210,206,416 -4101117,176,169,345 -4101118,129,124,253 -4101119,207,223,430 -4101120,207,202,409 -4101121,136,149,285 -4101122,135,157,292 -4101123,135,162,297 -4101124,185,194,379 -4101125,228,232,460 -4101126,192,227,419 -4101127,237,259,496 -4101128,286,291,577 -4101129,202,158,360 -4101130,176,210,386 -4101131,158,182,340 -4101132,151,181,332 -4101133,236,270,506 -4101134,196,259,455 -4101135,123,160,283 -4101136,144,175,319 -4101137,168,204,372 -4101138,199,212,411 -4101139,279,353,632 -4101140,146,140,286 -4101141,234,260,494 -4101142,228,262,490 -4101143,227,247,474 -4101144,215,258,473 -4101201,214,221,435 -4101202,146,150,296 -4101203,190,216,406 -4101204,166,151,317 -4101205,218,268,486 -4101206,162,182,344 -4101207,225,386,611 -4101208,178,178,356 -4101209,240,251,491 -4101210,260,238,498 -4101211,163,156,319 -4101212,341,343,684 -4101213,245,264,509 -4101214,133,150,283 -4101215,253,253,506 -4101216,227,260,487 -4101217,171,191,362 -4101218,154,183,337 -4101219,210,234,444 -4101220,246,230,476 -4101221,128,177,305 -4101301,149,169,318 -4101302,167,186,353 -4101303,241,303,544 -4101304,229,242,471 -4101305,255,264,519 -4101306,162,178,340 -4101307,230,273,503 -4101308,218,221,439 -4101309,265,271,536 -4101310,260,295,555 -4101311,222,294,516 -4101312,155,154,309 -4101313,79,185,264 -4101314,186,206,392 -4101315,198,201,399 -4101316,257,279,536 -4101317,217,344,561 -4101318,278,364,642 -4101319,159,183,342 -4101320,164,185,349 -4101321,227,251,478 -4101322,256,313,569 -4101323,241,257,498 -4101324,214,273,487 -4101325,219,222,441 -4101326,212,236,448 -4101327,245,293,538 -4101328,102,139,241 -4101329,134,206,340 -4101330,220,265,485 -4101331,171,187,358 -4101332,125,126,251 -4101333,107,124,231 -4101334,218,242,460 -4101335,147,151,298 -4101336,149,140,289 -4101401,201,206,407 -4101402,217,191,408 -4101403,135,139,274 -4101404,169,156,325 -4101405,179,192,371 -4101406,159,170,329 -4101407,0,0,0 -4101408,180,166,346 -4101409,134,150,284 -4101410,240,244,484 -4101411,223,245,468 -4101412,201,208,409 -4101413,281,294,575 -4101414,202,174,376 -4101415,253,273,526 -4101416,267,239,506 -4101417,228,201,429 -4101418,119,104,223 -4101419,78,82,160 -4101420,188,208,396 -4101421,268,285,553 -4101422,156,164,320 -4101423,0,0,0 -4101424,131,130,261 -4101425,125,130,255 -4101426,177,168,345 -4101427,120,116,236 -4101501,165,175,340 -4101502,280,296,576 -4101503,207,238,445 -4101504,210,258,468 -4101505,180,240,420 -4101506,242,256,498 -4101507,126,165,291 -4101508,168,185,353 -4101509,189,176,365 -4101510,178,216,394 -4101511,180,183,363 -4101512,304,324,628 -4101513,124,133,257 -4101514,150,148,298 -4101515,249,272,521 -4101516,165,158,323 -4101517,143,171,314 -4101518,207,248,455 -4101519,257,272,529 -4101520,134,154,288 -4101521,232,239,471 -4101522,146,172,318 -4101523,279,291,570 -4101524,113,133,246 -4101525,127,164,291 -4101526,255,255,510 -4101527,200,247,447 -4101528,187,194,381 -4101529,251,264,515 -4101530,212,236,448 -4101531,210,214,424 -4101532,230,244,474 -4101533,188,176,364 -4101534,258,327,585 -4101535,124,133,257 -4101536,232,252,484 -4101537,274,281,555 -4101538,209,265,474 -4101539,102,119,221 -4101540,292,305,597 -4101541,257,255,512 -4101542,142,148,290 -4101543,156,156,312 -4101544,213,239,452 -4101545,248,230,478 -4101601,295,290,585 -4101602,242,273,515 -4101603,216,326,542 -4101604,214,244,458 -4101605,178,221,399 -4101606,228,261,489 -4101607,212,222,434 -4101608,218,251,469 -4101609,228,231,459 -4101610,328,362,690 -4101611,233,229,462 -4101612,294,316,610 -4101613,158,140,298 -4101614,96,123,219 -4101615,164,171,335 -4101616,311,300,611 -4101617,186,173,359 -4101618,245,247,492 -4101619,255,277,532 -4101620,164,175,339 -4101621,224,280,504 -4101622,217,270,487 -4101623,184,196,380 -4101624,194,210,404 -4101625,183,209,392 -4101626,254,299,553 -4101627,189,198,387 -4101628,274,306,580 -4101629,144,161,305 -4101630,184,191,375 -4101631,242,260,502 -4101632,226,243,469 -4101633,169,234,403 -4101634,312,314,626 -4101635,317,310,627 -4101636,313,366,679 -4101637,145,199,344 -4101638,181,208,389 -4101639,162,181,343 -4101640,333,345,678 -4101641,266,286,552 -4101642,141,152,293 -4101643,133,135,268 -4101644,143,141,284 -4101645,166,179,345 -4101701,232,208,440 -4101702,224,243,467 -4101703,171,195,366 -4101704,222,220,442 -4101705,185,185,370 -4101706,166,194,360 -4101707,172,202,374 -4101708,183,216,399 -4101709,194,203,397 -4101710,228,235,463 -4101711,179,197,376 -4101712,154,190,344 -4101713,190,224,414 -4101714,184,224,408 -4101715,167,222,389 -4101716,333,180,513 -4101717,119,129,248 -4101718,245,268,513 -4101719,243,359,602 -4101720,175,265,440 -4101721,196,203,399 -4101722,250,284,534 -4101723,117,162,279 -4101724,120,112,232 -4101801,274,301,575 -4101802,161,182,343 -4101803,270,311,581 -4101804,161,179,340 -4101805,157,230,387 -4101806,191,213,404 -4101807,247,265,512 -4101808,237,270,507 -4101809,162,155,317 -4101810,152,190,342 -4101811,251,264,515 -4101812,198,218,416 -4101813,132,137,269 -4101814,153,163,316 -4101815,243,261,504 -4101816,206,224,430 -4101817,246,257,503 -4101818,145,161,306 -4101819,190,177,367 -4101820,149,191,340 -4101821,191,249,440 -4101822,197,222,419 -4101823,194,337,531 -4101824,298,360,658 -4101825,145,147,292 -4101826,173,182,355 -4101827,126,133,259 -4101828,240,305,545 -4101829,137,148,285 -4101901,147,147,294 -4101902,168,200,368 -4101903,367,272,639 -4101904,225,215,440 -4101905,149,150,299 -4101906,162,166,328 -4101907,110,125,235 -4101908,209,206,415 -4101909,147,137,284 -4101910,199,209,408 -4101911,179,158,337 -4101912,209,208,417 -4101913,224,254,478 -4101914,234,230,464 -4101915,179,243,422 -4101916,169,177,346 -4101917,238,238,476 -4101918,225,234,459 -4101919,162,153,315 -4101920,265,286,551 -4101921,224,228,452 -4101922,171,164,335 -4101923,252,268,520 -4101924,183,198,381 -4101925,261,296,557 -4101926,263,305,568 -4101927,208,187,395 -4101928,152,151,303 -4101929,144,157,301 -4101930,146,146,292 -4101931,194,195,389 -4101932,262,312,574 -4102001,168,180,348 -4102002,156,185,341 -4102003,180,182,362 -4102004,273,328,601 -4102005,228,244,472 -4102006,295,283,578 -4102007,286,303,589 -4102008,195,206,401 -4102009,160,183,343 -4102010,194,193,387 -4102011,264,264,528 -4102012,160,175,335 -4102013,101,127,228 -4102014,216,225,441 -4102101,227,225,452 -4102102,282,277,559 -4102103,217,210,427 -4102104,296,319,615 -4102105,193,190,383 -4102106,267,245,512 -4102107,179,158,337 -4102108,211,182,393 -4102109,298,294,592 -4102110,210,195,405 -4102111,251,287,538 -4102112,0,0,0 -4102113,179,191,370 -4102114,167,175,342 -4102115,142,137,279 -4102116,213,227,440 -4102117,208,215,423 -4102118,176,192,368 -4102119,297,272,569 -4102120,159,164,323 -4102121,290,329,619 -4102122,239,222,461 -4102123,152,151,303 -4102124,120,130,250 -4102125,269,278,547 -4102126,229,227,456 -4102127,208,200,408 -4102128,176,170,346 -4102129,156,171,327 -4102130,181,135,316 -4102131,111,115,226 -4102132,203,196,399 -4102133,178,197,375 -4102134,223,220,443 -4102135,98,91,189 -4102201,231,310,541 -4102202,152,183,335 -4102203,192,222,414 -4102204,212,218,430 -4102205,170,202,372 -4102206,257,281,538 -4102207,288,233,521 -4102208,174,130,304 -4102209,201,228,429 -4102210,265,274,539 -4102211,261,286,547 -4102212,149,150,299 -4102213,227,221,448 -4102214,166,167,333 -4102215,156,185,341 -4102216,154,173,327 -4102217,148,148,296 -4102301,184,195,379 -4102302,285,304,589 -4102303,210,226,436 -4102304,259,291,550 -4102305,255,327,582 -4102306,169,186,355 -4102307,207,237,444 -4102308,254,272,526 -4102309,243,242,485 -4102310,270,318,588 -4102311,141,174,315 -4102312,251,241,492 -4102313,145,140,285 -4102314,159,173,332 -4102315,228,195,423 -4102316,166,150,316 -4102317,100,105,205 -4102318,216,237,453 -4102319,258,268,526 -4102320,140,196,336 -4102321,115,127,242 -4102322,158,240,398 -4102323,203,209,412 -4102324,245,248,493 -4102325,303,324,627 -4102326,168,183,351 -4102327,215,195,410 -4102328,246,264,510 -4102329,189,187,376 -4102330,301,288,589 -4102331,249,270,519 -4102332,200,227,427 -4102333,227,224,451 -4102334,215,281,496 -4102335,191,216,407 -4102336,130,170,300 -4102337,166,152,318 -4102338,157,160,317 -4102339,146,217,363 -4102340,108,166,274 -4102341,137,160,297 -4102401,209,222,431 -4102402,207,227,434 -4102403,159,183,342 -4102404,273,230,503 -4102405,280,300,580 -4102406,214,243,457 -4102407,180,211,391 -4102408,178,195,373 -4102409,153,176,329 -4102410,312,366,678 -4102411,301,309,610 -4102412,317,322,639 -4102413,260,316,576 -4102414,252,272,524 -4102415,244,292,536 -4102416,274,298,572 -4102417,242,273,515 -4102418,252,316,568 -4102419,203,230,433 -4102420,247,398,645 -4102421,206,274,480 -4102422,161,196,357 -4102423,291,309,600 -4102424,241,293,534 -4102425,248,304,552 -4102426,208,215,423 -4102427,160,384,544 -4102428,194,224,418 -4102429,294,288,582 -4102430,225,259,484 -4102431,166,221,387 -4102432,205,203,408 -4102433,159,181,340 -4102434,205,217,422 -4102435,182,199,381 -4102436,207,250,457 -4102437,255,315,570 -4102438,268,276,544 -4102439,333,380,713 -4102440,153,142,295 -4102501,241,232,473 -4102502,100,85,185 -4102503,302,254,556 -4102504,103,90,193 -4102505,179,180,359 -4102506,227,235,462 -4102507,308,318,626 -4102508,230,271,501 -4102509,191,200,391 -4102510,293,301,594 -4102511,185,194,379 -4102512,240,229,469 -4102513,261,240,501 -4102514,230,224,454 -4102515,205,218,423 -4102516,96,95,191 -4102517,169,186,355 -4102518,199,211,410 -4102519,140,138,278 -4102520,95,117,212 -4102521,206,212,418 -4102522,166,178,344 -4102523,0,0,0 -4102601,268,287,555 -4102602,180,198,378 -4102603,147,161,308 -4102604,219,220,439 -4102605,100,126,226 -4102606,122,150,272 -4102607,156,159,315 -4102608,276,265,541 -4102609,328,332,660 -4102610,184,181,365 -4102611,177,208,385 -4102612,159,191,350 -4102613,140,134,274 -4102614,222,176,398 -4102615,176,200,376 -4102616,123,131,254 -4102617,76,64,140 -4102618,98,96,194 -4102619,375,319,694 -4102620,0,0,0 -4102621,181,194,375 -4102622,210,226,436 -4102623,432,489,921 -4102624,146,184,330 -4102625,279,295,574 -4102626,221,289,510 -4102627,154,151,305 -4102628,237,256,493 -4102629,260,254,514 -4102630,264,291,555 -4102631,122,134,256 -4102632,289,306,595 -4102633,226,260,486 -4102634,155,168,323 -4102635,165,187,352 -4102636,158,191,349 -4102637,205,246,451 -4102638,116,130,246 -4102639,288,340,628 -4102640,115,133,248 -4102641,132,134,266 -4102642,85,97,182 -4102643,124,187,311 -4102644,117,138,255 -4102645,159,172,331 -4102646,91,118,209 -4102647,0,0,0 -4102701,155,137,292 -4102702,241,240,481 -4102703,131,151,282 -4102704,164,172,336 -4102705,125,130,255 -4102706,140,131,271 -4102707,147,136,283 -4102708,189,204,393 -4102709,125,127,252 -4102710,160,166,326 -4102711,200,175,375 -4102712,243,222,465 -4102713,224,218,442 -4102714,154,144,298 -4102715,119,109,228 -4102716,142,116,258 -4102801,194,198,392 -4102802,196,191,387 -4102803,232,200,432 -4102804,244,232,476 -4102805,303,314,617 -4102806,287,341,628 -4102807,228,218,446 -4102808,121,109,230 -4102809,304,299,603 -4102810,316,336,652 -4102811,144,148,292 -4102812,261,256,517 -4102813,192,232,424 -4102814,206,234,440 -4102815,388,372,760 -4102816,488,476,964 -4102817,267,302,569 -4102818,370,371,741 -4102819,195,220,415 -4102820,233,272,505 -4102821,189,165,354 -4102822,215,242,457 -4102823,211,196,407 -4102824,254,271,525 -4102825,255,275,530 -4102826,183,193,376 -4102827,276,264,540 -4102828,162,169,331 -4102829,296,277,573 -4102830,307,286,593 -4102831,386,365,751 -4102832,133,132,265 -4102901,147,146,293 -4102902,181,190,371 -4102903,225,242,467 -4102904,213,218,431 -4102905,185,191,376 -4102906,259,255,514 -4102907,285,264,549 -4102908,571,570,1141 -4102909,253,240,493 -4102910,202,207,409 -4102911,263,290,553 -4102912,150,164,314 -4102913,251,276,527 -4102914,188,143,331 -4102915,130,127,257 -4102916,131,129,260 -4102917,371,335,706 -4102918,209,233,442 -4102919,1554,1686,3240 -4102920,313,326,639 -4102921,223,245,468 -4102922,3,0,3 -4102923,233,234,467 -4102924,222,230,452 -4102925,278,251,529 -4102926,186,177,363 -4102927,250,272,522 -4102928,70,73,143 -4102929,139,141,280 -4103001,194,184,378 -4103002,0,0,0 -4103003,373,288,661 -4103004,243,253,496 -4103005,224,230,454 -4103006,272,267,539 -4103007,253,290,543 -4103008,172,177,349 -4103009,221,249,470 -4103010,238,255,493 -4103011,183,194,377 -4103012,229,249,478 -4103013,155,180,335 -4103014,184,173,357 -4103015,158,203,361 -4103016,0,0,0 -4103017,71,81,152 -4103018,162,178,340 -4103019,228,271,499 -4103020,132,219,351 -4103021,149,139,288 -4103022,249,226,475 -4103023,286,293,579 -4103024,192,167,359 -4103025,0,0,0 -4103026,166,206,372 -4103027,89,96,185 -4103101,265,242,507 -4103102,217,203,420 -4103103,167,170,337 -4103104,128,107,235 -4103105,247,269,516 -4103106,270,250,520 -4103107,188,187,375 -4103108,157,158,315 -4103109,195,207,402 -4103110,273,294,567 -4103111,212,198,410 -4103112,146,144,290 -4103113,292,252,544 -4103114,223,239,462 -4103115,186,182,368 -4103116,132,144,276 -4103117,202,218,420 -4103118,139,181,320 -4103119,170,165,335 -4103120,241,260,501 -4103121,275,256,531 -4103122,144,144,288 -4103123,243,271,514 -4103124,218,186,404 -4103125,183,194,377 -4103126,155,157,312 -4103127,256,272,528 -4103128,174,145,319 -4103129,119,114,233 -4103130,161,156,317 -4103131,112,113,225 -4103201,109,89,198 -4103202,599,634,1233 -4103203,541,577,1118 -4103204,458,489,947 -4103205,140,134,274 -4103206,170,170,340 -4103207,191,169,360 -4103208,229,195,424 -4103209,337,307,644 -4103210,307,295,602 -4103211,85,81,166 -4103212,493,522,1015 -4103213,238,217,455 -4103301,176,171,347 -4103302,109,116,225 -4103303,104,104,208 -4103304,231,196,427 -4103305,158,139,297 -4103306,153,153,306 -4103307,4,8,12 -4103308,194,171,365 -4103309,105,105,210 -4103401,223,222,445 -4103402,224,215,439 -4103403,188,200,388 -4103404,143,149,292 -4103405,219,240,459 -4103406,169,167,336 -4103407,284,295,579 -4103408,146,176,322 -4103409,204,207,411 -4103410,177,178,355 -4103411,162,220,382 -4103412,209,219,428 -4103413,202,211,413 -4103414,215,216,431 -4103415,222,237,459 -4103416,164,195,359 -4103417,200,230,430 -4103418,172,186,358 -4103419,191,220,411 -4103420,185,191,376 -4103421,266,256,522 -4103422,146,177,323 -4103423,180,151,331 -4103424,266,249,515 -4103425,283,255,538 -4103426,236,230,466 -4103427,304,302,606 -4103428,147,117,264 -4103429,241,281,522 -4103501,264,298,562 -4103502,191,166,357 -4103503,145,132,277 -4103504,93,96,189 -4103505,132,132,264 -4103506,81,84,165 -4103507,316,245,561 -4103508,366,384,750 -4103509,313,299,612 -4103601,110,87,197 -4103602,0,0,0 -4103603,289,304,593 -4103604,218,174,392 -4103605,280,271,551 -4103606,182,181,363 -4103607,259,256,515 -4103608,202,225,427 -4103609,219,224,443 -4103610,312,292,604 -4103611,262,232,494 -4103612,256,257,513 -4103613,234,198,432 -4103614,195,195,390 -4103615,240,218,458 -4103616,298,307,605 -4103617,280,287,567 -4103618,292,244,536 -4103619,251,236,487 -4103620,281,235,516 -4103621,372,341,713 -4103622,317,266,583 -4103623,277,274,551 -4103624,226,242,468 -4103625,223,215,438 -4103626,202,214,416 -4103627,177,167,344 -4103628,265,274,539 -4103629,185,174,359 -4103630,220,207,427 -4103631,337,303,640 -4103632,215,208,423 -4103633,234,193,427 -4103634,209,224,433 -4103635,182,263,445 -4103636,256,307,563 -4103637,247,240,487 -4103638,158,138,296 -4103639,136,148,284 -4103640,226,213,439 -4103641,223,239,462 -4103642,256,336,592 -4103643,281,235,516 -4103644,231,271,502 -4103645,0,0,0 -4103646,293,257,550 -4103647,9,0,9 -4103648,0,0,0 -4103649,155,151,306 -4103650,141,119,260 -4103651,0,0,0 -4103701,194,198,392 -4103702,175,191,366 -4103703,199,193,392 -4103704,155,182,337 -4103705,232,196,428 -4103706,255,247,502 -4103707,133,124,257 -4103708,156,130,286 -4103709,264,247,511 -4103710,129,137,266 -4103711,164,157,321 -4103712,354,359,713 -4103713,112,74,186 -4103714,234,294,528 -4103715,229,262,491 -4103716,515,116,631 -4103717,192,210,402 -4103718,170,174,344 -4103719,183,176,359 -4103720,162,141,303 -4103721,247,233,480 -4103722,136,171,307 -4103723,192,193,385 -4103724,248,252,500 -4103725,198,193,391 -4103726,151,137,288 -4103727,272,258,530 -4103728,243,265,508 -4103729,199,194,393 -4103730,291,287,578 -4103731,305,301,606 -4103732,224,210,434 -4103733,200,185,385 -4103734,149,176,325 -4103735,257,311,568 -4103736,332,347,679 -4103737,228,220,448 -4103738,227,230,457 -4103739,260,264,524 -4103740,164,162,326 -4103741,250,249,499 -4103742,218,281,499 -4103743,175,168,343 -4103744,127,142,269 -4103745,98,101,199 -4103746,270,272,542 -4103747,233,258,491 -4103748,90,99,189 -4103749,155,163,318 -4103750,144,184,328 -4103801,225,220,445 -4103802,190,215,405 -4103803,266,261,527 -4103804,219,229,448 -4103805,235,268,503 -4103806,237,241,478 -4103807,311,310,621 -4103808,200,215,415 -4103809,213,214,427 -4103810,210,213,423 -4103811,268,297,565 -4103812,203,180,383 -4103813,323,280,603 -4103814,329,334,663 -4103815,235,223,458 -4103816,206,196,402 -4103817,269,269,538 -4103818,169,182,351 -4103819,228,200,428 -4103820,274,310,584 -4103821,220,240,460 -4103822,209,231,440 -4103823,216,311,527 -4103824,252,231,483 -4103825,332,336,668 -4103826,197,187,384 -4103827,197,184,381 -4103828,220,218,438 -4103829,295,290,585 -4103830,282,295,577 -4103831,222,251,473 -4103832,211,232,443 -4103833,258,322,580 -4103834,200,212,412 -4103835,322,310,632 -4103836,117,150,267 -4103837,161,204,365 -4103838,245,227,472 -4103839,166,169,335 -4103901,3,0,3 -4104001,217,190,407 -4104002,247,264,511 -4104003,195,202,397 -4104004,155,163,318 -4104005,276,279,555 -4104006,225,250,475 -4104007,122,139,261 -4104008,161,188,349 -4104009,130,129,259 -4104010,162,211,373 -4104011,330,322,652 -4104012,169,192,361 -4104013,222,225,447 -4104014,139,257,396 -4104015,163,196,359 -4104016,170,153,323 -4104017,295,296,591 -4104018,245,226,471 -4104019,222,224,446 -4104020,164,118,282 -4104021,207,220,427 -4104022,264,224,488 -4104023,227,223,450 -4104024,212,209,421 -4104025,268,256,524 -4104026,194,204,398 -4104027,244,227,471 -4104028,171,182,353 -4104029,0,0,0 -4104030,202,230,432 -4104031,158,207,365 -4104032,141,147,288 -4104033,178,176,354 -4104034,175,197,372 -4104035,206,205,411 -4104036,164,146,310 -4104037,191,177,368 -4104101,158,172,330 -4104102,299,255,554 -4104103,226,232,458 -4104104,300,315,615 -4104105,206,196,402 -4104106,307,312,619 -4104107,183,167,350 -4104108,198,153,351 -4104109,161,147,308 -4104110,233,214,447 -4104111,240,219,459 -4104112,216,206,422 -4104113,146,168,314 -4104114,214,222,436 -4104115,126,123,249 -4104116,170,177,347 -4104117,246,279,525 -4104118,223,278,501 -4104119,180,220,400 -4104120,228,215,443 -4104121,206,258,464 -4104122,182,182,364 -4104123,202,217,419 -4104124,270,247,517 -4104125,236,210,446 -4104126,196,193,389 -4104127,193,211,404 -4104128,133,130,263 -4104129,179,195,374 -4104130,251,247,498 -4104131,188,163,351 -4104132,99,111,210 -4104133,151,144,295 -4104134,114,113,227 -4104135,0,0,0 -4104136,146,141,287 -4104137,7,0,7 -4104138,214,207,421 -4104201,73,4,77 -4104301,284,276,560 -4104302,332,314,646 -4104303,102,168,270 -4104304,215,259,474 -4104305,128,152,280 -4104306,189,209,398 -4104307,123,152,275 -4104308,173,160,333 -4104309,215,206,421 -4104310,252,261,513 -4104311,194,211,405 -4104312,197,214,411 -4104313,235,233,468 -4104314,186,195,381 -4104315,195,214,409 -4104316,258,280,538 -4104317,152,163,315 -4104318,192,193,385 -4104319,183,172,355 -4104320,194,204,398 -4104321,264,281,545 -4104322,441,432,873 -4104323,314,338,652 -4104324,172,219,391 -4104325,128,121,249 -4104326,168,181,349 -4104327,158,159,317 -4104328,117,141,258 -4104329,290,276,566 -4104330,155,151,306 -4104331,296,268,564 -4104332,223,236,459 -4104333,200,195,395 -4104334,112,98,210 -4104335,171,174,345 -4104336,118,128,246 -4104337,195,176,371 -4104401,312,325,637 -4104402,249,215,464 -4104403,189,180,369 -4104404,279,269,548 -4104405,230,229,459 -4104406,196,212,408 -4104407,264,234,498 -4104408,120,126,246 -4104409,212,187,399 -4104410,194,217,411 -4104411,240,201,441 -4104412,182,163,345 -4104413,169,188,357 -4104414,210,194,404 -4104415,104,74,178 -4104416,210,210,420 -4104417,259,254,513 -4104418,362,354,716 -4104419,305,318,623 -4104420,147,153,300 -4104421,254,237,491 -4104422,224,252,476 -4104423,275,271,546 -4104424,278,285,563 -4104425,186,180,366 -4104426,178,175,353 -4104427,213,204,417 -4104428,251,232,483 -4104429,240,240,480 -4104430,178,166,344 -4104431,202,191,393 -4104432,175,181,356 -4104433,156,126,282 -4104434,194,198,392 -4104435,130,138,268 -4104436,190,193,383 -4104437,180,181,361 -4104438,171,183,354 -4104501,332,379,711 -4104502,191,194,385 -4104503,295,286,581 -4104504,204,186,390 -4104505,202,223,425 -4104506,200,186,386 -4104507,172,172,344 -4104508,210,228,438 -4104509,154,141,295 -4104510,261,270,531 -4104511,197,206,403 -4104512,242,234,476 -4104513,167,151,318 -4104514,153,184,337 -4104515,184,213,397 -4104516,3,0,3 -4104517,254,257,511 -4104518,185,174,359 -4104519,6,0,6 -4104520,592,576,1168 -4104521,544,369,913 -4104522,250,250,500 -4104523,175,182,357 -4104524,265,264,529 -4104525,286,266,552 -4104526,264,264,528 -4104527,125,127,252 -4104528,0,0,0 -4104529,577,592,1169 -4104530,352,301,653 -4104531,161,172,333 -4104532,257,256,513 -4104533,802,756,1558 -4104534,397,397,794 -4104535,149,154,303 -4104536,135,213,348 -4104537,275,251,526 -4104601,210,209,419 -4104602,272,309,581 -4104603,307,289,596 -4104604,242,257,499 -4104605,288,266,554 -4104606,224,202,426 -4104607,250,259,509 -4104608,114,120,234 -4104609,300,288,588 -4104610,289,291,580 -4104611,272,275,547 -4104612,218,231,449 -4104613,181,210,391 -4104614,235,233,468 -4104615,193,208,401 -4104616,126,112,238 -4104617,311,286,597 -4104618,207,250,457 -4104619,288,308,596 -4104620,175,198,373 -4104621,212,204,416 -4104622,297,266,563 -4104623,339,339,678 -4104624,307,294,601 -4104625,126,153,279 -4104626,216,214,430 -4104627,256,275,531 -4104628,280,280,560 -4104629,167,166,333 -4104630,0,0,0 -4104631,309,334,643 -4104632,243,261,504 -4104633,177,149,326 -4104634,307,328,635 -4104701,123,149,272 -4104702,109,132,241 -4104703,173,189,362 -4104704,222,226,448 -4104705,196,212,408 -4104706,191,185,376 -4104707,250,244,494 -4104708,258,242,500 -4104709,191,184,375 -4104710,129,141,270 -4104711,215,201,416 -4104712,226,227,453 -4104713,175,169,344 -4104714,254,259,513 -4104715,131,134,265 -4104716,0,0,0 -4104717,205,176,381 -4104718,205,245,450 -4104719,162,179,341 -4104720,212,216,428 -4104721,174,168,342 -4104722,246,275,521 -4104723,221,193,414 -4104724,272,301,573 -4104725,152,173,325 -4104726,148,141,289 -4104727,135,154,289 -4104728,255,257,512 -4104729,186,179,365 -4104730,138,151,289 -4104731,141,150,291 -4104732,276,265,541 -4104733,264,290,554 -4104734,168,153,321 -4104735,153,154,307 -4104736,184,162,346 -4104737,216,340,556 -4104738,237,243,480 -4104739,273,305,578 -4104740,152,163,315 -4104741,245,253,498 -4104742,145,134,279 -4104743,192,209,401 -4104744,205,207,412 -4104801,196,214,410 -4104802,186,7,193 -4104803,153,173,326 -4104804,257,260,517 -4104805,122,121,243 -4104806,261,270,531 -4104807,266,282,548 -4104808,236,234,470 -4104809,305,271,576 -4104810,342,311,653 -4104811,275,285,560 -4104812,297,270,567 -4104813,260,252,512 -4104814,198,208,406 -4104815,218,235,453 -4104816,164,152,316 -4104817,128,135,263 -4104818,327,319,646 -4104819,342,407,749 -4104820,256,296,552 -4104821,282,302,584 -4104822,188,202,390 -4104823,115,108,223 -4104824,255,258,513 -4104825,165,212,377 -4104826,236,249,485 -4104827,110,100,210 -4104828,558,559,1117 -4104829,160,143,303 -4104830,127,100,227 -4104831,317,350,667 -4104832,192,232,424 -4104833,146,158,304 -4104834,153,152,305 -4104901,137,157,294 -4104902,93,107,200 -4104903,165,139,304 -4104904,248,257,505 -4104905,197,259,456 -4104906,154,150,304 -4104907,195,190,385 -4104908,151,184,335 -4104909,159,162,321 -4104910,159,172,331 -4104911,186,188,374 -4104912,165,188,353 -4104913,153,146,299 -4104914,0,0,0 -4104915,218,217,435 -4104916,273,277,550 -4104917,253,269,522 -4104918,192,195,387 -4104919,148,158,306 -4104920,182,187,369 -4104921,184,254,438 -4104922,108,151,259 -4104923,513,579,1092 -4104924,124,137,261 -4104925,155,182,337 -4105001,113,152,265 -4105002,253,256,509 -4105003,152,164,316 -4105004,216,218,434 -4105005,185,207,392 -4105006,162,152,314 -4105007,138,142,280 -4105008,266,274,540 -4105009,248,246,494 -4105010,177,219,396 -4105011,235,238,473 -4105012,224,259,483 -4105013,160,155,315 -4105014,146,160,306 -4105015,223,248,471 -4105016,298,317,615 -4105017,238,230,468 -4105018,185,187,372 -4105019,197,188,385 -4105020,215,235,450 -4105021,145,167,312 -4105022,106,117,223 -4105023,135,133,268 -4105101,193,191,384 -4105102,110,106,216 -4105103,143,141,284 -4105104,313,316,629 -4105105,188,186,374 -4105106,248,255,503 -4105107,17,17,34 -4105108,210,239,449 -4105109,199,198,397 -4105110,150,149,299 -4105111,223,192,415 -4105112,146,177,323 -4105113,119,101,220 -4105114,115,111,226 -4105115,222,199,421 -4105116,206,199,405 -4105117,150,151,301 -4105118,199,202,401 -4105119,150,144,294 -4105120,159,156,315 -4105121,243,248,491 -4105122,180,171,351 -4105123,151,186,337 -4105124,111,124,235 -4105125,160,162,322 -4105126,208,198,406 -4105127,238,232,470 -4105128,188,178,366 -4105129,258,225,483 -4105201,194,230,424 -4105202,188,238,426 -4105203,193,397,590 -4105204,161,168,329 -4105205,259,313,572 -4105206,195,213,408 -4105207,159,142,301 -4105208,315,374,689 -4105209,298,286,584 -4105210,188,219,407 -4105211,0,0,0 -4105212,295,280,575 -4105213,251,292,543 -4105214,216,248,464 -4105215,319,309,628 -4105216,294,314,608 -4105217,223,240,463 -4105218,268,289,557 -4105219,200,194,394 -4105220,219,223,442 -4105221,157,163,320 -4105222,0,0,0 -4105223,156,198,354 -4105224,0,0,0 -4105225,284,293,577 -4105226,174,157,331 -4105227,233,204,437 -4105228,170,184,354 -4105229,134,191,325 -4105230,137,313,450 -4105231,243,219,462 -4105232,178,186,364 -4105233,225,211,436 -4105234,162,149,311 -4105235,174,202,376 -4105236,250,251,501 -4105237,262,226,488 -4105238,136,115,251 -4105301,256,237,493 -4105302,151,161,312 -4105303,164,176,340 -4105304,263,266,529 -4105305,165,175,340 -4105306,207,241,448 -4105307,233,253,486 -4105308,160,168,328 -4105309,196,176,372 -4105310,215,211,426 -4105311,188,187,375 -4105312,231,213,444 -4105313,162,186,348 -4105314,210,216,426 -4105315,164,175,339 -4105316,126,113,239 -4105317,343,282,625 -4105318,265,242,507 -4105319,223,215,438 -4105320,198,217,415 -4105321,167,167,334 -4105322,199,217,416 -4105323,171,193,364 -4105324,335,343,678 -4105325,161,169,330 -4105326,140,132,272 -4105327,186,197,383 -4105328,184,239,423 -4105329,103,121,224 -4105330,171,173,344 -4105331,175,194,369 -4105332,212,224,436 -4105333,247,240,487 -4105334,206,229,435 -4105335,119,131,250 -4105336,201,204,405 -4105337,213,251,464 -4105338,207,189,396 -4105339,137,163,300 -4105340,236,223,459 -4105341,196,197,393 -4105342,137,161,298 -4105343,134,122,256 -4105344,249,240,489 -4105345,107,109,216 -4105346,149,184,333 -4105347,170,206,376 -4105348,142,182,324 -4105349,127,143,270 -4105401,283,261,544 -4105402,228,203,431 -4105403,165,171,336 -4105404,215,225,440 -4105405,165,161,326 -4105406,304,308,612 -4105407,196,212,408 -4105408,248,234,482 -4105409,153,144,297 -4105410,283,283,566 -4105411,238,255,493 -4105412,182,170,352 -4105413,297,286,583 -4105414,298,293,591 -4105415,180,198,378 -4105416,179,188,367 -4105417,0,0,0 -4105418,263,256,519 -4105419,269,275,544 -4105420,261,239,500 -4105421,99,106,205 -4105422,275,273,548 -4105423,344,321,665 -4105424,333,321,654 -4105425,100,122,222 -4105426,215,202,417 -4105427,238,251,489 -4105428,135,131,266 -4105429,139,132,271 -4105430,295,293,588 -4105431,143,147,290 -4105432,228,246,474 -4105433,269,297,566 -4105434,206,162,368 -4105435,197,204,401 -4105436,313,313,626 -4105501,165,125,290 -4105502,248,271,519 -4105503,206,227,433 -4105504,212,225,437 -4105505,163,168,331 -4105506,190,184,374 -4105507,156,169,325 -4105508,11,16,27 -4105509,266,274,540 -4105510,230,218,448 -4105511,300,272,572 -4105512,208,262,470 -4105513,268,348,616 -4105514,314,308,622 -4105515,277,266,543 -4105516,179,199,378 -4105517,163,160,323 -4105518,191,197,388 -4105519,255,270,525 -4105520,256,226,482 -4105521,199,191,390 -4105522,195,185,380 -4105523,170,171,341 -4105524,32,43,75 -4105525,173,173,346 -4105526,186,196,382 -4105527,180,239,419 -4105528,143,151,294 -4105529,177,177,354 -4105530,261,279,540 -4105601,158,167,325 -4105602,167,180,347 -4105603,194,230,424 -4105604,115,121,236 -4105605,250,236,486 -4105606,171,173,344 -4105607,195,310,505 -4105608,201,269,470 -4105609,177,174,351 -4105610,124,148,272 -4105611,189,196,385 -4105612,208,214,422 -4105613,260,278,538 -4105614,188,244,432 -4105615,199,194,393 -4105616,118,163,281 -4105617,271,310,581 -4105618,210,246,456 -4105619,216,233,449 -4105620,214,241,455 -4105621,153,171,324 -4105622,142,183,325 -4105623,290,296,586 -4105624,218,229,447 -4105625,145,149,294 -4105626,187,229,416 -4105627,216,274,490 -4105628,249,287,536 -4105629,229,277,506 -4105630,186,230,416 -4105631,214,269,483 -4105632,212,233,445 -4105701,263,252,515 -4105702,123,123,246 -4105703,165,158,323 -4105704,162,167,329 -4105705,134,131,265 -4105706,110,142,252 -4105707,244,256,500 -4105708,323,407,730 -4105709,267,309,576 -4105710,215,232,447 -4105711,235,230,465 -4105712,244,267,511 -4105713,157,176,333 -4105714,161,234,395 -4105715,164,166,330 -4105716,114,102,216 -4105717,160,153,313 -4105718,172,186,358 -4105719,169,180,349 -4105720,142,160,302 -4105721,141,166,307 -4105722,240,211,451 -4105723,189,195,384 -4105724,253,221,474 -4105725,129,154,283 -4105726,179,163,342 -4105727,260,289,549 -4105728,255,292,547 -4105729,262,293,555 -4105730,221,190,411 -4105731,183,183,366 -4105732,266,231,497 -4105733,236,293,529 -4105734,250,333,583 -4105735,168,178,346 -4105736,182,197,379 -4105737,146,171,317 -4105738,164,273,437 -4105739,270,301,571 -4105740,275,264,539 -4105741,158,138,296 -4105742,188,194,382 -4105743,186,192,378 -4105744,132,146,278 -4105745,186,190,376 -4105746,108,128,236 -4105747,254,278,532 -4105748,157,169,326 -4105749,113,143,256 -4105801,326,302,628 -4105802,228,260,488 -4105803,293,305,598 -4105804,200,191,391 -4105805,184,176,360 -4105806,169,191,360 -4105807,166,182,348 -4105808,217,255,472 -4105809,153,174,327 -4105810,142,177,319 -4105811,124,155,279 -4105812,174,190,364 -4105813,240,254,494 -4105814,305,302,607 -4105815,249,290,539 -4105816,191,191,382 -4105817,206,228,434 -4105818,239,301,540 -4105819,292,320,612 -4105820,5,7,12 -4105821,178,160,338 -4105822,167,180,347 -4105823,139,160,299 -4105824,261,248,509 -4105825,233,270,503 -4105826,0,0,0 -4105827,136,138,274 -4105828,192,242,434 -4105829,181,216,397 -4105830,145,151,296 -4105831,172,155,327 -4105832,137,150,287 -4105833,3,3,6 -4105901,228,229,457 -4105902,125,112,237 -4105903,220,224,444 -4105904,232,235,467 -4105905,211,222,433 -4105906,212,211,423 -4105907,173,162,335 -4105908,182,198,380 -4105909,309,323,632 -4105910,258,233,491 -4105911,0,0,0 -4105912,138,140,278 -4105913,202,190,392 -4105914,243,262,505 -4105915,205,201,406 -4105916,223,208,431 -4105917,87,100,187 -4105918,186,188,374 -4105919,275,250,525 -4105920,180,195,375 -4105921,208,219,427 -4105922,111,102,213 -4105923,181,174,355 -4105924,113,113,226 -4105925,121,105,226 -4105926,159,159,318 -4105927,146,157,303 -4105928,239,230,469 -4105929,263,276,539 -4105930,245,243,488 -4105931,206,199,405 -4105932,0,0,0 -4105933,111,117,228 -4105934,120,157,277 -4106001,160,197,357 -4106002,221,206,427 -4106003,292,294,586 -4106004,230,246,476 -4106005,151,151,302 -4106006,182,182,364 -4106007,242,240,482 -4106008,227,223,450 -4106009,178,203,381 -4106010,109,113,222 -4106011,272,267,539 -4106012,288,301,589 -4106013,4,4,8 -4106014,250,223,473 -4106015,198,187,385 -4106016,193,190,383 -4106017,0,0,0 -4106018,252,271,523 -4106019,203,202,405 -4106020,329,350,679 -4106021,42,43,85 -4106022,104,131,235 -4106023,167,191,358 -4106024,3,3,6 -4106025,178,176,354 -4106101,145,158,303 -4106102,0,0,0 -4106103,151,172,323 -4106104,180,170,350 -4106105,352,361,713 -4106106,235,227,462 -4106107,180,169,349 -4106108,223,261,484 -4106109,222,250,472 -4106110,172,194,366 -4106111,222,229,451 -4106112,115,124,239 -4106113,241,257,498 -4106114,207,269,476 -4106115,151,157,308 -4106116,126,111,237 -4106117,228,249,477 -4106118,226,249,475 -4106119,248,277,525 -4106120,185,186,371 -4106121,187,194,381 -4106122,233,235,468 -4106123,184,216,400 -4106124,207,239,446 -4106125,167,226,393 -4106126,220,257,477 -4106127,162,206,368 -4106128,289,340,629 -4106129,250,280,530 -4106130,145,116,261 -4106131,174,166,340 -4106132,156,151,307 -4106133,196,320,516 -4106134,184,220,404 -4106135,209,224,433 -4106136,3,0,3 -4106137,0,0,0 -4106201,251,277,528 -4106202,125,175,300 -4106203,153,154,307 -4106204,139,153,292 -4106205,149,180,329 -4106206,104,86,190 -4106207,163,179,342 -4106208,165,180,345 -4106209,227,201,428 -4106210,163,129,292 -4106211,142,157,299 -4106212,120,192,312 -4106213,147,157,304 -4106214,221,288,509 -4106215,184,265,449 -4106216,95,197,292 -4106217,130,157,287 -4106218,140,141,281 -4106219,186,206,392 -4106220,116,122,238 -4106221,213,229,442 -4106222,222,275,497 -4106223,207,226,433 -4106224,103,110,213 -4106225,207,250,457 -4106226,351,336,687 -4106227,253,237,490 -4106228,233,265,498 -4106229,288,312,600 -4106230,162,168,330 -4106231,0,0,0 -4106232,131,155,286 -4106233,179,209,388 -4106234,151,189,340 -4106235,154,177,331 -4106236,243,245,488 -4106237,160,169,329 -4106301,146,162,308 -4106302,243,255,498 -4106303,223,223,446 -4106304,197,201,398 -4106305,151,154,305 -4106306,166,163,329 -4106307,337,311,648 -4106308,397,421,818 -4106309,232,209,441 -4106310,205,192,397 -4106311,138,163,301 -4106312,144,145,289 -4106313,174,160,334 -4106314,0,0,0 -4106315,225,273,498 -4106316,160,167,327 -4106317,167,169,336 -4106318,121,123,244 -4106319,223,201,424 -4106320,250,241,491 -4106321,108,140,248 -4106322,142,152,294 -4106323,210,242,452 -4106324,142,142,284 -4106325,222,222,444 -4106401,140,142,282 -4106402,299,356,655 -4106403,193,251,444 -4106404,163,224,387 -4106405,155,140,295 -4106406,246,206,452 -4106407,178,200,378 -4106408,200,228,428 -4106409,169,158,327 -4106410,212,255,467 -4106411,182,213,395 -4106412,183,229,412 -4106413,132,152,284 -4106414,155,157,312 -4106415,0,0,0 -4106416,269,297,566 -4106417,217,215,432 -4106418,207,230,437 -4106419,300,318,618 -4106420,99,141,240 -4106421,156,162,318 -4106422,165,214,379 -4106423,172,235,407 -4106424,184,236,420 -4106425,285,294,579 -4106426,298,400,698 -4106427,266,321,587 -4106428,297,317,614 -4106429,113,112,225 -4106430,340,372,712 -4106431,0,0,0 -4106432,0,0,0 -4106433,197,196,393 -4106501,82,73,155 -4106502,217,205,422 -4106503,245,221,466 -4106504,192,183,375 -4106505,190,209,399 -4106506,187,189,376 -4106507,200,286,486 -4106508,132,148,280 -4106509,179,191,370 -4106510,165,155,320 -4106511,278,287,565 -4106512,159,151,310 -4106513,18,7,25 -4106601,214,265,479 -4106602,280,278,558 -4106603,160,148,308 -4106604,165,319,484 -4106605,205,224,429 -4106606,196,205,401 -4106607,151,126,277 -4106608,188,191,379 -4106609,155,168,323 -4106610,197,222,419 -4106611,146,151,297 -4106612,224,216,440 -4106613,176,195,371 -4106614,189,201,390 -4106615,212,203,415 -4106616,121,137,258 -4106617,156,171,327 -4106618,122,129,251 -4106619,0,0,0 -4106620,179,277,456 -4106701,233,232,465 -4106702,275,289,564 -4106703,128,114,242 -4106704,157,186,343 -4106705,198,201,399 -4106706,219,232,451 -4106707,175,181,356 -4106708,210,231,441 -4106709,226,214,440 -4106710,282,286,568 -4106711,255,269,524 -4106712,198,233,431 -4106713,241,251,492 -4106714,334,354,688 -4106715,321,308,629 -4106716,342,324,666 -4106717,241,234,475 -4106718,163,273,436 -4106719,241,237,478 -4106720,164,175,339 -4106721,244,244,488 -4106722,331,323,654 -4106723,116,127,243 -4106724,220,196,416 -4106725,0,0,0 -4106801,197,197,394 -4106802,107,121,228 -4106803,299,327,626 -4106804,224,299,523 -4106805,121,130,251 -4106806,13,6,19 -4106807,157,154,311 -4106808,133,119,252 -4106809,187,194,381 -4106810,279,333,612 -4106811,270,279,549 -4106812,172,180,352 -4106813,307,328,635 -4106814,169,212,381 -4106815,216,212,428 -4106816,148,151,299 -4106817,216,230,446 -4106818,291,306,597 -4106819,166,182,348 -4106820,189,184,373 -4106821,232,250,482 -4106822,218,237,455 -4106823,185,163,348 -4106824,265,296,561 -4106825,231,253,484 -4106826,167,233,400 -4106827,277,307,584 -4106828,244,247,491 -4106829,267,255,522 -4106830,373,350,723 -4106831,267,279,546 -4106832,156,174,330 -4106833,153,190,343 -4106834,218,217,435 -4106835,136,226,362 -4106901,98,99,197 -4106902,190,208,398 -4106903,178,177,355 -4106904,239,249,488 -4106905,116,183,299 -4106906,242,250,492 -4106907,210,206,416 -4106908,163,170,333 -4106909,154,196,350 -4106910,209,263,472 -4106911,164,186,350 -4106912,223,252,475 -4106913,136,151,287 -4106914,244,315,559 -4106915,164,163,327 -4106916,165,157,322 -4106917,229,294,523 -4106918,261,264,525 -4106919,261,276,537 -4106920,148,147,295 -4106921,176,192,368 -4106922,228,285,513 -4106923,301,325,626 -4106924,154,141,295 -4106925,273,270,543 -4106926,189,210,399 -4106927,217,239,456 -4106928,148,165,313 -4106929,321,300,621 -4106930,183,198,381 -4106931,301,320,621 -4106932,3,3,6 -4106933,122,144,266 -4106934,217,221,438 -4106935,127,134,261 -4106936,196,214,410 -4106937,241,248,489 -4106938,150,162,312 -4106939,194,192,386 -4107001,202,231,433 -4107002,199,180,379 -4107003,178,179,357 -4107004,180,189,369 -4107005,173,174,347 -4107006,243,279,522 -4107007,242,251,493 -4107008,136,185,321 -4107009,255,270,525 -4107010,308,310,618 -4107011,195,210,405 -4107012,253,228,481 -4107013,171,156,327 -4107014,218,209,427 -4107015,187,227,414 -4107016,117,117,234 -4107017,230,201,431 -4107018,172,175,347 -4107019,187,230,417 -4107101,171,177,348 -4107102,241,253,494 -4107103,151,160,311 -4107104,164,159,323 -4107105,246,280,526 -4107106,186,211,397 -4107107,230,202,432 -4107108,191,180,371 -4107109,238,231,469 -4107110,295,266,561 -4107111,137,130,267 -4107112,215,237,452 -4107113,225,228,453 -4107114,245,229,474 -4107115,206,264,470 -4107116,228,211,439 -4107117,120,158,278 -4107118,183,188,371 -4107119,201,224,425 -4107120,206,207,413 -4107121,191,216,407 -4107122,265,292,557 -4107123,279,299,578 -4107124,208,199,407 -4107125,92,138,230 -4107126,187,210,397 -4107127,82,87,169 -4107128,174,182,356 -4107129,78,79,157 -4107130,0,0,0 -4107131,175,176,351 -4107201,311,326,637 -4107202,280,250,530 -4107203,392,471,863 -4107204,344,328,672 -4107205,140,131,271 -4107206,656,668,1324 -4107207,600,619,1219 -4107208,448,455,903 -4107209,226,235,461 -4107210,226,222,448 -4107211,164,186,350 -4107212,132,161,293 -4107213,229,233,462 -4107214,363,348,711 -4107215,261,260,521 -4107216,92,110,202 -4107217,233,254,487 -4107218,188,176,364 -4107219,235,278,513 -4107220,305,303,608 -4107221,281,281,562 -4107222,239,260,499 -4107223,153,179,332 -4107224,215,202,417 -4107225,132,142,274 -4107226,116,105,221 -4107301,231,256,487 -4107302,180,179,359 -4107303,175,165,340 -4107304,186,277,463 -4107305,229,228,457 -4107306,181,210,391 -4107307,140,159,299 -4107308,165,189,354 -4107309,190,184,374 -4107310,332,336,668 -4107311,138,133,271 -4107312,4,0,4 -4107313,201,210,411 -4107314,148,160,308 -4107315,355,354,709 -4107316,198,198,396 -4107317,310,306,616 -4107318,177,186,363 -4107319,253,253,506 -4107320,216,247,463 -4107321,59,47,106 -4107322,0,0,0 -4107323,128,156,284 -4107401,0,0,0 -4107402,179,190,369 -4107403,203,224,427 -4107404,176,180,356 -4107405,219,251,470 -4107406,188,183,371 -4107407,135,133,268 -4107408,230,201,431 -4107409,191,208,399 -4107410,253,246,499 -4107411,195,177,372 -4107412,0,0,0 -4107413,214,210,424 -4107414,173,165,338 -4107415,184,184,368 -4107416,146,139,285 -4107417,173,135,308 -4107418,191,173,364 -4107419,152,156,308 -4107420,186,185,371 -4107421,177,158,335 -4107422,193,188,381 -4107423,197,191,388 -4107424,228,251,479 -4107425,191,213,404 -4107426,287,366,653 -4107427,224,246,470 -4107501,162,153,315 -4107502,204,219,423 -4107503,94,95,189 -4107504,190,187,377 -4107505,116,112,228 -4107506,178,202,380 -4107507,103,101,204 -4107508,243,258,501 -4107601,283,300,583 -4107602,215,213,428 -4107603,170,160,330 -4107604,286,296,582 -4107605,272,297,569 -4107606,197,214,411 -4107607,164,178,342 -4107608,167,161,328 -4107609,183,193,376 -4107610,173,163,336 -4107701,149,174,323 -4107702,329,318,647 -4107703,269,272,541 -4107704,174,161,335 -4107705,226,231,457 -4107706,189,185,374 -4107707,194,192,386 -4107708,178,174,352 -4107709,189,207,396 -4107710,297,295,592 -4107711,254,262,516 -4107712,0,0,0 -4107713,342,305,647 -4107714,114,127,241 -4107715,155,165,320 -4107716,201,247,448 -4107717,165,105,270 -4107718,242,252,494 -4107719,301,278,579 -4107720,317,306,623 -4107721,240,221,461 -4107722,128,140,268 -4107723,151,152,303 -4107724,0,0,0 -4107725,4,0,4 -4107726,249,259,508 -4107727,164,177,341 -4107801,120,129,249 -4107802,116,109,225 -4107803,295,284,579 -4107804,211,258,469 -4107805,245,250,495 -4107806,206,242,448 -4107807,129,113,242 -4107808,177,185,362 -4107809,215,295,510 -4107810,222,263,485 -4107811,146,142,288 -4107812,208,199,407 -4107813,201,184,385 -4107814,251,232,483 -4107815,124,112,236 -4107816,0,0,0 -4107817,164,129,293 -4107818,115,149,264 -4107901,124,101,225 -4107902,228,230,458 -4107903,186,194,380 -4107904,214,207,421 -4107905,209,212,421 -4107906,248,229,477 -4107907,106,111,217 -4107908,115,139,254 -4107909,214,228,442 -4107910,151,192,343 -4107911,262,250,512 -4107912,229,248,477 -4107913,149,169,318 -4107914,131,174,305 -4107915,278,250,528 -4107916,259,248,507 -4107917,238,265,503 -4107918,193,221,414 -4107919,153,158,311 -4108001,230,225,455 -4108002,46,45,91 -4108003,166,168,334 -4108004,288,271,559 -4108005,193,222,415 -4108006,246,228,474 -4108007,190,235,425 -4108008,111,143,254 -4108009,286,273,559 -4108010,168,174,342 -4108011,175,174,349 -4108012,176,177,353 -4108013,233,229,462 -4108014,199,178,377 -4108015,188,164,352 -4108016,197,189,386 -4108017,160,167,327 -4108018,145,156,301 -4108019,231,214,445 -4108020,295,315,610 -4108021,299,293,592 -4108022,312,328,640 -4108023,199,198,397 -4108024,252,240,492 -4108025,252,345,597 -4108026,209,182,391 -4108027,120,123,243 -4108028,229,227,456 -4108029,243,329,572 -4108030,169,185,354 -4108031,117,113,230 -4108032,160,169,329 -4108033,222,243,465 -4108101,0,0,0 -4108201,17,11,28 -4108301,127,116,243 -4108302,252,284,536 -4108303,133,131,264 -4108304,296,308,604 -4108305,293,337,630 -4108306,40,50,90 -4108307,238,220,458 -4108308,277,298,575 -4108309,212,213,425 -4108310,103,99,202 -4108311,158,141,299 -4108312,239,267,506 -4108313,145,128,273 -4108314,139,122,261 -4108315,177,174,351 -4108401,160,160,320 -4108402,110,116,226 -4108403,221,237,458 -4108404,214,213,427 -4108405,111,114,225 -4108406,210,224,434 -4108407,173,166,339 -4108408,197,186,383 -4108409,267,257,524 -4108410,260,285,545 -4108411,171,165,336 -4108412,169,176,345 -4108413,286,281,567 -4108414,234,247,481 -4108415,170,185,355 -4108416,107,189,296 -4108417,261,302,563 -4108418,218,250,468 -4108419,316,321,637 -4108420,243,283,526 -4108421,284,298,582 -4108422,197,213,410 -4108423,224,219,443 -4108424,328,282,610 -4108425,132,126,258 -4108426,157,158,315 -4108427,169,192,361 -4108428,234,259,493 -4108429,155,157,312 -4108430,171,169,340 -4108431,140,145,285 -4108432,0,0,0 -4108433,171,170,341 -4108434,111,115,226 -4108501,130,128,258 -4108502,131,151,282 -4108503,142,154,296 -4108504,247,265,512 -4108505,170,179,349 -4108506,269,275,544 -4108507,98,114,212 -4108508,183,183,366 -4108509,255,233,488 -4108510,225,248,473 -4108511,239,281,520 -4108512,282,264,546 -4108513,209,229,438 -4108514,162,167,329 -4108515,197,199,396 -4108516,163,200,363 -4108517,178,175,353 -4108518,181,197,378 -4108519,274,270,544 -4108520,166,153,319 -4108521,183,198,381 -4108522,268,244,512 -4108523,142,143,285 -4108601,187,212,399 -4108602,306,361,667 -4108603,293,255,548 -4108604,204,197,401 -4108605,193,215,408 -4108606,121,103,224 -4108607,281,277,558 -4108608,247,238,485 -4108609,304,275,579 -4108610,197,196,393 -4108611,283,282,565 -4108612,196,203,399 -4108613,239,220,459 -4108614,230,238,468 -4108615,308,392,700 -4108616,152,156,308 -4108617,269,259,528 -4108618,213,242,455 -4108619,235,225,460 -4108620,163,167,330 -4108621,0,0,0 -4108622,197,252,449 -4108701,194,207,401 -4108702,242,265,507 -4108703,281,286,567 -4108704,261,259,520 -4108705,245,249,494 -4108706,217,225,442 -4108707,216,253,469 -4108708,214,218,432 -4108709,256,280,536 -4108710,277,386,663 -4108711,245,285,530 -4108712,195,204,399 -4108713,210,236,446 -4108714,196,246,442 -4108715,274,289,563 -4108716,237,236,473 -4108717,411,412,823 -4108718,243,250,493 -4108719,183,211,394 -4108720,97,121,218 -4108721,315,298,613 -4108722,174,160,334 -4108723,334,312,646 -4108724,303,299,602 -4108725,180,211,391 -4108726,161,185,346 -4108727,181,164,345 -4108728,165,170,335 -4108729,194,202,396 -4108730,264,253,517 -4108731,158,153,311 -4108732,212,211,423 -4108733,216,218,434 -4108734,252,236,488 -4108735,235,241,476 -4108736,284,289,573 -4108737,795,857,1652 -4108738,117,101,218 -4108801,182,227,409 -4108802,189,179,368 -4108803,193,208,401 -4108804,242,266,508 -4108805,122,128,250 -4108806,82,74,156 -4108807,164,161,325 -4108808,194,176,370 -4108809,109,116,225 -4108810,150,123,273 -4108901,0,0,0 -4108902,284,285,569 -4108903,269,332,601 -4108904,228,286,514 -4108905,207,210,417 -4108906,197,202,399 -4108907,167,204,371 -4108908,235,238,473 -4108909,198,161,359 -4108910,111,106,217 -4108911,213,219,432 -4108912,200,181,381 -4108913,204,216,420 -4108914,166,195,361 -4108915,220,218,438 -4108916,268,242,510 -4108917,258,244,502 -4108918,110,111,221 -4108919,217,217,434 -4108920,376,403,779 -4108921,153,166,319 -4108922,214,278,492 -4108923,275,281,556 -4108924,144,146,290 -4108925,175,190,365 -4108926,183,186,369 -4108927,135,162,297 -4108928,0,0,0 -4109001,140,129,269 -4109002,172,163,335 -4109003,257,274,531 -4109004,230,229,459 -4109005,201,196,397 -4109006,121,135,256 -4109007,192,177,369 -4109008,235,225,460 -4109009,206,209,415 -4109010,224,238,462 -4109011,132,142,274 -4109012,176,203,379 -4109013,262,282,544 -4109014,248,242,490 -4109015,198,203,401 -4109016,216,198,414 -4109017,123,123,246 -4109018,84,126,210 -4109019,152,155,307 -4109101,182,240,422 -4109102,204,234,438 -4109103,239,260,499 -4109104,219,218,437 -4109105,176,174,350 -4109106,234,253,487 -4109107,181,187,368 -4109108,176,150,326 -4109109,147,160,307 -4109110,146,161,307 -4109111,216,214,430 -4109112,213,223,436 -4109113,321,365,686 -4109114,197,204,401 -4109115,258,269,527 -4109116,162,158,320 -4109117,312,314,626 -4109118,296,295,591 -4109119,335,348,683 -4109120,168,136,304 -4109121,198,209,407 -4109122,300,322,622 -4109123,350,282,632 -4109124,142,151,293 -4109125,178,215,393 -4109126,292,308,600 -4109127,180,253,433 -4109128,212,246,458 -4109129,211,228,439 -4109130,211,236,447 -4109201,307,299,606 -4109202,212,217,429 -4109203,104,110,214 -4109204,191,205,396 -4109205,172,182,354 -4109206,209,241,450 -4109207,188,200,388 -4109208,159,168,327 -4109209,227,250,477 -4109210,323,323,646 -4109211,170,169,339 -4109212,142,138,280 -4109213,213,201,414 -4109214,228,231,459 -4109215,194,227,421 -4109216,203,183,386 -4109217,137,145,282 -4109218,299,292,591 -4109219,235,227,462 -4109220,309,307,616 -4109221,250,259,509 -4109222,305,292,597 -4109223,127,124,251 -4109224,190,194,384 -4109225,209,245,454 -4109226,166,156,322 -4109227,161,130,291 -4109228,110,106,216 -4109229,174,197,371 -4109230,149,169,318 -4109231,177,181,358 -4109232,184,178,362 -4109233,262,206,468 -4109234,247,236,483 -4109301,232,254,486 -4109302,294,291,585 -4109303,81,77,158 -4109304,187,198,385 -4109305,331,354,685 -4109306,210,199,409 -4109307,242,256,498 -4109308,166,164,330 -4109309,206,198,404 -4109310,169,184,353 -4109311,247,252,499 -4109312,158,170,328 -4109313,156,154,310 -4109314,189,168,357 -4109315,162,179,341 -4109316,253,261,514 -4109317,188,195,383 -4109318,127,108,235 -4109319,197,167,364 -4109320,174,193,367 -4109321,229,237,466 -4109322,163,162,325 -4109323,266,232,498 -4109324,199,182,381 -4109325,158,155,313 -4109326,123,119,242 -4109327,272,265,537 -4109328,195,207,402 -4109329,177,160,337 -4109330,124,110,234 -4109331,143,128,271 -4109332,152,157,309 -4109333,170,172,342 -4109334,189,175,364 -4109335,264,262,526 -4109336,139,135,274 -4109337,185,214,399 -4109338,163,163,326 -4109339,166,199,365 -4109340,188,181,369 -4109341,145,161,306 -4109342,183,160,343 -4109343,166,164,330 -4109344,174,227,401 -4109401,254,264,518 -4109402,191,189,380 -4109403,197,207,404 -4109404,284,320,604 -4109405,239,236,475 -4109406,217,261,478 -4109407,322,318,640 -4109408,319,406,725 -4109409,0,0,0 -4109410,3,0,3 -4109411,231,252,483 -4109412,162,171,333 -4109413,146,168,314 -4109414,165,179,344 -4109501,0,0,0 -4109502,183,189,372 -4109503,246,295,541 -4109504,186,219,405 -4109505,276,278,554 -4109506,191,262,453 -4109507,138,128,266 -4109508,165,196,361 -4109509,293,306,599 -4109510,182,202,384 -4109511,271,346,617 -4109512,243,260,503 -4109513,186,170,356 -4109514,142,144,286 -4109515,174,193,367 -4109516,252,235,487 -4109517,0,0,0 -4109518,99,146,245 -4109519,203,249,452 -4109520,169,168,337 -4109521,228,279,507 -4109522,199,223,422 -4109523,242,264,506 -4109524,216,249,465 -4109525,263,257,520 -4109526,138,150,288 -4109527,150,160,310 -4109528,160,182,342 -4109529,206,219,425 -4109530,236,311,547 -4109531,203,246,449 -4109532,253,226,479 -4109533,193,204,397 -4109534,104,100,204 -4109535,220,225,445 -4109536,137,145,282 -4109537,188,189,377 -4109538,106,174,280 -4109539,170,165,335 -4109540,118,164,282 -4109541,122,135,257 -4109601,184,251,435 -4109602,190,205,395 -4109603,164,210,374 -4109604,186,204,390 -4109605,327,321,648 -4109606,264,281,545 -4109607,141,127,268 -4109608,149,185,334 -4109609,223,293,516 -4109610,258,279,537 -4109611,127,135,262 -4109612,153,216,369 -4109613,147,188,335 -4109614,195,206,401 -4109615,162,143,305 -4109616,132,126,258 -4109617,210,238,448 -4109618,189,161,350 -4109619,256,276,532 -4109620,236,246,482 -4109621,255,284,539 -4109622,269,271,540 -4109623,196,210,406 -4109624,267,274,541 -4109625,284,292,576 -4109626,246,263,509 -4109627,139,125,264 -4109628,139,156,295 -4109629,177,182,359 -4109630,159,146,305 -4109631,192,201,393 -4109632,172,160,332 -4109633,145,187,332 -4109634,219,240,459 -4109701,142,173,315 -4109702,224,233,457 -4109703,216,180,396 -4109704,220,277,497 -4109705,240,232,472 -4109706,175,205,380 -4109707,236,231,467 -4109708,125,131,256 -4109709,238,246,484 -4109710,171,164,335 -4109711,49,55,104 -4109712,266,264,530 -4109713,216,190,406 -4109714,139,154,293 -4109715,259,260,519 -4109716,178,177,355 -4109717,206,201,407 -4109718,372,364,736 -4109719,218,205,423 -4109720,234,277,511 -4109721,321,345,666 -4109722,150,144,294 -4109723,327,354,681 -4109724,168,191,359 -4109725,179,177,356 -4109726,227,244,471 -4109727,154,177,331 -4109728,177,192,369 -4109729,254,236,490 -4109730,231,234,465 -4109731,286,278,564 -4109732,196,178,374 -4109733,155,160,315 -4109734,154,148,302 -4109735,140,117,257 -4109736,172,190,362 -4109737,157,150,307 -4109801,0,0,0 -4109901,185,163,348 -4109902,131,196,327 -4109903,180,165,345 -4109904,198,201,399 -4109905,267,252,519 -4109906,140,138,278 -4109907,196,220,416 -4109908,202,221,423 -4109909,197,192,389 -4109910,183,211,394 -4109911,274,266,540 -4109912,252,287,539 -4109913,266,295,561 -4109914,299,282,581 -4109915,250,270,520 -4109916,143,139,282 -4109917,181,194,375 -4109918,190,195,385 -4109919,305,292,597 -4109920,181,179,360 -4109921,213,206,419 -4109922,0,0,0 -4109923,140,124,264 -4109924,159,152,311 -4109925,295,255,550 -4109926,261,247,508 -4109927,136,149,285 -4109928,249,272,521 -4109929,134,160,294 -4109930,153,190,343 -4109931,180,173,353 -4109932,221,215,436 -4109933,236,260,496 -4109934,245,298,543 -4109935,184,183,367 -4109936,0,0,0 -4109937,109,117,226 -4110001,138,158,296 -4110002,163,190,353 -4110003,173,172,345 -4110004,143,140,283 -4110005,144,142,286 -4110006,126,133,259 -4110007,198,234,432 -4110008,216,221,437 -4110009,207,200,407 -4110010,219,243,462 -4110011,236,225,461 -4110012,171,162,333 -4110013,209,223,432 -4110014,135,155,290 -4110015,249,220,469 -4110016,180,157,337 -4110017,141,152,293 -4110018,164,193,357 -4110019,216,212,428 -4110020,205,211,416 -4110021,244,219,463 -4110022,16,8,24 -4110023,259,262,521 -4110024,224,243,467 -4110025,269,271,540 -4110026,230,267,497 -4110027,350,436,786 -4110028,0,0,0 -4110029,161,192,353 -4110030,196,250,446 -4110031,147,150,297 -4110032,129,132,261 -4110033,237,237,474 -4110034,158,215,373 -4110035,133,137,270 -4110036,185,195,380 -4110037,130,117,247 -4110038,146,142,288 -4110101,193,152,345 -4110102,228,191,419 -4110103,116,97,213 -4110104,210,223,433 -4110105,282,288,570 -4110106,145,121,266 -4110107,272,285,557 -4110108,274,260,534 -4110109,156,165,321 -4110110,183,180,363 -4110111,233,228,461 -4110112,131,191,322 -4110113,201,181,382 -4110114,214,222,436 -4110115,193,203,396 -4110116,79,92,171 -4110117,305,253,558 -4110118,302,293,595 -4110119,132,149,281 -4110120,263,264,527 -4110121,303,324,627 -4110122,7,3,10 -4110123,203,200,403 -4110124,138,130,268 -4110125,242,239,481 -4110126,259,283,542 -4110127,162,126,288 -4110201,136,150,286 -4110202,5,0,5 -4110203,63,72,135 -4110204,169,173,342 -4110205,185,188,373 -4110206,191,223,414 -4110207,224,259,483 -4110208,179,213,392 -4110209,210,224,434 -4110210,210,239,449 -4110211,719,746,1465 -4110212,175,176,351 -4110213,268,188,456 -4110214,157,168,325 -4110215,264,248,512 -4110216,234,216,450 -4110217,279,282,561 -4110218,79,97,176 -4110219,0,0,0 -4110220,558,550,1108 -4110221,12,0,12 -4110222,258,279,537 -4110223,205,187,392 -4110224,3,0,3 -4110225,283,271,554 -4110226,182,168,350 -4110227,291,261,552 -4110228,254,228,482 -4110229,209,210,419 -4110230,0,0,0 -4110231,202,218,420 -4110232,182,217,399 -4110233,199,209,408 -4110234,247,256,503 -4110235,234,205,439 -4110236,197,185,382 -4110237,216,200,416 -4110238,336,360,696 -4110239,181,191,372 -4110240,256,253,509 -4110241,174,192,366 -4110242,169,165,334 -4110301,7,3,10 -4110401,0,0,0 -4110501,85,92,177 -4110502,204,185,389 -4110503,284,277,561 -4110504,182,216,398 -4110505,205,222,427 -4110506,194,200,394 -4110507,120,122,242 -4110601,255,302,557 -4110602,242,253,495 -4110603,204,218,422 -4110604,208,206,414 -4110605,227,191,418 -4110606,225,226,451 -4110607,232,228,460 -4110608,350,293,643 -4110609,190,197,387 -4110610,237,228,465 -4110611,176,184,360 -4110612,181,208,389 -4110613,222,219,441 -4110614,138,125,263 -4110615,155,145,300 -4110616,214,206,420 -4110617,237,248,485 -4110618,215,250,465 -4110619,188,194,382 -4110620,244,262,506 -4110621,139,157,296 -4110622,224,228,452 -4110623,230,299,529 -4110624,135,140,275 -4110625,169,212,381 -4110626,229,264,493 -4110627,228,276,504 -4110628,116,129,245 -4110629,151,176,327 -4110701,0,0,0 -4110702,255,204,459 -4110703,192,197,389 -4110704,213,308,521 -4110705,73,91,164 -4110706,99,103,202 -4110707,165,148,313 -4110708,306,326,632 -4110709,192,208,400 -4110710,210,220,430 -4110711,212,216,428 -4110712,0,0,0 -4110713,200,201,401 -4110714,144,162,306 -4110715,266,290,556 -4110716,193,173,366 -4110717,291,358,649 -4110718,314,302,616 -4110719,276,292,568 -4110720,128,141,269 -4110721,241,274,515 -4110722,332,345,677 -4110723,259,286,545 -4110724,272,293,565 -4110725,169,180,349 -4110726,104,147,251 -4110727,208,239,447 -4110728,280,228,508 -4110729,255,296,551 -4110730,305,330,635 -4110731,247,266,513 -4110732,152,146,298 -4110733,288,267,555 -4110734,167,176,343 -4110735,241,251,492 -4110736,359,321,680 -4110737,291,272,563 -4110738,261,253,514 -4110739,5,3,8 -4110740,176,213,389 -4110741,214,230,444 -4110742,194,225,419 -4110743,216,204,420 -4110744,182,195,377 -4110745,136,266,402 -4110746,182,181,363 -4110747,200,210,410 -4110748,142,177,319 -4110749,223,206,429 -4110750,160,179,339 -4110751,216,237,453 -4110752,236,284,520 -4110753,170,176,346 -4110754,100,128,228 -4110755,115,103,218 -4110801,236,209,445 -4110802,227,202,429 -4110803,195,204,399 -4110804,255,238,493 -4110805,198,240,438 -4110806,195,189,384 -4110807,161,159,320 -4110808,245,267,512 -4110809,0,0,0 -4110810,211,201,412 -4110811,273,236,509 -4110812,252,249,501 -4110813,253,262,515 -4110814,202,218,420 -4110815,274,262,536 -4110816,183,226,409 -4110817,195,195,390 -4110818,296,327,623 -4110819,319,350,669 -4110820,309,321,630 -4110821,247,237,484 -4110822,330,337,667 -4110823,154,170,324 -4110824,195,185,380 -4110825,289,284,573 -4110826,193,193,386 -4110827,172,174,346 -4110828,225,197,422 -4110829,271,312,583 -4110830,189,227,416 -4110831,189,162,351 -4110832,129,146,275 -4110833,132,115,247 -4110834,151,158,309 -4110835,139,144,283 -4110836,184,181,365 -4110837,164,178,342 -4110901,175,178,353 -4110902,227,241,468 -4110903,104,102,206 -4110904,156,162,318 -4110905,0,0,0 -4110906,210,224,434 -4110907,222,242,464 -4110908,163,217,380 -4110909,207,195,402 -4110910,224,234,458 -4110911,188,181,369 -4110912,8,4,12 -4110913,201,178,379 -4110914,123,118,241 -4111001,191,193,384 -4111002,224,248,472 -4111003,166,198,364 -4111004,207,204,411 -4111005,102,93,195 -4111006,148,152,300 -4111007,120,109,229 -4111008,169,168,337 -4111009,202,208,410 -4111010,134,139,273 -4111011,153,159,312 -4111012,177,195,372 -4111013,182,188,370 -4111014,166,177,343 -4111015,184,192,376 -4111016,165,145,310 -4111017,235,229,464 -4111101,154,152,306 -4111102,155,146,301 -4111103,204,208,412 -4111104,136,151,287 -4111105,119,127,246 -4111106,132,117,249 -4111107,100,75,175 -4111108,264,259,523 -4111109,188,184,372 -4111110,142,137,279 -4111111,195,169,364 -4111112,188,172,360 -4111113,138,112,250 -4111114,217,213,430 -4111115,108,119,227 -4111116,226,174,400 -4111117,138,120,258 -4111118,245,233,478 -4111119,106,112,218 -4111120,139,149,288 -4111121,165,162,327 -4111122,172,181,353 -4111123,219,197,416 -4111124,138,122,260 -4111125,182,158,340 -4111201,128,115,243 -4111202,152,150,302 -4111203,86,78,164 -4111204,231,210,441 -4111205,120,137,257 -4111206,243,263,506 -4111207,213,201,414 -4111208,157,132,289 -4111209,91,76,167 -4111210,143,133,276 -4111211,139,133,272 -4111212,253,215,468 -4111213,154,140,294 -4111214,312,320,632 -4111215,171,182,353 -4111216,212,207,419 -4111217,94,93,187 -4111301,173,191,364 -4111302,183,204,387 -4111303,153,138,291 -4111304,116,118,234 -4111305,201,176,377 -4111306,174,173,347 -4111307,199,135,334 -4111308,184,191,375 -4111309,99,96,195 -4111310,107,92,199 -4111401,141,119,260 -4111402,158,170,328 -4111403,88,75,163 -4111404,168,194,362 -4111405,161,172,333 -4111406,196,196,392 -4111407,204,213,417 -4111408,112,124,236 -4111409,480,468,948 -4111410,217,279,496 -4111411,175,201,376 -4111412,272,287,559 -4111413,174,179,353 -4111414,127,158,285 -4111415,226,229,455 -4111501,207,201,408 -4111502,231,345,576 -4111503,376,369,745 -4111504,324,341,665 -4111505,99,97,196 -4111506,218,214,432 -4111507,227,233,460 -4111508,200,189,389 -4111509,153,160,313 -4111510,125,105,230 -4111601,117,113,230 -4111602,176,201,377 -4111603,99,112,211 -4111604,138,160,298 -4111605,200,170,370 -4111606,261,336,597 -4111607,139,161,300 -4111608,136,110,246 -4111609,173,178,351 -4111610,163,161,324 -4111611,326,306,632 -4111701,197,186,383 -4111702,97,110,207 -4111703,241,210,451 -4111704,117,93,210 -4111705,77,71,148 -4111706,105,94,199 -4111707,131,122,253 -4111708,191,179,370 -4111709,145,181,326 -4111710,108,152,260 -4111711,99,122,221 -4111712,202,189,391 -4111713,193,196,389 -4111714,115,109,224 -4111715,163,148,311 -4111716,204,198,402 -4111801,147,153,300 -4111802,113,125,238 -4111803,208,192,400 -4111804,241,209,450 -4111805,174,162,336 -4111806,76,79,155 -4111807,274,234,508 -4111808,178,177,355 -4111809,124,105,229 -4111810,119,116,235 -4111811,138,178,316 -4111812,148,171,319 -4111813,0,0,0 -4111814,166,187,353 -4111901,191,209,400 -4111902,93,95,188 -4111903,126,99,225 -4111904,191,186,377 -4111905,231,230,461 -4111906,196,166,362 -4111907,185,216,401 -4111908,209,217,426 -4111909,321,343,664 -4111910,308,248,556 -4111911,191,198,389 -4111912,168,144,312 -4111913,150,125,275 -4111914,182,177,359 -4111915,140,132,272 -4111916,162,174,336 -4111917,134,131,265 -4111918,172,142,314 -4111919,111,93,204 -4111920,79,70,149 -4111921,232,209,441 -4111922,75,55,130 -4111923,278,310,588 -4111924,186,210,396 -4111925,124,94,218 -4111926,125,116,241 -4111927,129,114,243 -4112001,157,136,293 -4112002,97,84,181 -4112003,91,88,179 -4112004,165,143,308 -4112005,108,97,205 -4112006,108,99,207 -4112007,151,146,297 -4112008,109,112,221 -4112009,194,212,406 -4112010,139,168,307 -4112011,91,89,180 -4112012,317,293,610 -4112013,259,240,499 -4112014,120,106,226 -4112015,132,131,263 -4112016,91,81,172 -4112101,166,162,328 -4112102,118,118,236 -4112103,134,127,261 -4112104,237,227,464 -4112105,126,116,242 -4112106,241,252,493 -4112107,156,149,305 -4112108,109,109,218 -4112109,154,141,295 -4112110,124,101,225 -4112111,163,139,302 -4112112,167,158,325 -4112113,204,203,407 -4112114,147,181,328 -4112115,138,120,258 -4112116,101,107,208 -4112117,160,159,319 -4112118,97,108,205 -4112201,158,135,293 -4112202,0,0,0 -4112203,110,131,241 -4112204,169,188,357 -4112205,272,256,528 -4112206,3,3,6 -4112207,234,205,439 -4112208,258,267,525 -4112209,212,228,440 -4112210,160,167,327 -4112211,168,179,347 -4112212,129,143,272 -4112213,115,105,220 -4112214,172,163,335 -4112215,235,249,484 -4112216,220,239,459 -4112217,143,149,292 -4112218,0,0,0 -4112219,256,253,509 -4112220,94,83,177 -4112221,111,116,227 -4112222,166,145,311 -4112223,169,173,342 -4112224,231,260,491 -4112225,188,204,392 -4112226,224,295,519 -4112227,363,353,716 -4112228,139,132,271 -4112229,264,316,580 -4112230,143,143,286 -4112231,110,123,233 -4112232,142,131,273 -4112233,199,241,440 -4112234,205,224,429 -4112235,115,144,259 -4112236,170,155,325 -4112237,111,105,216 -4112238,140,142,282 -4112239,117,116,233 -4112240,0,0,0 -4112241,114,138,252 -4112242,84,97,181 -4112243,139,138,277 -4112244,129,149,278 -4112301,156,186,342 -4112302,136,162,298 -4112303,311,331,642 -4112304,212,167,379 -4112305,110,105,215 -4112306,98,91,189 -4112307,184,154,338 -4112308,157,143,300 -4112309,181,183,364 -4112310,88,83,171 -4112401,0,0,0 -4112402,50,36,86 -4112403,272,272,544 -4112404,148,141,289 -4112405,166,175,341 -4112406,262,267,529 -4112407,218,223,441 -4112408,143,152,295 -4112409,159,213,372 -4112410,216,225,441 -4112411,164,178,342 -4112412,232,229,461 -4112413,212,196,408 -4112414,270,247,517 -4112501,87,133,220 -4112502,255,293,548 -4112503,179,169,348 -4112504,217,239,456 -4112505,135,149,284 -4112506,328,331,659 -4112507,154,169,323 -4112508,179,181,360 -4112509,177,172,349 -4112510,109,119,228 -4112511,123,154,277 -4112512,92,94,186 -4112601,110,134,244 -4112602,162,158,320 -4112603,208,195,403 -4112604,155,173,328 -4112605,137,127,264 -4112606,281,266,547 -4112607,182,182,364 -4112608,176,216,392 -4112609,240,231,471 -4112610,25,14,39 -4112611,151,144,295 -4112701,103,110,213 -4112702,135,131,266 -4112703,186,207,393 -4112704,179,174,353 -4112705,247,243,490 -4112706,178,214,392 -4112707,175,167,342 -4112708,304,355,659 -4112709,154,147,301 -4112710,136,141,277 -4112711,103,90,193 -4112712,264,206,470 -4112713,188,178,366 -4112714,205,185,390 -4112715,160,152,312 -4112716,161,155,316 -4112717,218,219,437 -4112718,266,250,516 -4112719,102,92,194 -4112720,33,30,63 -4112721,55,63,118 -4112801,140,101,241 -4112802,267,224,491 -4112803,100,98,198 -4112804,131,115,246 -4112805,107,113,220 -4112806,151,154,305 -4112807,199,179,378 -4112808,271,272,543 -4112809,0,0,0 -4112810,68,59,127 -4112811,246,220,466 -4112812,308,300,608 -4112813,93,66,159 -4112901,178,176,354 -4112902,252,272,524 -4112903,203,219,422 -4112904,298,283,581 -4112905,243,217,460 -4112906,145,157,302 -4112907,0,0,0 -4113001,142,121,263 -4113002,98,101,199 -4113003,135,138,273 -4113004,119,111,230 -4113005,179,149,328 -4113006,111,109,220 -4113007,99,97,196 -4113008,277,226,503 -4113009,65,71,136 -4113010,175,139,314 -4113011,187,205,392 -4113012,222,229,451 -4113013,175,177,352 -4113014,0,0,0 -4113015,0,0,0 -4113016,251,206,457 -4113017,87,84,171 -4113018,149,175,324 -4113019,141,160,301 -4113020,191,162,353 -4113021,158,147,305 -4113022,180,170,350 -4113023,121,125,246 -4113101,247,230,477 -4113102,125,102,227 -4113103,155,116,271 -4113104,270,275,545 -4113105,200,199,399 -4113106,119,97,216 -4113107,256,272,528 -4113108,107,119,226 -4113109,132,142,274 -4113110,208,182,390 -4113111,144,117,261 -4113112,168,131,299 -4113113,73,51,124 -4113201,269,288,557 -4113202,184,172,356 -4113203,173,149,322 -4113204,223,209,432 -4113205,162,138,300 -4113206,155,136,291 -4113301,200,204,404 -4113302,226,274,500 -4113303,201,179,380 -4113304,223,210,433 -4113305,243,235,478 -4113306,124,185,309 -4113307,208,213,421 -4113308,152,142,294 -4113309,136,133,269 -4113310,263,262,525 -4113311,257,282,539 -4113312,301,318,619 -4113313,157,145,302 -4113314,137,174,311 -4113315,281,294,575 -4113316,235,264,499 -4113317,220,201,421 -4113318,126,128,254 -4113319,163,136,299 -4113320,169,175,344 -4113321,153,187,340 -4113322,198,226,424 -4113323,105,131,236 -4113324,168,187,355 -4113325,242,234,476 -4113326,87,93,180 -4113327,143,123,266 -4113328,114,147,261 -4113329,125,134,259 -4113330,153,155,308 -4113331,205,67,272 -4113332,164,173,337 -4113333,210,227,437 -4113334,152,124,276 -4113335,0,0,0 -4113336,71,68,139 -4113337,263,255,518 -4113338,182,174,356 -4113339,148,150,298 -4113340,226,290,516 -4113341,167,199,366 -4113342,201,208,409 -4113401,182,168,350 -4113402,173,163,336 -4113403,154,164,318 -4113404,333,291,624 -4113405,249,215,464 -4113406,97,98,195 -4113407,267,234,501 -4113408,66,76,142 -4113409,200,143,343 -4113410,131,162,293 -4113501,38,35,73 -4113502,28,10,38 -4113601,219,178,397 -4113602,137,131,268 -4113603,322,313,635 -4113604,283,279,562 -4113605,169,171,340 -4113606,222,182,404 -4113607,229,215,444 -4113608,241,253,494 -4113609,189,174,363 -4113610,0,0,0 -4113611,179,177,356 -4113612,217,215,432 -4113613,196,227,423 -4113614,283,324,607 -4113615,261,253,514 -4113616,440,436,876 -4113617,0,0,0 -4113618,148,133,281 -4113619,230,275,505 -4113620,209,172,381 -4113621,157,137,294 -4113622,138,114,252 -4113623,212,212,424 -4113624,169,157,326 -4113625,171,163,334 -4113626,190,185,375 -4113627,202,204,406 -4113628,179,183,362 -4113629,188,222,410 -4113630,291,282,573 -4113631,177,173,350 -4113632,189,191,380 -4113633,171,154,325 -4113634,161,184,345 -4113635,143,111,254 -4113636,140,135,275 -4113637,245,240,485 -4113638,258,261,519 -4113639,217,201,418 -4113640,194,164,358 -4113641,193,154,347 -4113642,175,192,367 -4113643,298,302,600 -4113644,236,228,464 -4113645,193,174,367 -4113646,175,167,342 -4113647,25,27,52 -4113648,241,232,473 -4113649,11,10,21 -4113650,0,0,0 -4113651,174,177,351 -4113652,132,126,258 -4113653,209,178,387 -4113654,7,0,7 -4113655,187,191,378 -4113656,94,87,181 -4113657,181,177,358 -4113658,187,232,419 -4113659,224,205,429 -4113660,222,204,426 -4113701,0,0,0 -4113801,35,39,74 -4113802,0,0,0 -4113803,58,57,115 -4113804,3,6,9 -4113805,0,0,0 -4113806,53,37,90 -4113807,78,66,144 -4113808,0,0,0 -4113809,43,23,66 -4113810,9,5,14 -4113811,52,65,117 -4113812,237,230,467 -4113813,233,271,504 -4113814,90,105,195 -4113815,140,141,281 -4113816,141,169,310 -4113817,26,22,48 -4113901,124,98,222 -4113902,14,13,27 -4113903,172,151,323 -4113904,203,131,334 -4113905,105,88,193 -4113906,76,41,117 -4113907,125,113,238 -4113908,131,112,243 -4114001,22,25,47 -4114002,45,36,81 -4114003,161,164,325 -4114004,203,199,402 -4114005,152,129,281 -4114006,239,240,479 -4114007,125,122,247 -4114008,134,115,249 -4114009,85,81,166 -4114101,327,265,592 -4114102,80,86,166 -4114103,38,30,68 -4114104,52,51,103 -4114105,296,209,505 -4114106,465,196,661 -4114107,451,183,634 -4114108,287,205,492 -4114109,119,97,216 -4114201,206,223,429 -4114202,191,198,389 -4114203,202,174,376 -4114204,262,271,533 -4114205,93,101,194 -4114206,186,169,355 -4114207,406,55,461 -4114208,153,178,331 -4114209,297,278,575 -4114210,50,47,97 -4114211,143,157,300 -4114212,231,243,474 -4114213,161,181,342 -4114214,264,298,562 -4114215,174,162,336 -4114216,170,162,332 -4114217,28,28,56 -4114218,196,196,392 -4114219,232,239,471 -4114220,241,256,497 -4114221,172,220,392 -4114222,288,318,606 -4114223,177,143,320 -4114224,150,142,292 -4114225,274,294,568 -4114226,166,173,339 -4114227,241,219,460 -4114228,226,229,455 -4114229,89,84,173 -4114230,182,212,394 -4114231,207,202,409 -4114232,238,213,451 -4114233,107,119,226 -4114234,293,312,605 -4114235,4,0,4 -4114236,224,229,453 -4114301,299,232,531 -4114302,244,219,463 -4114303,260,91,351 -4114304,176,144,320 -4114305,115,102,217 -4114306,453,420,873 -4114307,287,255,542 -4114308,420,27,447 -4114309,19,0,19 -4114310,508,441,949 -4114401,134,136,270 -4114402,153,157,310 -4114403,176,166,342 -4114404,68,70,138 -4114405,210,239,449 -4114406,145,139,284 -4114407,75,94,169 -4114408,188,212,400 -4114409,190,218,408 -4114410,118,132,250 -4114411,151,162,313 -4114412,157,221,378 -4114413,163,164,327 -4114414,252,239,491 -4114415,225,236,461 -4114416,219,242,461 -4114417,130,127,257 -4114418,234,265,499 -4114419,148,131,279 -4114420,142,159,301 -4114421,154,155,309 -4114422,230,223,453 -4114423,329,364,693 -4114424,263,257,520 -4114425,94,114,208 -4114426,138,153,291 -4114427,155,211,366 -4114428,215,268,483 -4114429,147,170,317 -4114430,0,5,5 -4114501,100,101,201 -4114502,134,142,276 -4114503,222,185,407 -4114504,118,118,236 -4114505,235,225,460 -4114506,127,156,283 -4114507,142,154,296 -4114508,158,131,289 -4114509,240,232,472 -4114510,137,122,259 -4114511,78,64,142 -4114512,293,267,560 -4114513,166,154,320 -4114514,107,108,215 -4114601,158,164,322 -4114602,171,191,362 -4114603,151,138,289 -4114604,306,334,640 -4114605,229,237,466 -4114606,160,194,354 -4114607,347,377,724 -4114608,117,168,285 -4114609,258,278,536 -4114610,179,215,394 -4114611,235,241,476 -4114612,239,300,539 -4114613,131,127,258 -4114614,296,328,624 -4114615,94,92,186 -4114701,148,144,292 -4114702,162,178,340 -4114703,200,215,415 -4114704,253,239,492 -4114705,208,212,420 -4114706,98,78,176 -4114707,68,63,131 -4114708,364,362,726 -4114709,211,187,398 -4114710,118,122,240 -4114711,134,114,248 -4114712,190,180,370 -4114713,233,219,452 -4114714,207,197,404 -4114715,290,277,567 -4114716,149,131,280 -4114717,188,188,376 -4114718,162,149,311 -4114801,97,111,208 -4114802,222,222,444 -4114803,152,169,321 -4114804,223,351,574 -4114805,238,257,495 -4114806,215,237,452 -4114807,190,228,418 -4114808,206,230,436 -4114809,146,160,306 -4114810,231,285,516 -4114811,156,173,329 -4114812,154,156,310 -4114813,314,341,655 -4114814,276,295,571 -4114815,204,227,431 -4114816,281,295,576 -4114817,170,184,354 -4114818,209,230,439 -4114819,336,357,693 -4114820,111,112,223 -4114821,329,355,684 -4114822,289,334,623 -4114823,218,286,504 -4114824,261,285,546 -4114825,181,145,326 -4114826,196,186,382 -4114827,183,238,421 -4114828,210,229,439 -4114829,204,272,476 -4114830,130,125,255 -4114901,153,154,307 -4114902,111,91,202 -4114903,166,136,302 -4114904,186,193,379 -4114905,132,149,281 -4114906,198,236,434 -4114907,185,180,365 -4114908,275,291,566 -4114909,119,147,266 -4114910,221,249,470 -4114911,218,210,428 -4114912,255,242,497 -4114913,113,106,219 -4114914,152,127,279 -4115001,139,135,274 -4115002,199,179,378 -4115003,132,128,260 -4115004,205,181,386 -4115005,157,147,304 -4115006,169,148,317 -4115007,185,169,354 -4115008,118,118,236 -4115009,403,230,633 -4115010,193,161,354 -4115011,186,149,335 -4115012,117,122,239 -4115013,20,22,42 -4115014,229,221,450 -4115015,98,79,177 -4115016,112,71,183 -4115017,102,105,207 -4115018,136,132,268 -4115101,185,204,389 -4115102,202,178,380 -4115103,95,92,187 -4115104,173,169,342 -4115105,111,97,208 -4115106,132,161,293 -4115107,88,106,194 -4115108,164,121,285 -4115109,216,175,391 -4115110,32,41,73 -4115111,56,56,112 -4115112,225,209,434 -4115113,133,120,253 -4115114,70,77,147 -4115201,118,107,225 -4115202,182,188,370 -4115203,133,144,277 -4115204,132,132,264 -4115205,141,175,316 -4115206,129,140,269 -4115207,71,92,163 -4115208,244,293,537 -4115209,148,183,331 -4115210,251,240,491 -4115211,131,120,251 -4115212,127,127,254 -4115213,229,225,454 -4115214,168,163,331 -4115215,176,206,382 -4115216,185,179,364 -4115301,137,125,262 -4115302,167,191,358 -4115303,23,11,34 -4115304,317,429,746 -4115305,128,137,265 -4115306,224,238,462 -4115307,132,145,277 -4115308,180,201,381 -4115309,178,151,329 -4115310,256,259,515 -4115311,187,194,381 -4115312,262,259,521 -4115313,216,221,437 -4115314,206,226,432 -4115315,253,254,507 -4115316,268,294,562 -4115317,273,266,539 -4115318,346,376,722 -4115319,285,304,589 -4115320,207,247,454 -4115321,159,170,329 -4115322,154,173,327 -4115323,269,289,558 -4115324,284,248,532 -4115325,254,256,510 -4115326,211,236,447 -4115327,212,244,456 -4115328,259,286,545 -4115329,211,232,443 -4115330,272,252,524 -4115331,259,283,542 -4115332,127,161,288 -4115333,268,284,552 -4115334,204,213,417 -4115335,331,349,680 -4115336,220,199,419 -4115337,156,156,312 -4115338,146,150,296 -4115339,311,300,611 -4115340,230,257,487 -4115341,233,264,497 -4115342,146,198,344 -4115343,200,217,417 -4115344,213,211,424 -4115345,227,250,477 -4115346,130,136,266 -4115347,131,200,331 -4115348,246,254,500 -4115349,161,157,318 -4115350,106,106,212 -4115351,133,130,263 -4115352,279,297,576 -4115353,257,261,518 -4115354,127,119,246 -4115355,264,290,554 -4115356,191,218,409 -4115357,119,141,260 -4115358,264,282,546 -4115359,125,127,252 -4115360,208,183,391 -4115361,156,155,311 -4115362,229,210,439 -4115363,145,151,296 -4115364,158,151,309 -4115365,146,141,287 -4115366,134,135,269 -4115401,165,167,332 -4115402,206,220,426 -4115403,128,128,256 -4115404,225,207,432 -4115405,0,0,0 -4115406,0,0,0 -4115407,192,207,399 -4115408,171,163,334 -4115409,178,175,353 -4115410,150,104,254 -4115411,143,153,296 -4115412,257,237,494 -4115413,195,188,383 -4115414,187,173,360 -4115415,161,170,331 -4115416,147,147,294 -4115417,162,155,317 -4115418,228,203,431 -4115501,340,315,655 -4115502,209,177,386 -4115503,181,168,349 -4115504,136,124,260 -4115505,120,127,247 -4115506,284,249,533 -4115601,149,122,271 -4115602,268,246,514 -4115603,128,163,291 -4115604,200,173,373 -4115605,130,148,278 -4115606,196,195,391 -4115607,183,152,335 -4115608,193,179,372 -4115609,135,114,249 -4115701,74,45,119 -4115702,200,220,420 -4115703,152,121,273 -4115704,307,249,556 -4115705,111,100,211 -4115706,183,156,339 -4115707,126,123,249 -4115708,115,126,241 -4115709,124,120,244 -4115710,143,134,277 -4115711,131,125,256 -4115712,140,136,276 -4115713,175,180,355 -4115714,152,163,315 -4115715,140,157,297 -4115716,225,231,456 -4115717,90,76,166 -4115718,191,178,369 -4115719,249,215,464 -4115720,183,181,364 -4115721,171,146,317 -4115801,349,316,665 -4115802,107,86,193 -4115803,189,188,377 -4115804,193,189,382 -4115805,121,127,248 -4115806,127,137,264 -4115807,150,112,262 -4115808,184,153,337 -4115809,261,235,496 -4115901,71,77,148 -4115902,36,32,68 -4115903,0,0,0 -4115904,91,96,187 -4115905,84,64,148 -4115906,80,72,152 -4115907,155,183,338 -4115908,124,155,279 -4115909,195,266,461 -4115910,199,222,421 -4115911,223,196,419 -4115912,124,107,231 -4115913,168,143,311 -4115914,126,109,235 -4115915,112,97,209 -4115916,173,141,314 -4115917,229,203,432 -4115918,107,87,194 -4115919,4,4,8 -4115920,162,164,326 -4115921,131,122,253 -4115922,210,215,425 -4115923,133,133,266 -4115924,242,197,439 -4115925,144,125,269 -4116001,217,223,440 -4116002,233,242,475 -4116003,205,211,416 -4116004,138,185,323 -4116005,212,236,448 -4116006,230,238,468 -4116007,247,268,515 -4116008,168,210,378 -4116009,140,108,248 -4116010,190,199,389 -4116101,109,104,213 -4116102,250,287,537 -4116103,131,118,249 -4116104,141,129,270 -4116105,170,175,345 -4116106,168,162,330 -4116107,126,103,229 -4116108,83,78,161 -4116109,163,146,309 -4116110,239,173,412 -4116111,0,0,0 -4116201,69,55,124 -4116202,131,169,300 -4116203,92,90,182 -4116204,459,412,871 -4116205,271,268,539 -4116206,167,180,347 -4116207,261,332,593 -4116208,179,201,380 -4116209,225,224,449 -4116210,251,246,497 -4116211,214,175,389 -4116212,173,189,362 -4116213,83,115,198 -4116301,60,54,114 -4116302,102,97,199 -4116303,335,310,645 -4116304,64,55,119 -4116305,54,60,114 -4116306,138,131,269 -4116307,31,25,56 -4116308,88,83,171 -4116309,26,22,48 -4116401,156,123,279 -4116402,159,142,301 -4116403,238,240,478 -4116404,324,290,614 -4116405,170,170,340 -4116406,105,104,209 -4116407,285,249,534 -4116408,252,228,480 -4116409,208,241,449 -4116410,216,201,417 -4116411,129,139,268 -4116412,128,100,228 -4116413,316,283,599 -4116414,117,105,222 -4116415,44,30,74 -4116416,176,166,342 -4116501,327,352,679 -4116502,144,133,277 -4116503,193,220,413 -4116504,140,129,269 -4116505,233,261,494 -4116506,311,277,588 -4116507,162,167,329 -4116508,120,122,242 -4116509,227,263,490 -4116510,243,240,483 -4116511,149,124,273 -4116512,153,151,304 -4116513,239,286,525 -4116514,229,300,529 -4116515,219,251,470 -4116516,193,204,397 -4116517,164,163,327 -4116518,167,161,328 -4116519,273,321,594 -4116520,182,198,380 -4116521,219,222,441 -4116522,214,213,427 -4116523,209,221,430 -4116524,189,192,381 -4116525,0,0,0 -4116526,210,205,415 -4116527,200,192,392 -4116528,150,113,263 -4116529,246,226,472 -4116530,260,269,529 -4116531,273,332,605 -4116532,225,253,478 -4116533,244,239,483 -4116534,131,100,231 -4116535,120,129,249 -4116536,196,207,403 -4116537,324,0,324 -4116538,250,303,553 -4116539,306,308,614 -4116540,126,152,278 -4116541,170,185,355 -4116601,91,78,169 -4116602,308,257,565 -4116603,29,35,64 -4116604,139,134,273 -4116605,294,251,545 -4116606,385,323,708 -4116607,183,165,348 -4116608,243,226,469 -4116609,99,96,195 -4116610,33,31,64 -4116701,168,176,344 -4116702,199,248,447 -4116703,183,154,337 -4116704,101,105,206 -4116705,113,141,254 -4116706,75,65,140 -4116707,175,189,364 -4116708,115,153,268 -4116709,275,307,582 -4116710,278,320,598 -4116711,0,0,0 -4116712,169,169,338 -4116713,225,284,509 -4116801,223,196,419 -4116802,171,179,350 -4116803,145,128,273 -4116804,100,88,188 -4116805,163,146,309 -4116806,296,309,605 -4116807,3,3,6 -4116808,175,142,317 -4116809,163,161,324 -4116810,333,303,636 -4116811,329,313,642 -4116812,192,172,364 -4116813,229,190,419 -4116901,67,62,129 -4116902,198,242,440 -4116903,135,118,253 -4116904,117,103,220 -4116905,156,169,325 -4116906,139,155,294 -4116907,130,130,260 -4116908,115,127,242 -4116909,117,96,213 -4116910,327,272,599 -4116911,47,54,101 -4116912,171,139,310 -4116913,176,153,329 -4116914,232,242,474 -4116915,152,124,276 -4116916,151,130,281 -4116917,224,172,396 -4116918,204,188,392 -4117001,119,91,210 -4117002,312,129,441 -4117003,213,212,425 -4117004,210,201,411 -4117005,305,272,577 -4117006,160,125,285 -4117007,144,131,275 -4117008,200,179,379 -4117009,188,147,335 -4117010,205,178,383 -4117011,208,187,395 -4117012,128,115,243 -4117013,169,154,323 -4117014,222,219,441 -4117015,157,180,337 -4117016,131,123,254 -4117017,122,127,249 -4117018,138,212,350 -4949999,1779,1288,3067 -4979991,0,0,0 -4979992,0,0,0 -4979993,5,0,5 -5100101,170,164,334 -5100102,165,167,332 -5100103,214,236,450 -5100104,173,160,333 -5100105,109,131,240 -5100106,0,0,0 -5100107,184,170,354 -5100108,8,0,8 -5100109,203,202,405 -5100110,122,115,237 -5100111,178,160,338 -5100112,178,168,346 -5100113,138,131,269 -5100114,224,238,462 -5100115,176,154,330 -5100116,0,0,0 -5100201,76,81,157 -5100202,132,180,312 -5100203,165,173,338 -5100204,220,244,464 -5100205,179,183,362 -5100206,184,242,426 -5100207,144,146,290 -5100208,363,390,753 -5100209,198,241,439 -5100210,311,350,661 -5100211,287,330,617 -5100212,593,620,1213 -5100213,164,183,347 -5100214,250,260,510 -5100215,334,381,715 -5100216,205,249,454 -5100217,141,147,288 -5100218,128,130,258 -5100219,191,247,438 -5100220,202,238,440 -5100221,335,344,679 -5100222,193,196,389 -5100223,164,178,342 -5100224,176,166,342 -5100225,436,456,892 -5100226,184,189,373 -5100227,7,6,13 -5100228,319,323,642 -5100229,185,193,378 -5100230,126,213,339 -5100231,196,232,428 -5100232,113,112,225 -5100233,192,200,392 -5100234,147,129,276 -5100235,259,264,523 -5100236,242,275,517 -5100237,187,197,384 -5100238,179,181,360 -5100239,103,91,194 -5100240,149,179,328 -5100241,186,197,383 -5100242,258,295,553 -5100243,235,247,482 -5100244,231,251,482 -5100245,339,379,718 -5100246,113,108,221 -5100247,177,190,367 -5100248,218,206,424 -5100249,102,122,224 -5100250,146,144,290 -5100251,126,136,262 -5100301,85,99,184 -5100302,124,125,249 -5100303,144,137,281 -5100304,135,123,258 -5100305,153,126,279 -5100306,186,175,361 -5100307,136,144,280 -5100308,158,132,290 -5100309,358,357,715 -5100310,157,145,302 -5100311,122,105,227 -5100312,181,168,349 -5100313,106,127,233 -5100314,137,114,251 -5100315,223,205,428 -5100316,152,147,299 -5100317,177,163,340 -5100318,172,160,332 -5100319,163,176,339 -5100320,268,288,556 -5100321,179,196,375 -5100322,67,57,124 -5100323,123,129,252 -5100324,160,156,316 -5100325,226,229,455 -5100326,150,143,293 -5100401,226,254,480 -5100402,315,322,637 -5100403,301,316,617 -5100404,305,323,628 -5100405,184,166,350 -5100406,234,245,479 -5100407,158,215,373 -5100408,123,150,273 -5100409,211,212,423 -5100410,174,177,351 -5100411,105,108,213 -5100412,180,176,356 -5100413,251,240,491 -5100414,202,202,404 -5100415,108,104,212 -5100416,270,204,474 -5100417,218,176,394 -5100418,98,80,178 -5100501,315,320,635 -5100502,156,135,291 -5100503,405,415,820 -5100504,126,125,251 -5100505,0,0,0 -5100506,50,33,83 -5100507,0,0,0 -5100508,179,174,353 -5100509,302,322,624 -5100510,226,238,464 -5100511,158,150,308 -5100512,105,123,228 -5100513,184,200,384 -5100514,231,227,458 -5100515,0,0,0 -5100516,149,139,288 -5100517,125,145,270 -5100518,279,293,572 -5100519,287,287,574 -5100520,163,143,306 -5100521,190,220,410 -5100522,172,165,337 -5100523,170,202,372 -5100524,184,205,389 -5100525,149,151,300 -5100526,122,125,247 -5100527,177,180,357 -5100528,116,124,240 -5100529,155,154,309 -5100530,284,285,569 -5100531,214,216,430 -5100532,204,200,404 -5100533,213,207,420 -5100534,272,278,550 -5100535,336,341,677 -5100536,166,165,331 -5100537,163,153,316 -5100538,192,178,370 -5100539,157,130,287 -5100540,222,214,436 -5100541,39,33,72 -5100542,51,63,114 -5100601,177,167,344 -5100602,174,203,377 -5100603,173,190,363 -5100604,126,131,257 -5100605,196,213,409 -5100606,129,129,258 -5100607,287,312,599 -5100608,162,163,325 -5100609,212,172,384 -5100610,325,278,603 -5100611,175,188,363 -5100612,138,238,376 -5100613,146,117,263 -5100614,218,218,436 -5100615,294,336,630 -5100616,216,254,470 -5100617,259,266,525 -5100618,155,134,289 -5100619,252,270,522 -5100620,354,293,647 -5100621,216,180,396 -5100622,169,195,364 -5100623,273,270,543 -5100624,169,154,323 -5100625,175,206,381 -5100626,140,149,289 -5100627,198,151,349 -5100628,186,183,369 -5100629,281,249,530 -5100630,185,171,356 -5100631,234,259,493 -5100632,172,177,349 -5100633,278,260,538 -5100634,282,293,575 -5100635,206,243,449 -5100636,157,182,339 -5100637,187,175,362 -5100638,179,175,354 -5100639,196,215,411 -5100640,196,244,440 -5100641,222,258,480 -5100701,159,140,299 -5100702,124,141,265 -5100703,175,158,333 -5100704,223,249,472 -5100705,121,121,242 -5100706,131,124,255 -5100707,196,189,385 -5100708,234,251,485 -5100709,158,159,317 -5100710,249,236,485 -5100711,145,155,300 -5100712,419,430,849 -5100801,202,238,440 -5100802,330,299,629 -5100803,127,151,278 -5100804,202,235,437 -5100805,206,226,432 -5100806,334,0,334 -5100807,247,228,475 -5100808,0,0,0 -5100809,317,355,672 -5100810,233,259,492 -5100811,122,167,289 -5100812,174,192,366 -5100813,251,244,495 -5100814,173,171,344 -5100815,245,257,502 -5100816,165,166,331 -5100901,127,121,248 -5100902,241,225,466 -5100903,204,209,413 -5100904,161,151,312 -5100905,296,291,587 -5100906,136,134,270 -5100907,127,110,237 -5100908,174,155,329 -5100909,123,132,255 -5100910,0,0,0 -5100911,135,131,266 -5100912,210,192,402 -5100913,142,123,265 -5100914,175,148,323 -5100915,7,3,10 -5100916,249,254,503 -5100917,0,5,5 -5100918,93,100,193 -5100919,722,231,953 -5100920,260,233,493 -5100921,3,0,3 -5100922,98,90,188 -5100923,196,202,398 -5100924,104,102,206 -5100925,146,147,293 -5100926,130,130,260 -5100927,188,199,387 -5100928,271,259,530 -5100929,186,149,335 -5101001,146,152,298 -5101002,264,269,533 -5101003,186,176,362 -5101004,161,164,325 -5101005,262,258,520 -5101006,285,228,513 -5101007,224,206,430 -5101101,6,4,10 -5101201,249,268,517 -5101202,238,227,465 -5101203,180,169,349 -5101204,191,171,362 -5101205,122,145,267 -5101206,160,158,318 -5101207,215,207,422 -5101208,128,117,245 -5101209,283,293,576 -5101210,115,119,234 -5101211,603,662,1265 -5101212,534,620,1154 -5101213,0,0,0 -5101214,224,218,442 -5101215,207,216,423 -5101216,286,307,593 -5101217,160,160,320 -5101218,242,253,495 -5101219,230,197,427 -5101220,245,225,470 -5101221,185,188,373 -5101222,249,268,517 -5101301,95,93,188 -5101302,357,352,709 -5101303,136,119,255 -5101304,153,161,314 -5101305,167,152,319 -5101306,104,118,222 -5101307,270,287,557 -5101308,165,158,323 -5101309,264,256,520 -5101310,218,192,410 -5101311,271,285,556 -5101312,264,292,556 -5101313,184,213,397 -5101314,327,342,669 -5101315,299,331,630 -5101316,247,248,495 -5101317,239,231,470 -5101318,209,193,402 -5101319,125,156,281 -5101320,204,210,414 -5101321,647,658,1305 -5101322,0,0,0 -5101401,175,179,354 -5101402,197,188,385 -5101403,281,272,553 -5101404,151,149,300 -5101405,186,208,394 -5101406,175,216,391 -5101407,201,219,420 -5101408,139,115,254 -5101409,112,109,221 -5101410,198,150,348 -5101411,171,172,343 -5101412,169,155,324 -5101413,85,87,172 -5101414,154,152,306 -5101415,238,213,451 -5101416,129,114,243 -5101417,234,205,439 -5101418,141,114,255 -5101419,182,176,358 -5101420,230,213,443 -5101421,288,278,566 -5101422,207,193,400 -5101423,243,231,474 -5101501,144,158,302 -5101502,194,180,374 -5101503,282,253,535 -5101504,142,145,287 -5101505,278,289,567 -5101506,0,0,0 -5101507,284,315,599 -5101508,222,229,451 -5101509,140,135,275 -5101510,285,340,625 -5101511,335,359,694 -5101512,362,352,714 -5101513,275,285,560 -5101514,324,319,643 -5101515,141,127,268 -5101516,0,0,0 -5101601,105,110,215 -5101602,197,202,399 -5101603,114,103,217 -5101604,125,109,234 -5101605,186,241,427 -5101606,90,123,213 -5101607,229,224,453 -5101608,298,278,576 -5101609,107,117,224 -5101610,0,3,3 -5101611,215,191,406 -5101612,104,114,218 -5101701,182,160,342 -5101702,242,312,554 -5101703,252,248,500 -5101704,197,162,359 -5101705,168,164,332 -5101706,182,193,375 -5101707,137,122,259 -5101708,131,114,245 -5101709,144,182,326 -5101710,231,248,479 -5101711,170,178,348 -5101712,104,106,210 -5101713,117,119,236 -5101714,148,163,311 -5101715,122,145,267 -5101716,101,112,213 -5101717,76,82,158 -5101718,98,96,194 -5101719,109,99,208 -5101801,121,121,242 -5101802,198,193,391 -5101803,138,171,309 -5101804,127,135,262 -5101805,176,151,327 -5101806,263,263,526 -5101807,139,130,269 -5101808,180,159,339 -5101809,146,120,266 -5101810,124,128,252 -5101811,149,157,306 -5101812,226,209,435 -5101813,218,233,451 -5101814,128,146,274 -5101815,158,138,296 -5101816,186,190,376 -5101901,249,272,521 -5101902,143,111,254 -5101903,195,197,392 -5101904,142,139,281 -5101905,176,168,344 -5101906,59,75,134 -5101907,223,260,483 -5101908,183,194,377 -5101909,221,204,425 -5101910,160,161,321 -5101911,157,156,313 -5101912,116,126,242 -5101913,201,189,390 -5101914,222,230,452 -5101915,122,151,273 -5101916,120,103,223 -5102001,185,186,371 -5102002,93,102,195 -5102003,139,140,279 -5102004,265,227,492 -5102005,269,244,513 -5102006,191,188,379 -5102007,148,134,282 -5102008,154,118,272 -5102009,255,247,502 -5102010,273,223,496 -5102011,152,101,253 -5102012,114,118,232 -5102013,122,127,249 -5102014,261,262,523 -5102101,212,217,429 -5102102,243,214,457 -5102103,179,185,364 -5102104,282,283,565 -5102105,229,220,449 -5102106,140,113,253 -5102107,119,102,221 -5102108,108,126,234 -5102109,144,160,304 -5102110,0,4,4 -5102111,28,37,65 -5102112,104,100,204 -5102113,278,292,570 -5102114,121,143,264 -5102115,254,251,505 -5102116,246,239,485 -5102117,90,96,186 -5102201,158,180,338 -5102202,126,134,260 -5102203,135,135,270 -5102204,358,396,754 -5102205,281,291,572 -5102206,111,119,230 -5102207,196,193,389 -5102208,110,117,227 -5102209,173,162,335 -5102210,248,227,475 -5102211,182,179,361 -5102212,189,193,382 -5102213,217,214,431 -5102214,218,209,427 -5102215,160,164,324 -5102216,139,156,295 -5102217,141,125,266 -5102218,173,162,335 -5102219,232,211,443 -5102220,165,159,324 -5102301,293,271,564 -5102302,74,70,144 -5102303,134,135,269 -5102304,273,323,596 -5102305,339,313,652 -5102306,206,199,405 -5102307,198,174,372 -5102308,281,307,588 -5102309,261,249,510 -5102310,220,200,420 -5102311,275,291,566 -5102312,140,157,297 -5102313,392,412,804 -5102314,191,195,386 -5102315,161,146,307 -5102316,244,332,576 -5102317,161,171,332 -5102318,246,278,524 -5102319,286,312,598 -5102320,270,283,553 -5102321,0,3,3 -5102322,175,295,470 -5102401,263,272,535 -5102402,198,213,411 -5102403,163,136,299 -5102404,149,142,291 -5102405,147,162,309 -5102406,270,288,558 -5102407,251,251,502 -5102408,366,418,784 -5102409,168,198,366 -5102410,259,237,496 -5102411,220,234,454 -5102412,154,148,302 -5102413,186,198,384 -5102414,193,219,412 -5102415,217,212,429 -5102416,382,404,786 -5102417,278,297,575 -5102418,0,0,0 -5102419,187,190,377 -5102420,178,234,412 -5102421,238,252,490 -5102422,206,236,442 -5102423,253,240,493 -5102424,192,156,348 -5102425,207,236,443 -5102426,198,200,398 -5102427,269,278,547 -5102428,222,251,473 -5102429,233,227,460 -5102430,224,221,445 -5102431,132,152,284 -5102432,288,280,568 -5102433,249,241,490 -5102434,154,189,343 -5102435,0,0,0 -5102436,167,199,366 -5102437,183,187,370 -5102438,184,244,428 -5102439,219,217,436 -5102440,295,336,631 -5102501,173,178,351 -5102502,406,395,801 -5102503,143,133,276 -5102504,245,321,566 -5102505,242,230,472 -5102506,157,157,314 -5102507,229,227,456 -5102508,161,218,379 -5102509,115,124,239 -5102510,220,285,505 -5102511,235,278,513 -5102512,204,220,424 -5102513,188,211,399 -5102514,203,215,418 -5102515,172,157,329 -5102516,243,230,473 -5102517,167,157,324 -5102518,189,205,394 -5102519,194,184,378 -5102520,269,290,559 -5102521,0,0,0 -5102601,116,109,225 -5102602,193,177,370 -5102603,250,256,506 -5102604,228,197,425 -5102605,266,239,505 -5102606,163,181,344 -5102607,163,163,326 -5102608,102,103,205 -5102609,104,118,222 -5102610,4,3,7 -5102611,120,86,206 -5102612,147,113,260 -5102613,294,275,569 -5102614,176,169,345 -5102615,99,100,199 -5102616,109,112,221 -5102701,394,380,774 -5102702,298,326,624 -5102703,343,342,685 -5102704,0,0,0 -5102705,191,211,402 -5102706,138,155,293 -5102707,199,237,436 -5102708,281,258,539 -5102709,235,218,453 -5102710,153,158,311 -5102711,340,344,684 -5102712,131,141,272 -5102713,206,337,543 -5102714,401,439,840 -5102715,362,356,718 -5102716,277,275,552 -5102717,180,178,358 -5102718,302,329,631 -5102719,309,284,593 -5102720,115,126,241 -5102721,258,265,523 -5102722,210,208,418 -5102723,264,278,542 -5102724,283,273,556 -5102725,256,239,495 -5102801,179,208,387 -5102802,159,151,310 -5102803,310,334,644 -5102804,269,280,549 -5102805,188,218,406 -5102806,390,477,867 -5102807,101,115,216 -5102808,186,183,369 -5102809,222,267,489 -5102810,98,92,190 -5102811,216,227,443 -5102812,285,275,560 -5102813,255,249,504 -5102814,155,183,338 -5102815,100,137,237 -5102816,217,255,472 -5102817,193,219,412 -5102818,159,167,326 -5102819,224,247,471 -5102820,159,196,355 -5102821,241,246,487 -5102822,124,140,264 -5102901,166,195,361 -5102902,299,305,604 -5102903,223,199,422 -5102904,92,97,189 -5102905,96,73,169 -5102906,114,110,224 -5102907,177,169,346 -5102908,477,509,986 -5102909,254,249,503 -5102910,276,263,539 -5102911,232,249,481 -5102912,117,106,223 -5102913,196,201,397 -5102914,243,265,508 -5102915,221,238,459 -5102916,230,239,469 -5102917,164,141,305 -5102918,287,225,512 -5102919,141,135,276 -5103001,76,165,241 -5103002,169,174,343 -5103003,0,0,0 -5103004,32,46,78 -5103005,0,0,0 -5103006,0,0,0 -5103007,239,224,463 -5103008,246,222,468 -5103009,232,228,460 -5103010,282,267,549 -5103011,328,343,671 -5103012,200,193,393 -5103013,236,240,476 -5103014,134,132,266 -5103015,310,311,621 -5103016,247,271,518 -5103017,141,152,293 -5103018,255,264,519 -5103101,115,90,205 -5103102,0,0,0 -5103103,210,218,428 -5103104,189,186,375 -5103105,174,198,372 -5103106,295,317,612 -5103107,134,197,331 -5103108,236,291,527 -5103109,116,153,269 -5103110,166,132,298 -5103111,202,214,416 -5103112,136,145,281 -5103113,201,205,406 -5103114,270,314,584 -5103115,194,204,398 -5103116,0,0,0 -5103117,180,215,395 -5103118,190,167,357 -5103119,173,250,423 -5103120,205,229,434 -5103121,221,263,484 -5103201,155,188,343 -5103202,152,191,343 -5103203,189,193,382 -5103204,158,175,333 -5103205,189,254,443 -5103206,172,177,349 -5103207,213,199,412 -5103208,138,147,285 -5103209,298,349,647 -5103210,168,192,360 -5103211,236,248,484 -5103212,148,162,310 -5103213,266,279,545 -5103214,202,198,400 -5103215,277,252,529 -5103216,163,154,317 -5103217,206,189,395 -5103218,272,244,516 -5103301,155,170,325 -5103302,163,166,329 -5103303,271,266,537 -5103304,158,144,302 -5103305,241,254,495 -5103306,221,203,424 -5103307,213,229,442 -5103308,0,0,0 -5103309,143,156,299 -5103310,159,159,318 -5103311,111,127,238 -5103312,238,217,455 -5103313,118,116,234 -5103314,0,0,0 -5103315,229,237,466 -5103316,169,162,331 -5103317,123,144,267 -5103318,120,150,270 -5103319,151,159,310 -5103320,265,261,526 -5103321,173,173,346 -5103322,156,165,321 -5103401,92,184,276 -5103402,91,113,204 -5103403,291,330,621 -5103404,168,182,350 -5103405,213,275,488 -5103406,234,277,511 -5103407,234,252,486 -5103408,173,204,377 -5103409,189,277,466 -5103410,173,206,379 -5103411,131,169,300 -5103412,101,245,346 -5103413,298,270,568 -5103414,186,189,375 -5103415,280,206,486 -5103416,186,213,399 -5103417,172,329,501 -5103418,132,143,275 -5103419,130,145,275 -5103420,222,245,467 -5103421,380,355,735 -5103422,180,192,372 -5103423,143,201,344 -5103424,217,300,517 -5103501,137,128,265 -5103502,0,0,0 -5103503,198,220,418 -5103504,266,263,529 -5103505,221,235,456 -5103506,195,148,343 -5103507,125,138,263 -5103508,0,0,0 -5103509,85,110,195 -5103510,289,272,561 -5103511,228,264,492 -5103512,313,353,666 -5103513,314,307,621 -5103514,267,259,526 -5103515,169,156,325 -5103516,194,202,396 -5103517,242,247,489 -5103518,168,201,369 -5103519,160,144,304 -5103520,187,198,385 -5103521,319,378,697 -5103522,239,201,440 -5103523,246,292,538 -5103524,242,299,541 -5103525,224,251,475 -5103526,132,134,266 -5103527,218,193,411 -5103528,245,256,501 -5103529,168,169,337 -5103530,158,168,326 -5103531,189,223,412 -5103532,308,327,635 -5103533,352,364,716 -5103534,137,206,343 -5103535,245,266,511 -5103536,239,248,487 -5103537,194,203,397 -5103538,246,246,492 -5103539,234,236,470 -5103540,233,242,475 -5103541,228,228,456 -5103601,0,0,0 -5103602,197,251,448 -5103603,198,216,414 -5103604,126,138,264 -5103605,165,185,350 -5103606,209,255,464 -5103607,9,0,9 -5103608,127,105,232 -5103609,236,256,492 -5103610,123,98,221 -5103611,204,204,408 -5103612,270,295,565 -5103613,121,118,239 -5103614,200,193,393 -5103615,94,103,197 -5103616,159,141,300 -5103617,321,240,561 -5103618,141,172,313 -5103619,254,282,536 -5103620,179,187,366 -5103621,174,174,348 -5103622,0,0,0 -5103623,210,218,428 -5103624,165,168,333 -5103625,0,0,0 -5103701,21,13,34 -5103801,141,149,290 -5103802,189,214,403 -5103803,236,253,489 -5103804,147,149,296 -5103805,162,142,304 -5103806,275,276,551 -5103807,120,130,250 -5103808,142,112,254 -5103809,266,200,466 -5103810,214,230,444 -5103811,214,247,461 -5103812,0,0,0 -5103813,246,261,507 -5103814,155,150,305 -5103815,184,168,352 -5103816,147,140,287 -5103817,286,281,567 -5103818,152,152,304 -5103819,134,144,278 -5103820,150,157,307 -5103821,126,136,262 -5103822,303,316,619 -5103823,130,146,276 -5103824,203,211,414 -5103825,142,145,287 -5103826,292,323,615 -5103827,151,171,322 -5103828,201,198,399 -5103901,122,125,247 -5103902,215,241,456 -5103903,195,196,391 -5103904,0,0,0 -5103905,206,211,417 -5103906,162,166,328 -5103907,201,210,411 -5103908,275,265,540 -5103909,170,153,323 -5103910,263,272,535 -5103911,167,206,373 -5103912,177,221,398 -5103913,180,161,341 -5103914,221,230,451 -5103915,133,147,280 -5103916,209,221,430 -5103917,242,222,464 -5103918,241,262,503 -5103919,250,238,488 -5103920,236,221,457 -5103921,234,233,467 -5103922,268,271,539 -5103923,210,358,568 -5103924,254,277,531 -5103925,241,242,483 -5103926,117,156,273 -5103927,185,185,370 -5103928,226,236,462 -5103929,300,284,584 -5103930,271,297,568 -5103931,153,178,331 -5103932,232,245,477 -5103933,231,266,497 -5103934,167,192,359 -5103935,235,272,507 -5103936,171,174,345 -5103937,178,178,356 -5103938,176,164,340 -5103939,155,172,327 -5104001,187,212,399 -5104002,226,233,459 -5104003,241,240,481 -5104004,150,157,307 -5104005,247,218,465 -5104006,295,278,573 -5104007,220,261,481 -5104008,166,144,310 -5104009,182,237,419 -5104010,225,243,468 -5104011,245,236,481 -5104012,107,130,237 -5104013,203,198,401 -5104014,191,178,369 -5104015,192,166,358 -5104016,131,166,297 -5104017,238,230,468 -5104018,163,161,324 -5104019,202,198,400 -5104020,182,168,350 -5104021,226,270,496 -5104101,357,310,667 -5104102,264,231,495 -5104103,268,202,470 -5104104,244,216,460 -5104105,274,211,485 -5104106,277,163,440 -5104107,244,207,451 -5104108,591,510,1101 -5104109,367,313,680 -5104110,459,336,795 -5104111,731,471,1202 -5104112,898,740,1638 -5104113,226,222,448 -5104114,200,172,372 -5104115,148,155,303 -5104116,169,133,302 -5104117,136,127,263 -5104118,128,51,179 -5104119,164,127,291 -5104120,300,293,593 -5104121,470,336,806 -5104122,278,227,505 -5104123,293,234,527 -5104124,209,220,429 -5104125,185,189,374 -5104126,431,349,780 -5104127,239,214,453 -5104128,279,253,532 -5104129,334,276,610 -5104130,311,278,589 -5104131,361,328,689 -5104132,227,199,426 -5104133,232,195,427 -5104134,311,252,563 -5104135,318,197,515 -5104136,400,310,710 -5104137,368,255,623 -5104138,111,112,223 -5104139,210,175,385 -5104140,169,142,311 -5104141,398,295,693 -5104142,366,281,647 -5104143,226,209,435 -5104144,406,316,722 -5104145,285,199,484 -5104146,207,214,421 -5104201,211,224,435 -5104202,192,206,398 -5104203,307,318,625 -5104204,306,420,726 -5104205,230,245,475 -5104206,234,259,493 -5104207,175,192,367 -5104208,316,316,632 -5104209,164,228,392 -5104210,195,208,403 -5104211,168,157,325 -5104212,165,211,376 -5104213,203,191,394 -5104214,157,161,318 -5104215,211,223,434 -5104216,190,179,369 -5104217,195,240,435 -5104218,99,113,212 -5104219,223,217,440 -5104220,181,198,379 -5104221,234,223,457 -5104222,196,220,416 -5104223,267,289,556 -5104224,206,194,400 -5104225,204,211,415 -5104226,191,237,428 -5104227,86,43,129 -5104228,138,124,262 -5104229,168,158,326 -5104230,183,214,397 -5104231,263,265,528 -5104232,127,151,278 -5104233,279,307,586 -5104234,212,212,424 -5104235,140,160,300 -5104236,276,243,519 -5104301,134,133,267 -5104302,381,329,710 -5104303,204,181,385 -5104304,216,251,467 -5104305,201,172,373 -5104306,244,248,492 -5104307,114,136,250 -5104308,191,198,389 -5104309,0,0,0 -5104310,205,274,479 -5104311,0,0,0 -5104312,335,290,625 -5104313,309,275,584 -5104314,224,193,417 -5104315,153,132,285 -5104316,294,282,576 -5104317,271,271,542 -5104318,161,167,328 -5104319,232,268,500 -5104320,226,230,456 -5104321,194,216,410 -5104322,189,193,382 -5104323,266,252,518 -5104324,206,338,544 -5104325,231,222,453 -5104326,157,193,350 -5104327,176,181,357 -5104328,209,219,428 -5104329,283,283,566 -5104330,289,283,572 -5104331,262,267,529 -5104332,175,226,401 -5104333,179,216,395 -5104334,221,228,449 -5104335,226,237,463 -5104336,172,153,325 -5104337,274,275,549 -5104338,170,169,339 -5104339,203,202,405 -5104401,134,157,291 -5104402,192,214,406 -5104403,119,134,253 -5104404,246,214,460 -5104405,218,233,451 -5104406,184,173,357 -5104407,252,233,485 -5104408,227,261,488 -5104409,170,159,329 -5104410,140,146,286 -5104411,241,227,468 -5104412,154,161,315 -5104413,189,165,354 -5104414,196,219,415 -5104415,339,329,668 -5104416,208,223,431 -5104417,168,183,351 -5104418,190,201,391 -5104419,250,278,528 -5104420,170,171,341 -5104421,285,274,559 -5104422,275,256,531 -5104423,294,268,562 -5104424,150,175,325 -5104425,150,162,312 -5104426,277,245,522 -5104427,176,153,329 -5104428,214,197,411 -5104429,289,301,590 -5104430,166,187,353 -5104431,199,161,360 -5104432,3,0,3 -5104433,323,314,637 -5104434,0,0,0 -5104435,153,235,388 -5104436,130,116,246 -5104437,110,104,214 -5104501,160,179,339 -5104502,138,141,279 -5104503,236,253,489 -5104504,210,198,408 -5104505,247,273,520 -5104506,169,174,343 -5104507,181,168,349 -5104508,132,147,279 -5104509,202,208,410 -5104510,137,166,303 -5104511,282,314,596 -5104512,19,16,35 -5104513,226,223,449 -5104514,188,218,406 -5104515,226,195,421 -5104516,193,225,418 -5104517,268,264,532 -5104518,147,120,267 -5104519,3,0,3 -5104520,293,381,674 -5104521,154,163,317 -5104522,141,134,275 -5104523,149,117,266 -5104524,267,293,560 -5104525,233,214,447 -5104526,324,319,643 -5104527,145,217,362 -5104528,227,248,475 -5104529,157,166,323 -5104530,282,264,546 -5104531,180,159,339 -5104532,226,228,454 -5104533,219,227,446 -5104534,244,246,490 -5104535,166,158,324 -5104536,153,157,310 -5104537,250,293,543 -5104538,149,198,347 -5104539,183,183,366 -5104540,205,200,405 -5104541,255,239,494 -5104542,217,203,420 -5104543,219,234,453 -5104544,197,227,424 -5104545,145,174,319 -5104546,241,241,482 -5104547,205,214,419 -5104548,184,180,364 -5104549,369,339,708 -5104550,226,217,443 -5104551,182,166,348 -5104552,129,127,256 -5104553,157,146,303 -5104601,146,129,275 -5104602,288,304,592 -5104603,141,140,281 -5104604,186,179,365 -5104605,258,259,517 -5104606,215,217,432 -5104607,174,161,335 -5104608,3,0,3 -5104609,275,264,539 -5104610,286,234,520 -5104611,202,158,360 -5104612,184,178,362 -5104613,197,209,406 -5104614,318,231,549 -5104615,226,202,428 -5104616,283,265,548 -5104617,196,212,408 -5104618,231,180,411 -5104619,189,154,343 -5104620,190,171,361 -5104621,322,293,615 -5104622,350,263,613 -5104623,346,310,656 -5104624,206,168,374 -5104625,279,198,477 -5104626,285,281,566 -5104627,255,238,493 -5104628,268,251,519 -5104701,243,219,462 -5104702,208,212,420 -5104703,222,180,402 -5104704,203,207,410 -5104705,269,228,497 -5104706,232,213,445 -5104707,243,223,466 -5104708,208,219,427 -5104709,309,311,620 -5104710,156,164,320 -5104711,230,246,476 -5104712,237,238,475 -5104713,267,273,540 -5104714,169,175,344 -5104715,0,0,0 -5104716,206,201,407 -5104717,255,258,513 -5104718,205,214,419 -5104719,115,125,240 -5104720,181,176,357 -5104721,220,193,413 -5104722,212,215,427 -5104723,227,238,465 -5104724,173,190,363 -5104725,193,194,387 -5104726,274,289,563 -5104727,280,325,605 -5104728,215,231,446 -5104729,281,271,552 -5104730,184,173,357 -5104731,129,164,293 -5104732,287,257,544 -5104733,333,292,625 -5104734,208,199,407 -5104735,322,313,635 -5104736,225,214,439 -5104737,261,242,503 -5104738,308,297,605 -5104739,250,279,529 -5104740,214,202,416 -5104741,288,293,581 -5104742,220,225,445 -5104743,302,287,589 -5104744,191,277,468 -5104745,218,186,404 -5104801,0,0,0 -5104802,302,292,594 -5104803,208,240,448 -5104804,172,186,358 -5104805,189,181,370 -5104806,244,244,488 -5104807,275,276,551 -5104808,231,262,493 -5104809,259,242,501 -5104810,163,160,323 -5104811,233,251,484 -5104812,210,228,438 -5104813,118,117,235 -5104814,147,144,291 -5104815,249,236,485 -5104816,169,180,349 -5104817,218,246,464 -5104818,134,140,274 -5104819,173,198,371 -5104820,132,150,282 -5104821,139,137,276 -5104901,169,171,340 -5104902,162,152,314 -5104903,83,85,168 -5104904,179,173,352 -5104905,1405,46,1451 -5104906,160,160,320 -5104907,198,213,411 -5104908,164,178,342 -5104909,28,34,62 -5104910,105,109,214 -5104911,24,21,45 -5105001,163,154,317 -5105002,157,171,328 -5105003,0,0,0 -5105004,164,198,362 -5105005,178,182,360 -5105006,221,205,426 -5105007,160,159,319 -5105008,175,160,335 -5105009,156,144,300 -5105010,221,221,442 -5105011,147,164,311 -5105012,156,171,327 -5105013,264,266,530 -5105014,161,150,311 -5105015,265,300,565 -5105016,109,123,232 -5105017,92,78,170 -5105018,248,249,497 -5105019,178,149,327 -5105020,272,309,581 -5105101,157,134,291 -5105102,393,411,804 -5105103,144,153,297 -5105104,244,238,482 -5105105,279,244,523 -5105106,191,197,388 -5105107,167,179,346 -5105108,214,227,441 -5105109,178,168,346 -5105110,344,401,745 -5105201,4,13,17 -5105301,190,198,388 -5105302,132,150,282 -5105303,277,296,573 -5105304,239,244,483 -5105305,300,298,598 -5105306,83,70,153 -5105307,123,110,233 -5105308,244,207,451 -5105309,144,111,255 -5105310,140,148,288 -5105311,160,145,305 -5105312,206,216,422 -5105313,96,117,213 -5105314,271,264,535 -5105315,20,22,42 -5105316,198,201,399 -5105317,256,227,483 -5105318,149,146,295 -5105319,159,154,313 -5105320,160,162,322 -5105321,197,179,376 -5105322,202,204,406 -5105323,207,193,400 -5105324,239,270,509 -5105325,172,173,345 -5105326,125,135,260 -5105327,103,106,209 -5105328,145,130,275 -5105329,194,201,395 -5105330,111,94,205 -5105331,169,175,344 -5105332,5,3,8 -5105333,94,91,185 -5105334,171,175,346 -5105335,256,245,501 -5105336,107,119,226 -5105337,147,238,385 -5105338,136,122,258 -5105401,167,160,327 -5105402,101,132,233 -5105403,242,245,487 -5105404,227,234,461 -5105405,147,134,281 -5105406,96,101,197 -5105407,294,279,573 -5105408,249,229,478 -5105409,202,227,429 -5105410,79,147,226 -5105411,196,201,397 -5105412,122,131,253 -5105413,201,202,403 -5105414,119,107,226 -5105415,264,276,540 -5105416,207,224,431 -5105417,152,171,323 -5105418,133,118,251 -5105419,230,212,442 -5105420,200,199,399 -5105421,213,261,474 -5105422,191,198,389 -5105423,231,246,477 -5105424,150,136,286 -5105425,217,202,419 -5105426,223,217,440 -5105427,245,263,508 -5105428,248,252,500 -5105429,143,159,302 -5105430,176,145,321 -5105431,113,101,214 -5105432,163,160,323 -5105501,0,0,0 -5105601,108,97,205 -5105602,167,173,340 -5105603,139,171,310 -5105604,123,118,241 -5105605,189,219,408 -5105606,129,142,271 -5105607,242,263,505 -5105608,293,282,575 -5105609,113,124,237 -5105610,175,193,368 -5105611,153,144,297 -5105612,136,146,282 -5105613,280,256,536 -5105614,217,204,421 -5105615,157,146,303 -5105616,199,217,416 -5105617,185,189,374 -5105618,204,202,406 -5105619,295,281,576 -5105620,195,192,387 -5105621,166,169,335 -5105622,200,214,414 -5105623,201,225,426 -5105624,144,131,275 -5105625,220,258,478 -5105626,221,222,443 -5105627,203,192,395 -5105628,248,269,517 -5105629,220,214,434 -5105630,170,174,344 -5105631,201,205,406 -5105632,64,68,132 -5105633,200,208,408 -5105634,168,180,348 -5105635,180,191,371 -5105636,177,164,341 -5105637,267,295,562 -5105638,165,154,319 -5105639,179,178,357 -5105640,166,176,342 -5105641,285,271,556 -5105642,181,192,373 -5105643,159,157,316 -5105644,118,107,225 -5105645,214,198,412 -5105646,316,334,650 -5105647,180,178,358 -5105648,237,240,477 -5105649,111,145,256 -5105650,0,0,0 -5105651,173,165,338 -5105701,118,125,243 -5105702,237,258,495 -5105703,218,233,451 -5105704,222,209,431 -5105705,349,353,702 -5105706,424,395,819 -5105707,193,182,375 -5105708,291,290,581 -5105709,3,0,3 -5105710,251,245,496 -5105711,134,126,260 -5105712,149,139,288 -5105713,176,178,354 -5105714,339,288,627 -5105715,235,217,452 -5105716,229,226,455 -5105717,226,243,469 -5105718,246,218,464 -5105719,237,256,493 -5105720,256,260,516 -5105721,164,145,309 -5105722,197,199,396 -5105723,268,251,519 -5105724,293,273,566 -5105725,290,244,534 -5105726,446,429,875 -5105727,290,267,557 -5105728,125,136,261 -5105729,296,292,588 -5105730,199,224,423 -5105731,88,286,374 -5105732,201,179,380 -5105733,240,218,458 -5105801,6,0,6 -5105802,185,194,379 -5105803,303,359,662 -5105804,111,104,215 -5105805,108,104,212 -5105806,85,82,167 -5105807,97,103,200 -5105808,198,195,393 -5105809,274,274,548 -5105810,213,199,412 -5105811,215,239,454 -5105812,125,144,269 -5105813,204,209,413 -5105901,473,467,940 -5105902,250,243,493 -5105903,328,323,651 -5105904,408,425,833 -5105905,158,159,317 -5105906,136,144,280 -5105907,0,0,0 -5105908,42,42,84 -5105909,188,258,446 -5105910,196,295,491 -5105911,50,55,105 -5105912,127,151,278 -5105913,157,167,324 -5105914,142,121,263 -5105915,221,221,442 -5105916,130,143,273 -5105917,165,189,354 -5105918,190,189,379 -5105919,167,176,343 -5105920,268,284,552 -5105921,148,150,298 -5105922,207,222,429 -5105923,244,299,543 -5105924,264,289,553 -5105925,114,116,230 -5105926,257,247,504 -5105927,146,146,292 -5105928,88,100,188 -5105929,110,129,239 -5105930,131,143,274 -5105931,370,410,780 -5105932,236,225,461 -5105933,237,254,491 -5105934,222,232,454 -5105935,61,87,148 -5105936,127,136,263 -5105937,355,353,708 -5105938,183,203,386 -5105939,136,109,245 -5105940,211,240,451 -5105941,238,224,462 -5105942,192,186,378 -5105943,193,218,411 -5105944,174,187,361 -5105945,204,216,420 -5105946,234,222,456 -5105947,97,93,190 -5105948,165,158,323 -5105949,266,250,516 -5105950,320,318,638 -5105951,0,0,0 -5105952,176,155,331 -5105953,253,284,537 -5105954,187,190,377 -5105955,125,115,240 -5105956,254,287,541 -5105957,165,185,350 -5105958,348,371,719 -5105959,185,171,356 -5106001,112,123,235 -5106002,146,152,298 -5106003,112,115,227 -5106004,167,154,321 -5106005,263,240,503 -5106006,170,162,332 -5106007,131,131,262 -5106008,180,179,359 -5106101,187,185,372 -5106102,390,404,794 -5106103,0,0,0 -5106104,130,140,270 -5106105,324,329,653 -5106106,0,0,0 -5106107,260,246,506 -5106108,221,193,414 -5106109,203,212,415 -5106110,107,95,202 -5106201,166,163,329 -5106202,141,117,258 -5106203,168,177,345 -5106204,202,221,423 -5106205,262,238,500 -5106206,149,145,294 -5106207,168,158,326 -5106208,146,137,283 -5106209,257,247,504 -5106210,162,152,314 -5106211,158,162,320 -5106212,208,204,412 -5106213,196,180,376 -5106214,134,146,280 -5106215,303,318,621 -5106216,294,287,581 -5106217,344,315,659 -5106218,239,213,452 -5106219,100,110,210 -5106220,275,276,551 -5106301,13,0,13 -5106401,4,0,4 -5106501,12,9,21 -5106502,179,187,366 -5106503,200,156,356 -5106504,150,161,311 -5106505,276,264,540 -5106506,148,178,326 -5106507,156,173,329 -5106508,282,306,588 -5106509,236,190,426 -5106510,60,55,115 -5106511,226,206,432 -5106512,271,257,528 -5106513,296,311,607 -5106514,126,124,250 -5106601,196,203,399 -5106602,127,139,266 -5106603,227,292,519 -5106604,212,214,426 -5106605,244,301,545 -5106606,210,193,403 -5106607,224,227,451 -5106608,376,360,736 -5106609,319,295,614 -5106610,125,111,236 -5106611,130,126,256 -5106612,323,342,665 -5106613,205,211,416 -5106614,202,172,374 -5106615,355,322,677 -5106616,137,124,261 -5106617,44,32,76 -5106618,124,99,223 -5106619,238,226,464 -5106620,247,221,468 -5106621,327,350,677 -5106622,261,188,449 -5106701,288,295,583 -5106702,179,223,402 -5106703,162,149,311 -5106704,232,226,458 -5106705,211,218,429 -5106706,141,145,286 -5106707,107,108,215 -5106708,197,204,401 -5106709,254,241,495 -5106710,53,45,98 -5106711,187,217,404 -5106712,203,202,405 -5106713,212,199,411 -5106714,134,140,274 -5106715,223,226,449 -5106716,298,309,607 -5106717,134,118,252 -5106718,0,0,0 -5106719,0,0,0 -5106720,128,118,246 -5106801,114,104,218 -5106802,148,129,277 -5106803,169,127,296 -5106804,212,204,416 -5106805,182,164,346 -5106806,364,374,738 -5106807,249,257,506 -5106808,144,135,279 -5106809,326,325,651 -5106810,101,97,198 -5106811,172,191,363 -5106812,136,130,266 -5106813,223,232,455 -5106814,184,204,388 -5106901,0,0,0 -5107001,117,112,229 -5107002,205,228,433 -5107003,122,128,250 -5107004,204,185,389 -5107005,239,248,487 -5107006,207,203,410 -5107007,271,294,565 -5107008,295,291,586 -5107009,178,163,341 -5107010,151,146,297 -5107011,173,155,328 -5107012,202,192,394 -5107013,151,171,322 -5107014,321,306,627 -5107015,341,306,647 -5107016,283,264,547 -5107017,210,212,422 -5107018,285,262,547 -5107019,138,147,285 -5107020,221,243,464 -5107021,189,182,371 -5107022,202,187,389 -5107023,0,0,0 -5107024,126,118,244 -5107101,193,231,424 -5107102,204,217,421 -5107103,182,200,382 -5107104,165,178,343 -5107105,275,261,536 -5107106,103,122,225 -5107107,247,225,472 -5107108,178,183,361 -5107109,123,144,267 -5107110,240,229,469 -5107111,163,152,315 -5107112,200,209,409 -5107113,216,204,420 -5107114,260,238,498 -5107115,179,175,354 -5107116,319,304,623 -5107117,259,255,514 -5107118,314,335,649 -5107119,188,190,378 -5107120,176,185,361 -5107121,161,165,326 -5107122,200,243,443 -5107123,282,274,556 -5107124,283,285,568 -5107125,0,0,0 -5107126,198,197,395 -5107127,216,211,427 -5107128,188,166,354 -5107129,198,199,397 -5107130,162,154,316 -5107131,130,121,251 -5107132,217,214,431 -5107133,17,15,32 -5107134,236,250,486 -5107135,277,274,551 -5107201,125,123,248 -5107202,106,106,212 -5107203,139,140,279 -5107204,297,294,591 -5107205,342,358,700 -5107206,268,278,546 -5107207,242,211,453 -5107208,171,173,344 -5107209,175,204,379 -5107210,212,200,412 -5107211,132,115,247 -5107212,219,212,431 -5107213,262,300,562 -5107214,250,350,600 -5107215,334,344,678 -5107216,294,307,601 -5107217,243,261,504 -5107218,199,197,396 -5107219,242,243,485 -5107220,237,226,463 -5107221,112,106,218 -5107222,133,144,277 -5107223,256,264,520 -5107224,254,255,509 -5107225,220,196,416 -5107226,245,256,501 -5107227,215,235,450 -5107228,292,281,573 -5107229,142,125,267 -5107230,141,125,266 -5107231,290,276,566 -5107232,258,255,513 -5107233,223,215,438 -5107234,177,178,355 -5107301,226,235,461 -5107302,189,216,405 -5107303,210,195,405 -5107304,238,241,479 -5107305,234,210,444 -5107306,115,126,241 -5107307,167,171,338 -5107308,271,264,535 -5107309,148,163,311 -5107310,295,280,575 -5107311,268,278,546 -5107312,121,120,241 -5107313,123,111,234 -5107314,239,237,476 -5107315,190,175,365 -5107316,182,178,360 -5107317,276,241,517 -5107318,159,171,330 -5107319,240,317,557 -5107320,224,209,433 -5107321,290,300,590 -5107322,109,119,228 -5107323,188,199,387 -5107324,175,184,359 -5107325,146,136,282 -5107326,176,192,368 -5107327,181,193,374 -5107328,183,165,348 -5107329,150,169,319 -5107330,144,143,287 -5107331,225,225,450 -5107332,158,161,319 -5107333,0,0,0 -5107334,155,169,324 -5107335,261,279,540 -5107401,214,196,410 -5107402,247,279,526 -5107403,266,247,513 -5107404,312,353,665 -5107405,271,267,538 -5107406,191,200,391 -5107407,147,155,302 -5107408,219,217,436 -5107409,283,273,556 -5107410,167,171,338 -5107411,220,200,420 -5107412,356,361,717 -5107413,201,182,383 -5107414,303,285,588 -5107415,232,249,481 -5107416,345,375,720 -5107417,260,244,504 -5107418,196,223,419 -5107419,272,254,526 -5107420,221,218,439 -5107421,258,281,539 -5107501,296,306,602 -5107502,184,198,382 -5107503,189,176,365 -5107504,271,260,531 -5107505,146,168,314 -5107506,293,301,594 -5107507,147,156,303 -5107508,196,181,377 -5107509,222,184,406 -5107510,336,330,666 -5107511,262,257,519 -5107512,271,237,508 -5107513,279,289,568 -5107514,208,241,449 -5107515,254,285,539 -5107516,201,216,417 -5107517,126,116,242 -5107518,236,237,473 -5107519,111,119,230 -5107520,371,368,739 -5107521,218,237,455 -5107522,267,252,519 -5107523,229,239,468 -5107601,175,172,347 -5107602,193,215,408 -5107603,229,250,479 -5107604,209,213,422 -5107605,576,611,1187 -5107606,126,119,245 -5107607,146,140,286 -5107608,304,299,603 -5107609,313,270,583 -5107610,790,817,1607 -5107701,4,4,8 -5107702,140,148,288 -5107703,223,188,411 -5107704,273,251,524 -5107705,175,187,362 -5107706,179,207,386 -5107707,158,188,346 -5107708,259,276,535 -5107709,102,119,221 -5107710,214,208,422 -5107711,170,170,340 -5107712,225,219,444 -5107713,266,248,514 -5107714,302,267,569 -5107715,194,199,393 -5107716,3,0,3 -5107717,138,162,300 -5107718,133,146,279 -5107719,346,305,651 -5107720,216,243,459 -5107721,247,285,532 -5107722,211,237,448 -5107723,286,265,551 -5107724,226,237,463 -5107725,192,225,417 -5107726,150,197,347 -5107727,229,279,508 -5107728,158,183,341 -5107729,166,185,351 -5107730,182,175,357 -5107731,216,241,457 -5107732,247,300,547 -5107733,0,0,0 -5107734,0,0,0 -5107735,179,180,359 -5107736,298,296,594 -5107801,266,274,540 -5107802,166,170,336 -5107803,218,243,461 -5107804,225,246,471 -5107805,209,231,440 -5107806,164,162,326 -5107807,227,235,462 -5107808,273,280,553 -5107809,148,157,305 -5107810,104,108,212 -5107811,296,283,579 -5107812,270,271,541 -5107813,153,166,319 -5107814,131,129,260 -5107815,202,203,405 -5107816,204,232,436 -5107817,215,240,455 -5107818,219,233,452 -5107819,189,191,380 -5107820,123,122,245 -5107821,240,276,516 -5107822,168,138,306 -5107823,289,291,580 -5107824,214,231,445 -5107825,165,174,339 -5107826,3,6,9 -5107827,161,159,320 -5107828,126,127,253 -5107829,211,223,434 -5107830,204,192,396 -5107831,113,178,291 -5107832,0,0,0 -5107833,313,359,672 -5107834,94,183,277 -5107835,104,108,212 -5107901,216,230,446 -5107902,260,257,517 -5107903,112,106,218 -5107904,270,310,580 -5107905,264,268,532 -5107906,303,322,625 -5107907,177,191,368 -5107908,270,277,547 -5107909,234,215,449 -5107910,231,212,443 -5107911,212,202,414 -5107912,237,227,464 -5107913,236,258,494 -5107914,0,0,0 -5107915,233,213,446 -5107916,143,146,289 -5107917,206,186,392 -5107918,144,177,321 -5107919,136,142,278 -5107920,115,134,249 -5107921,252,263,515 -5107922,187,189,376 -5107923,197,213,410 -5107924,0,0,0 -5107925,280,259,539 -5107926,247,265,512 -5107927,285,289,574 -5108001,202,193,395 -5108002,174,169,343 -5108003,211,191,402 -5108004,100,87,187 -5108005,228,222,450 -5108006,160,145,305 -5108007,222,228,450 -5108008,191,191,382 -5108009,119,135,254 -5108010,172,179,351 -5108011,193,190,383 -5108012,158,146,304 -5108013,142,130,272 -5108014,305,317,622 -5108015,138,147,285 -5108016,0,0,0 -5108017,166,166,332 -5108018,136,153,289 -5108019,249,254,503 -5108020,201,184,385 -5108021,193,204,397 -5108022,210,233,443 -5108023,177,184,361 -5108101,192,169,361 -5108102,202,189,391 -5108103,226,213,439 -5108104,0,0,0 -5108105,131,146,277 -5108106,212,203,415 -5108107,274,230,504 -5108108,183,201,384 -5108109,171,152,323 -5108110,166,175,341 -5108111,194,186,380 -5108112,197,214,411 -5108113,147,149,296 -5108114,229,258,487 -5108115,229,230,459 -5108116,0,0,0 -5108117,243,231,474 -5108118,155,162,317 -5108119,180,186,366 -5108120,132,139,271 -5108121,250,246,496 -5108122,116,121,237 -5108123,226,230,456 -5108124,124,151,275 -5108201,153,182,335 -5108202,197,181,378 -5108203,175,179,354 -5108204,157,171,328 -5108205,139,146,285 -5108206,225,225,450 -5108207,213,212,425 -5108208,126,126,252 -5108209,237,301,538 -5108210,136,143,279 -5108211,272,273,545 -5108212,191,200,391 -5108213,138,129,267 -5108214,155,162,317 -5108215,192,207,399 -5108216,150,154,304 -5108217,181,198,379 -5108218,196,197,393 -5108219,228,224,452 -5108220,182,200,382 -5108221,148,173,321 -5108222,181,182,363 -5108223,234,245,479 -5108224,224,228,452 -5108225,239,240,479 -5108301,191,195,386 -5108302,265,279,544 -5108303,211,209,420 -5108304,202,194,396 -5108305,224,233,457 -5108306,136,172,308 -5108307,158,133,291 -5108308,157,160,317 -5108309,0,0,0 -5108310,197,216,413 -5108311,144,152,296 -5108312,163,161,324 -5108313,113,121,234 -5108314,276,275,551 -5108315,116,130,246 -5108316,110,112,222 -5108317,216,233,449 -5108318,184,155,339 -5108319,139,146,285 -5108320,94,180,274 -5108321,193,207,400 -5108322,221,252,473 -5108323,151,164,315 -5108324,103,106,209 -5108325,240,252,492 -5108326,8,10,18 -5108327,144,155,299 -5108328,0,0,0 -5108329,0,0,0 -5108330,0,0,0 -5108331,131,129,260 -5108401,225,244,469 -5108402,211,230,441 -5108403,268,247,515 -5108404,200,240,440 -5108405,267,294,561 -5108406,155,144,299 -5108407,132,108,240 -5108408,120,125,245 -5108409,188,182,370 -5108410,172,174,346 -5108411,175,184,359 -5108412,342,380,722 -5108413,152,160,312 -5108414,246,232,478 -5108415,198,196,394 -5108416,213,214,427 -5108417,177,182,359 -5108418,258,269,527 -5108419,179,159,338 -5108420,216,192,408 -5108421,270,267,537 -5108422,0,4,4 -5108423,147,155,302 -5108424,140,142,282 -5108425,163,173,336 -5108426,158,160,318 -5108427,188,171,359 -5108428,229,215,444 -5108429,220,324,544 -5108430,198,197,395 -5108431,218,206,424 -5108432,180,204,384 -5108433,238,214,452 -5108434,271,297,568 -5108435,202,227,429 -5108436,197,207,404 -5108437,260,288,548 -5108501,240,268,508 -5108502,200,218,418 -5108503,237,248,485 -5108504,213,181,394 -5108505,187,151,338 -5108506,299,279,578 -5108507,251,282,533 -5108508,278,264,542 -5108509,263,254,517 -5108510,214,207,421 -5108511,184,204,388 -5108512,181,190,371 -5108513,290,293,583 -5108514,185,182,367 -5108515,191,179,370 -5108516,257,278,535 -5108517,209,210,419 -5108518,168,161,329 -5108519,219,199,418 -5108520,279,248,527 -5108521,269,273,542 -5108522,156,145,301 -5108523,271,295,566 -5108524,301,275,576 -5108525,149,153,302 -5108526,271,260,531 -5108527,175,190,365 -5108528,161,161,322 -5108529,215,232,447 -5108530,184,152,336 -5108531,283,282,565 -5108532,149,148,297 -5108533,0,0,0 -5108534,0,0,0 -5108535,274,274,548 -5108536,135,136,271 -5108537,262,273,535 -5108538,0,0,0 -5108539,287,255,542 -5108540,169,158,327 -5108541,215,245,460 -5108542,215,233,448 -5108543,192,217,409 -5108544,150,164,314 -5108601,57,55,112 -5108602,244,238,482 -5108603,129,160,289 -5108604,119,133,252 -5108605,261,290,551 -5108606,177,187,364 -5108607,203,222,425 -5108608,205,191,396 -5108609,203,275,478 -5108610,150,146,296 -5108611,115,129,244 -5108612,213,216,429 -5108613,191,191,382 -5108614,275,276,551 -5108615,197,261,458 -5108616,322,319,641 -5108617,279,275,554 -5108618,220,250,470 -5108619,131,140,271 -5108620,0,0,0 -5108621,210,232,442 -5108622,243,217,460 -5108623,252,243,495 -5108624,202,213,415 -5108625,175,195,370 -5108626,213,233,446 -5108627,128,126,254 -5108628,127,146,273 -5108629,205,245,450 -5108630,230,213,443 -5108631,214,214,428 -5108632,252,299,551 -5108633,160,185,345 -5108634,224,240,464 -5108635,200,256,456 -5108636,168,210,378 -5108637,177,188,365 -5108638,133,165,298 -5108639,130,161,291 -5108640,223,253,476 -5108641,223,257,480 -5108642,318,332,650 -5108643,181,187,368 -5108644,121,127,248 -5108645,237,223,460 -5108646,244,282,526 -5108647,155,141,296 -5108648,265,265,530 -5108649,139,130,269 -5108650,277,302,579 -5108651,215,236,451 -5108652,153,173,326 -5108653,231,219,450 -5108654,154,187,341 -5108655,179,173,352 -5108656,168,180,348 -5108657,192,214,406 -5108658,0,0,0 -5108659,141,151,292 -5108701,3,0,3 -5108801,215,222,437 -5108802,11,14,25 -5108803,199,210,409 -5108804,177,201,378 -5108805,166,164,330 -5108806,185,185,370 -5108807,125,139,264 -5108808,174,176,350 -5108809,203,230,433 -5108810,191,193,384 -5108811,223,247,470 -5108812,185,196,381 -5108813,227,234,461 -5108814,309,281,590 -5108815,215,268,483 -5108816,234,237,471 -5108817,145,173,318 -5108818,374,394,768 -5108819,360,404,764 -5108820,246,254,500 -5108821,177,213,390 -5108822,260,293,553 -5108823,172,204,376 -5108824,247,341,588 -5108825,215,214,429 -5108826,184,147,331 -5108827,155,145,300 -5108828,252,281,533 -5108829,178,222,400 -5108830,213,226,439 -5108831,230,256,486 -5108832,148,211,359 -5108833,210,216,426 -5108834,238,271,509 -5108835,267,251,518 -5108901,242,257,499 -5108902,202,179,381 -5108903,87,86,173 -5108904,0,0,0 -5108905,140,159,299 -5108906,162,176,338 -5108907,168,158,326 -5108908,292,320,612 -5108909,257,282,539 -5108910,38,284,322 -5108911,160,148,308 -5108912,203,198,401 -5108913,244,316,560 -5108914,301,301,602 -5108915,32,38,70 -5108916,209,202,411 -5108917,190,205,395 -5108918,237,234,471 -5108919,99,76,175 -5108920,184,177,361 -5108921,254,249,503 -5108922,287,399,686 -5108923,243,216,459 -5108924,166,180,346 -5108925,191,211,402 -5108926,242,283,525 -5108927,132,202,334 -5108928,0,0,0 -5108929,242,278,520 -5108930,277,276,553 -5108931,175,173,348 -5108932,226,249,475 -5108933,275,276,551 -5108934,85,92,177 -5108935,260,238,498 -5108936,192,184,376 -5108937,0,0,0 -5108938,196,219,415 -5108939,141,140,281 -5108940,113,138,251 -5108941,272,279,551 -5108942,218,223,441 -5108943,239,258,497 -5108944,200,195,395 -5108945,92,77,169 -5108946,192,186,378 -5108947,150,148,298 -5108948,281,256,537 -5108949,162,174,336 -5108950,174,192,366 -5109001,369,410,779 -5109002,160,157,317 -5109003,192,201,393 -5109004,313,340,653 -5109005,260,279,539 -5109006,148,170,318 -5109007,239,286,525 -5109008,199,191,390 -5109009,214,212,426 -5109010,209,203,412 -5109011,166,164,330 -5109012,255,248,503 -5109013,278,304,582 -5109014,246,241,487 -5109015,361,333,694 -5109016,333,321,654 -5109017,281,264,545 -5109018,438,434,872 -5109019,215,212,427 -5109020,306,296,602 -5109021,236,206,442 -5109022,315,326,641 -5109023,320,309,629 -5109024,195,199,394 -5109025,280,341,621 -5109026,364,343,707 -5109027,300,288,588 -5109028,296,312,608 -5109101,5,3,8 -5109201,210,199,409 -5109202,201,208,409 -5109203,188,195,383 -5109204,238,264,502 -5109205,230,205,435 -5109206,178,176,354 -5109207,313,270,583 -5109208,214,170,384 -5109209,264,212,476 -5109210,215,147,362 -5109211,203,157,360 -5109212,232,193,425 -5109213,171,143,314 -5109214,159,167,326 -5109215,210,127,337 -5109216,365,307,672 -5109217,296,294,590 -5109218,252,251,503 -5109219,284,288,572 -5109220,208,150,358 -5109221,276,240,516 -5109222,269,269,538 -5109223,187,219,406 -5109224,277,329,606 -5109225,198,216,414 -5109226,202,234,436 -5109227,163,187,350 -5109228,216,248,464 -5109229,132,110,242 -5109230,222,216,438 -5109231,224,264,488 -5109232,287,325,612 -5109301,296,271,567 -5109302,287,278,565 -5109303,185,192,377 -5109304,156,176,332 -5109305,237,252,489 -5109306,247,275,522 -5109307,270,260,530 -5109308,310,323,633 -5109309,186,137,323 -5109310,288,260,548 -5109311,200,177,377 -5109312,261,253,514 -5109313,190,175,365 -5109314,188,183,371 -5109315,197,212,409 -5109316,216,222,438 -5109317,291,297,588 -5109318,263,256,519 -5109319,144,126,270 -5109320,200,202,402 -5109321,296,267,563 -5109322,211,206,417 -5109323,209,224,433 -5109324,136,158,294 -5109325,149,156,305 -5109326,189,197,386 -5109327,279,300,579 -5109328,168,169,337 -5109329,370,379,749 -5109330,3,0,3 -5109401,125,133,258 -5109402,144,151,295 -5109403,248,254,502 -5109404,145,172,317 -5109405,261,256,517 -5109406,318,329,647 -5109407,195,230,425 -5109408,173,184,357 -5109409,213,221,434 -5109410,219,245,464 -5109411,190,186,376 -5109412,235,258,493 -5109413,110,108,218 -5109414,192,195,387 -5109415,157,168,325 -5109416,0,0,0 -5109417,197,193,390 -5109418,132,118,250 -5109419,142,138,280 -5109501,151,174,325 -5109502,226,199,425 -5109503,235,227,462 -5109504,135,170,305 -5109505,192,220,412 -5109506,211,230,441 -5109507,205,229,434 -5109508,247,271,518 -5109509,135,137,272 -5109510,158,192,350 -5109511,316,328,644 -5109512,222,219,441 -5109513,242,237,479 -5109514,259,299,558 -5109515,183,198,381 -5109516,213,240,453 -5109517,182,223,405 -5109518,117,132,249 -5109519,152,159,311 -5109520,221,238,459 -5109521,140,143,283 -5109522,152,199,351 -5109523,196,237,433 -5109524,187,201,388 -5109525,186,183,369 -5109526,185,210,395 -5109527,151,151,302 -5109528,182,226,408 -5109601,197,192,389 -5109602,122,230,352 -5109603,182,180,362 -5109604,210,185,395 -5109605,305,293,598 -5109606,130,134,264 -5109607,164,173,337 -5109608,239,323,562 -5109609,116,119,235 -5109610,192,187,379 -5109611,221,229,450 -5109612,261,248,509 -5109613,212,214,426 -5109614,145,175,320 -5109615,160,169,329 -5109616,245,250,495 -5109617,211,241,452 -5109618,254,237,491 -5109619,194,188,382 -5109620,207,218,425 -5109621,206,220,426 -5109622,265,68,333 -5109623,240,238,478 -5109624,285,286,571 -5109625,210,212,422 -5109626,213,207,420 -5109627,0,0,0 -5109628,263,238,501 -5109629,181,188,369 -5109630,184,222,406 -5109631,269,249,518 -5109701,112,116,228 -5109702,139,160,299 -5109703,128,147,275 -5109704,236,273,509 -5109705,199,193,392 -5109706,257,252,509 -5109707,156,136,292 -5109708,166,172,338 -5109709,171,203,374 -5109710,314,328,642 -5109711,172,181,353 -5109712,275,296,571 -5109713,264,300,564 -5109714,146,143,289 -5109715,268,282,550 -5109716,326,361,687 -5109717,229,237,466 -5109718,196,198,394 -5109719,266,261,527 -5109720,238,265,503 -5109721,244,248,492 -5109722,306,278,584 -5109723,330,295,625 -5109724,179,186,365 -5109725,143,136,279 -5109726,132,252,384 -5109727,237,234,471 -5109728,167,263,430 -5109729,150,142,292 -5109730,273,275,548 -5109731,248,269,517 -5109732,249,255,504 -5109733,275,290,565 -5109734,0,0,0 -5109801,257,247,504 -5109802,248,222,470 -5109803,214,208,422 -5109804,136,136,272 -5109805,201,183,384 -5109806,205,223,428 -5109807,220,222,442 -5109808,201,181,382 -5109809,138,135,273 -5109810,288,290,578 -5109811,212,167,379 -5109812,109,116,225 -5109813,135,140,275 -5109814,248,226,474 -5109815,231,202,433 -5109816,166,157,323 -5109817,208,184,392 -5109818,0,0,0 -5109819,224,257,481 -5109820,265,279,544 -5109821,260,264,524 -5109822,194,209,403 -5109823,258,272,530 -5109824,202,220,422 -5109825,235,209,444 -5109826,91,100,191 -5109827,214,232,446 -5109828,262,256,518 -5109829,205,230,435 -5109901,217,257,474 -5109902,327,309,636 -5109903,159,278,437 -5109904,169,175,344 -5109905,230,248,478 -5109906,245,230,475 -5109907,257,291,548 -5109908,0,0,0 -5109909,380,376,756 -5109910,267,285,552 -5109911,111,138,249 -5109912,352,368,720 -5109913,179,210,389 -5109914,0,3,3 -5109915,314,334,648 -5109916,164,155,319 -5109917,218,264,482 -5109918,218,224,442 -5109919,235,231,466 -5109920,97,85,182 -5109921,257,265,522 -5109922,318,304,622 -5109923,160,187,347 -5109924,360,378,738 -5109925,321,339,660 -5109926,448,501,949 -5109927,301,317,618 -5109928,986,1000,1986 -5109929,323,330,653 -5109930,188,209,397 -5109931,218,222,440 -5109932,250,245,495 -5109933,199,209,408 -5109934,201,298,499 -5109935,655,637,1292 -5110001,270,262,532 -5110002,220,213,433 -5110003,266,260,526 -5110004,568,591,1159 -5110005,243,232,475 -5110006,246,270,516 -5110007,441,435,876 -5110008,247,256,503 -5110009,263,274,537 -5110010,302,349,651 -5110011,264,288,552 -5110012,6,3,9 -5110013,123,130,253 -5110014,284,332,616 -5110015,176,179,355 -5110016,268,301,569 -5110017,226,245,471 -5110018,240,276,516 -5110019,209,213,422 -5110020,286,331,617 -5110021,374,368,742 -5110101,137,135,272 -5110102,192,141,333 -5110103,0,0,0 -5110104,216,246,462 -5110105,215,201,416 -5110106,136,132,268 -5110107,398,386,784 -5110108,245,250,495 -5110109,271,269,540 -5110110,295,305,600 -5110111,305,305,610 -5110112,330,320,650 -5110113,519,553,1072 -5110114,380,388,768 -5110115,229,243,472 -5110116,295,270,565 -5110117,212,184,396 -5110118,179,179,358 -5110119,161,170,331 -5110120,195,195,390 -5110121,126,122,248 -5110122,237,238,475 -5110123,239,248,487 -5110124,160,204,364 -5110125,164,170,334 -5110201,204,207,411 -5110202,289,261,550 -5110203,126,145,271 -5110204,240,236,476 -5110205,131,124,255 -5110206,135,118,253 -5110207,169,165,334 -5110208,219,242,461 -5110209,134,148,282 -5110210,149,135,284 -5110211,189,167,356 -5110212,198,173,371 -5110213,151,160,311 -5110214,228,209,437 -5110215,182,185,367 -5110216,212,214,426 -5110217,160,165,325 -5110218,252,242,494 -5110219,271,267,538 -5110220,206,188,394 -5110221,166,157,323 -5110222,215,214,429 -5110301,705,762,1467 -5110302,452,438,890 -5110303,6,9,15 -5110304,6,0,6 -5110305,0,0,0 -5110306,217,196,413 -5110307,172,181,353 -5110308,290,288,578 -5110309,154,163,317 -5110310,205,206,411 -5110311,154,157,311 -5110312,191,202,393 -5110313,230,229,459 -5110314,314,303,617 -5110315,262,306,568 -5110316,173,190,363 -5110317,0,0,0 -5110318,9,10,19 -5110319,197,212,409 -5110320,149,143,292 -5110321,204,215,419 -5110322,219,203,422 -5110323,220,307,527 -5110324,333,307,640 -5110325,432,496,928 -5110326,271,274,545 -5110327,679,658,1337 -5110328,169,198,367 -5110329,263,249,512 -5110330,574,559,1133 -5110331,597,564,1161 -5110332,744,710,1454 -5110333,345,322,667 -5110334,249,253,502 -5110335,244,239,483 -5110336,0,0,0 -5110401,3,0,3 -5110402,135,155,290 -5110403,281,267,548 -5110404,199,180,379 -5110405,264,334,598 -5110406,163,161,324 -5110407,227,235,462 -5110408,164,170,334 -5110409,164,181,345 -5110410,195,217,412 -5110411,218,222,440 -5110412,178,209,387 -5110413,250,234,484 -5110414,174,197,371 -5110415,253,273,526 -5110416,242,267,509 -5110417,189,220,409 -5110418,175,188,363 -5110419,98,104,202 -5110420,248,271,519 -5110421,193,211,404 -5110422,236,243,479 -5110423,211,232,443 -5110424,231,239,470 -5110425,142,119,261 -5110426,270,291,561 -5110501,198,207,405 -5110502,132,142,274 -5110503,114,117,231 -5110504,143,156,299 -5110505,238,227,465 -5110506,240,238,478 -5110507,289,290,579 -5110508,189,166,355 -5110509,188,190,378 -5110510,302,320,622 -5110511,339,417,756 -5110512,169,168,337 -5110513,144,123,267 -5110514,298,297,595 -5110515,134,111,245 -5110516,373,358,731 -5110517,267,290,557 -5110518,269,281,550 -5110519,229,249,478 -5110520,221,206,427 -5110521,577,603,1180 -5110522,340,334,674 -5110523,269,274,543 -5110524,166,171,337 -5110525,340,342,682 -5110526,192,216,408 -5110527,323,327,650 -5110528,172,161,333 -5110529,345,340,685 -5110530,273,296,569 -5110531,227,250,477 -5110532,0,0,0 -5110533,0,0,0 -5110534,247,248,495 -5110535,315,367,682 -5110536,149,145,294 -5110537,219,251,470 -5110601,0,0,0 -5110701,255,217,472 -5110702,274,285,559 -5110703,175,166,341 -5110704,128,109,237 -5110705,179,170,349 -5110706,155,120,275 -5110707,275,259,534 -5110708,277,256,533 -5110709,156,264,420 -5110710,206,231,437 -5110711,205,230,435 -5110712,172,169,341 -5110713,199,187,386 -5110714,200,187,387 -5110715,410,373,783 -5110716,349,345,694 -5110717,422,452,874 -5110718,499,463,962 -5110719,289,260,549 -5110720,128,209,337 -5110721,296,294,590 -5110722,278,285,563 -5110723,238,264,502 -5110724,133,143,276 -5110725,356,356,712 -5110801,164,165,329 -5110802,174,164,338 -5110803,0,0,0 -5110804,358,376,734 -5110805,487,514,1001 -5110806,186,167,353 -5110807,188,200,388 -5110808,122,107,229 -5110809,741,800,1541 -5110810,131,133,264 -5110811,300,314,614 -5110812,240,262,502 -5110813,282,280,562 -5110814,163,179,342 -5110815,411,406,817 -5110816,135,154,289 -5110817,265,268,533 -5110818,141,117,258 -5110819,343,338,681 -5110820,206,212,418 -5110821,159,295,454 -5110822,125,136,261 -5110823,252,242,494 -5110824,173,167,340 -5110825,134,127,261 -5110826,133,136,269 -5110827,335,402,737 -5110828,242,249,491 -5110829,268,251,519 -5110830,192,172,364 -5110831,252,264,516 -5110832,232,238,470 -5110833,271,269,540 -5110834,315,332,647 -5110835,226,198,424 -5110836,680,688,1368 -5110837,226,238,464 -5110838,113,119,232 -5110839,115,156,271 -5110840,182,149,331 -5110841,332,296,628 -5110842,249,288,537 -5110843,180,149,329 -5110844,306,309,615 -5110845,189,198,387 -5110846,193,203,396 -5110847,206,212,418 -5110901,174,146,320 -5110902,123,124,247 -5110903,210,182,392 -5110904,118,135,253 -5110905,167,181,348 -5110906,213,216,429 -5110907,311,289,600 -5110908,204,200,404 -5110909,132,147,279 -5110910,159,154,313 -5110911,136,145,281 -5110912,176,193,369 -5110913,538,578,1116 -5110914,369,362,731 -5110915,403,334,737 -5110916,127,130,257 -5110917,68,78,146 -5110918,112,100,212 -5111001,295,308,603 -5111002,220,218,438 -5111003,229,211,440 -5111004,265,274,539 -5111005,377,396,773 -5111006,104,120,224 -5111007,100,129,229 -5111008,133,115,248 -5111009,220,235,455 -5111010,153,139,292 -5111011,259,294,553 -5111012,329,375,704 -5111013,182,201,383 -5111014,285,381,666 -5111015,307,319,626 -5111016,164,168,332 -5111017,430,415,845 -5111018,302,290,592 -5111019,244,290,534 -5111020,243,237,480 -5111021,242,200,442 -5111022,232,230,462 -5111023,215,231,446 -5111024,238,203,441 -5111025,173,181,354 -5111026,184,184,368 -5111027,189,182,371 -5111028,91,87,178 -5111029,276,231,507 -5111030,271,269,540 -5111031,164,206,370 -5111032,335,357,692 -5111033,260,286,546 -5111034,130,150,280 -5111035,137,161,298 -5111101,0,0,0 -5111201,181,212,393 -5111202,171,172,343 -5111203,173,169,342 -5111204,198,176,374 -5111205,183,175,358 -5111206,209,200,409 -5111207,214,211,425 -5111208,160,166,326 -5111209,216,198,414 -5111210,202,199,401 -5111211,242,240,482 -5111212,167,134,301 -5111213,158,118,276 -5111214,73,79,152 -5111215,116,135,251 -5111301,223,207,430 -5111302,219,184,403 -5111303,123,103,226 -5111304,465,417,882 -5111305,379,424,803 -5111306,476,486,962 -5111307,591,604,1195 -5111308,381,387,768 -5111309,445,433,878 -5111310,453,451,904 -5111401,170,176,346 -5111402,234,217,451 -5111403,186,179,365 -5111404,170,163,333 -5111405,249,226,475 -5111406,262,256,518 -5111407,204,225,429 -5111408,107,119,226 -5111409,231,218,449 -5111410,192,179,371 -5111411,227,236,463 -5111412,203,265,468 -5111413,188,181,369 -5111414,272,263,535 -5111415,249,241,490 -5111416,240,191,431 -5111417,268,279,547 -5111418,0,0,0 -5111419,217,244,461 -5111420,158,167,325 -5111421,157,186,343 -5111422,142,97,239 -5111423,156,134,290 -5111424,137,153,290 -5111425,205,237,442 -5111426,184,191,375 -5111501,93,82,175 -5111502,331,333,664 -5111503,189,202,391 -5111504,197,215,412 -5111505,570,543,1113 -5111506,276,248,524 -5111507,322,318,640 -5111508,216,213,429 -5111509,0,0,0 -5111510,185,188,373 -5111511,255,266,521 -5111512,172,186,358 -5111513,172,170,342 -5111514,273,276,549 -5111515,201,187,388 -5111516,222,230,452 -5111601,107,112,219 -5111602,120,119,239 -5111603,242,274,516 -5111604,143,142,285 -5111605,148,153,301 -5111606,221,226,447 -5111607,96,109,205 -5111608,249,200,449 -5111609,116,105,221 -5111610,232,249,481 -5111611,221,217,438 -5111612,291,281,572 -5111613,201,206,407 -5111614,169,153,322 -5111615,300,300,600 -5111616,237,243,480 -5111617,120,123,243 -5111618,163,177,340 -5111701,228,223,451 -5111702,423,379,802 -5111703,215,192,407 -5111704,180,193,373 -5111705,433,458,891 -5111706,276,303,579 -5111707,416,407,823 -5111708,224,239,463 -5111709,265,244,509 -5111710,260,270,530 -5111711,105,130,235 -5111712,215,214,429 -5111713,330,330,660 -5111714,283,301,584 -5111715,212,223,435 -5111716,174,173,347 -5111717,181,162,343 -5111718,176,175,351 -5111801,199,173,372 -5111802,201,172,373 -5111803,326,321,647 -5111804,297,261,558 -5111805,179,164,343 -5111806,199,189,388 -5111807,330,278,608 -5111808,205,220,425 -5111809,246,210,456 -5111810,308,293,601 -5111811,401,387,788 -5111812,224,233,457 -5111813,260,229,489 -5111814,312,278,590 -5111815,285,290,575 -5111816,236,264,500 -5111817,297,389,686 -5111818,340,372,712 -5111819,210,238,448 -5111820,369,326,695 -5111821,250,234,484 -5111822,196,198,394 -5111823,244,236,480 -5111824,296,264,560 -5111825,330,322,652 -5111901,166,148,314 -5111902,181,178,359 -5111903,138,139,277 -5111904,301,248,549 -5111905,0,0,0 -5111906,3,0,3 -5111907,123,115,238 -5111908,210,222,432 -5111909,338,302,640 -5111910,164,170,334 -5111911,215,230,445 -5111912,168,170,338 -5111913,153,160,313 -5111914,203,192,395 -5111915,159,161,320 -5111916,202,187,389 -5111917,201,210,411 -5111918,227,240,467 -5111919,242,204,446 -5111920,213,226,439 -5111921,134,138,272 -5111922,244,236,480 -5111923,184,155,339 -5111924,229,195,424 -5111925,205,178,383 -5111926,277,226,503 -5111927,174,155,329 -5111928,146,175,321 -5111929,164,157,321 -5111930,244,259,503 -5111931,181,186,367 -5111932,226,225,451 -5111933,203,206,409 -5111934,183,173,356 -5111935,353,346,699 -5111936,189,201,390 -5111937,188,182,370 -5111938,170,182,352 -5111939,157,131,288 -5111940,158,160,318 -5112001,3,0,3 -5112101,51,3,54 -5112201,115,161,276 -5112202,211,219,430 -5112203,188,183,371 -5112204,233,215,448 -5112205,225,218,443 -5112206,314,320,634 -5112207,174,189,363 -5112208,353,342,695 -5112209,197,191,388 -5112210,149,175,324 -5112211,205,196,401 -5112212,195,209,404 -5112213,345,310,655 -5112214,185,167,352 -5112215,273,255,528 -5112216,186,149,335 -5112217,187,187,374 -5112218,191,203,394 -5112219,259,232,491 -5112220,160,164,324 -5112221,467,369,836 -5112222,335,261,596 -5112223,148,110,258 -5112224,177,215,392 -5112225,294,268,562 -5112226,218,184,402 -5112227,243,225,468 -5112228,243,273,516 -5112229,213,181,394 -5112230,247,277,524 -5112231,183,225,408 -5112232,191,218,409 -5112233,315,291,606 -5112234,289,250,539 -5112235,173,174,347 -5112236,223,229,452 -5112237,242,266,508 -5112238,195,181,376 -5112239,371,298,669 -5112240,349,318,667 -5112241,192,187,379 -5112242,219,235,454 -5112243,194,227,421 -5112244,156,158,314 -5112245,187,193,380 -5112246,301,272,573 -5112247,162,177,339 -5112248,221,219,440 -5112301,123,127,250 -5112302,136,154,290 -5112303,260,229,489 -5112304,190,195,385 -5112305,150,147,297 -5112306,180,176,356 -5112307,243,240,483 -5112308,358,318,676 -5112309,258,201,459 -5112310,479,415,894 -5112311,275,266,541 -5112312,206,198,404 -5112313,133,144,277 -5112314,227,217,444 -5112315,212,216,428 -5112316,240,216,456 -5112317,163,185,348 -5112318,335,323,658 -5112319,177,142,319 -5112320,256,229,485 -5112321,145,146,291 -5112322,184,201,385 -5112323,205,198,403 -5112324,130,134,264 -5112325,360,336,696 -5112326,273,231,504 -5112327,227,195,422 -5112328,288,214,502 -5112329,206,138,344 -5112330,198,150,348 -5112331,0,0,0 -5112332,274,246,520 -5112401,184,193,377 -5112402,189,198,387 -5112403,192,231,423 -5112404,256,210,466 -5112405,254,208,462 -5112406,289,274,563 -5112407,142,165,307 -5112408,177,182,359 -5112409,437,442,879 -5112410,242,219,461 -5112411,335,264,599 -5112412,227,252,479 -5112413,193,169,362 -5112414,115,190,305 -5112415,279,275,554 -5112416,312,312,624 -5112417,136,398,534 -5112418,311,273,584 -5112419,271,291,562 -5112420,237,625,862 -5112421,161,163,324 -5112422,208,208,416 -5112423,270,279,549 -5112424,142,152,294 -5112425,396,376,772 -5112426,396,275,671 -5112427,269,223,492 -5112428,331,357,688 -5112429,149,135,284 -5112430,292,263,555 -5112431,209,184,393 -5112432,280,294,574 -5112433,200,147,347 -5112434,298,310,608 -5112435,256,220,476 -5112436,229,201,430 -5112437,324,300,624 -5112438,338,320,658 -5112439,135,125,260 -5112501,174,194,368 -5112502,190,187,377 -5112503,399,407,806 -5112504,233,250,483 -5112505,165,164,329 -5112506,286,302,588 -5112507,244,276,520 -5112508,252,234,486 -5112509,157,169,326 -5112510,103,141,244 -5112511,219,210,429 -5112512,194,194,388 -5112513,182,188,370 -5112514,178,186,364 -5112515,201,223,424 -5112516,101,84,185 -5112517,236,278,514 -5112518,142,120,262 -5112519,295,303,598 -5112520,200,220,420 -5112521,138,128,266 -5112522,262,294,556 -5112523,277,277,554 -5112524,158,143,301 -5112601,0,0,0 -5112701,175,161,336 -5112702,218,226,444 -5112703,484,407,891 -5112704,236,225,461 -5112705,418,365,783 -5112706,290,268,558 -5112707,308,252,560 -5112708,214,210,424 -5112709,395,338,733 -5112710,351,355,706 -5112711,412,369,781 -5112712,401,377,778 -5112713,442,389,831 -5112714,259,257,516 -5112715,271,257,528 -5112716,196,218,414 -5112717,439,385,824 -5112718,343,308,651 -5112719,212,194,406 -5112720,264,260,524 -5112721,268,287,555 -5112722,141,149,290 -5112723,159,150,309 -5112724,311,273,584 -5112725,279,249,528 -5112726,266,270,536 -5112801,98,93,191 -5112802,164,161,325 -5112803,165,153,318 -5112804,156,163,319 -5112805,160,167,327 -5112806,154,137,291 -5112807,137,124,261 -5112808,0,0,0 -5112809,289,304,593 -5112810,175,151,326 -5112811,134,144,278 -5112812,186,200,386 -5112813,262,293,555 -5112814,202,213,415 -5112815,203,182,385 -5112816,166,159,325 -5112817,326,395,721 -5112818,269,254,523 -5112819,307,265,572 -5112820,177,182,359 -5112821,105,112,217 -5112822,179,195,374 -5112823,187,181,368 -5112824,186,191,377 -5112825,276,284,560 -5112826,221,229,450 -5112827,186,166,352 -5112828,126,123,249 -5112829,162,169,331 -5112830,270,274,544 -5112831,285,281,566 -5112832,267,250,517 -5112833,146,147,293 -5112834,201,202,403 -5112835,230,249,479 -5112901,239,246,485 -5112902,146,154,300 -5112903,190,190,380 -5112904,168,196,364 -5112905,142,142,284 -5112906,293,305,598 -5112907,146,148,294 -5112908,141,220,361 -5112909,209,244,453 -5112910,100,77,177 -5112911,217,220,437 -5112912,235,264,499 -5112913,295,316,611 -5112914,182,190,372 -5112915,173,185,358 -5112916,129,154,283 -5112917,248,338,586 -5112918,154,151,305 -5112919,117,104,221 -5112920,243,253,496 -5112921,223,223,446 -5112922,205,197,402 -5112923,283,292,575 -5112924,211,241,452 -5112925,247,261,508 -5112926,322,305,627 -5112927,265,333,598 -5112928,158,172,330 -5112929,144,161,305 -5112930,120,119,239 -5112931,114,106,220 -5112932,220,228,448 -5112933,76,66,142 -5113001,11,6,17 -5113101,199,204,403 -5113102,245,237,482 -5113103,148,174,322 -5113104,165,154,319 -5113105,244,236,480 -5113106,169,173,342 -5113107,165,155,320 -5113108,250,240,490 -5113109,219,256,475 -5113110,255,281,536 -5113111,161,165,326 -5113112,250,234,484 -5113113,210,236,446 -5113114,223,238,461 -5113115,209,196,405 -5113116,181,175,356 -5113117,183,198,381 -5113118,250,266,516 -5113119,213,210,423 -5113120,285,282,567 -5113121,114,130,244 -5113122,145,149,294 -5113123,244,242,486 -5113124,163,152,315 -5113125,270,265,535 -5113126,197,234,431 -5113127,220,213,433 -5113128,194,221,415 -5113129,288,295,583 -5113130,247,251,498 -5113131,312,300,612 -5113132,290,317,607 -5113133,287,271,558 -5113134,263,235,498 -5113135,172,162,334 -5113136,219,215,434 -5113137,313,299,612 -5113138,272,270,542 -5113139,214,205,419 -5113201,232,210,442 -5113202,192,195,387 -5113203,225,184,409 -5113204,244,275,519 -5113205,269,250,519 -5113206,282,289,571 -5113207,96,100,196 -5113208,114,117,231 -5113209,0,0,0 -5113210,132,130,262 -5113211,263,271,534 -5113212,154,148,302 -5113213,239,176,415 -5113214,211,180,391 -5113215,161,142,303 -5113216,174,153,327 -5113217,298,299,597 -5113218,274,251,525 -5113219,230,227,457 -5113220,168,146,314 -5113221,205,194,399 -5113222,234,217,451 -5113223,219,153,372 -5113224,291,287,578 -5113225,223,181,404 -5113226,297,289,586 -5113227,142,170,312 -5113228,156,165,321 -5113229,185,194,379 -5113230,379,348,727 -5113231,172,183,355 -5113232,238,250,488 -5113233,348,310,658 -5113234,270,239,509 -5113235,176,158,334 -5113236,311,263,574 -5113237,144,159,303 -5113238,241,235,476 -5113239,209,188,397 -5113240,268,243,511 -5113241,91,100,191 -5113242,172,176,348 -5113243,138,102,240 -5113301,198,185,383 -5113302,347,344,691 -5113303,188,171,359 -5113304,485,543,1028 -5113305,320,303,623 -5113306,156,166,322 -5113307,206,218,424 -5113308,610,568,1178 -5113309,181,179,360 -5113310,282,257,539 -5113311,183,189,372 -5113312,241,211,452 -5113313,263,262,525 -5113314,545,599,1144 -5113315,443,415,858 -5113316,291,295,586 -5113317,249,240,489 -5113318,329,365,694 -5113319,398,417,815 -5113320,433,449,882 -5113321,468,498,966 -5113322,266,267,533 -5113323,214,218,432 -5113324,246,282,528 -5113325,184,178,362 -5113326,154,165,319 -5113327,178,179,357 -5113328,291,267,558 -5113329,159,158,317 -5113330,363,415,778 -5113331,303,321,624 -5113332,148,149,297 -5113333,478,463,941 -5113334,0,0,0 -5113335,771,3,774 -5113401,115,116,231 -5113402,175,168,343 -5113403,248,263,511 -5113404,149,133,282 -5113405,103,238,341 -5113406,195,201,396 -5113407,134,123,257 -5113408,205,275,480 -5113409,178,157,335 -5113410,183,163,346 -5113411,267,254,521 -5113412,199,216,415 -5113413,220,190,410 -5113414,335,351,686 -5113415,3,3,6 -5113416,307,352,659 -5113417,178,169,347 -5113418,210,205,415 -5113419,104,124,228 -5113420,230,243,473 -5113421,264,297,561 -5113422,212,183,395 -5113423,54,66,120 -5113424,289,245,534 -5113425,240,197,437 -5113426,239,202,441 -5113427,231,229,460 -5113428,180,170,350 -5113429,166,172,338 -5113430,185,170,355 -5113431,139,125,264 -5113432,217,189,406 -5113433,313,344,657 -5113434,210,205,415 -5113435,135,145,280 -5113436,274,335,609 -5113437,166,146,312 -5113438,317,294,611 -5113439,254,255,509 -5113440,235,196,431 -5113441,335,340,675 -5113442,232,336,568 -5113443,245,237,482 -5113444,217,211,428 -5113445,221,229,450 -5113446,209,188,397 -5113501,255,244,499 -5113502,216,213,429 -5113503,120,132,252 -5113504,339,366,705 -5113505,332,353,685 -5113506,450,452,902 -5113507,259,261,520 -5113508,251,244,495 -5113509,250,270,520 -5113510,207,216,423 -5113511,257,264,521 -5113512,336,346,682 -5113513,328,305,633 -5113514,317,340,657 -5113515,359,340,699 -5113516,413,417,830 -5113517,168,196,364 -5113518,214,245,459 -5113519,173,161,334 -5113520,123,105,228 -5113521,195,197,392 -5113522,393,400,793 -5113523,289,307,596 -5113524,182,168,350 -5113525,61,68,129 -5113526,724,698,1422 -5113601,137,112,249 -5113602,190,174,364 -5113603,154,125,279 -5113604,212,181,393 -5113605,99,87,186 -5113606,302,272,574 -5113607,132,133,265 -5113608,226,240,466 -5113609,209,209,418 -5113610,152,138,290 -5113611,221,195,416 -5113612,199,161,360 -5113613,209,312,521 -5113614,310,311,621 -5113615,307,317,624 -5113616,242,241,483 -5113617,174,187,361 -5113618,268,265,533 -5113619,208,156,364 -5113620,246,224,470 -5113621,272,311,583 -5113622,78,63,141 -5113623,118,115,233 -5113624,173,164,337 -5113625,234,305,539 -5113626,155,132,287 -5113627,156,134,290 -5113628,207,201,408 -5113629,380,354,734 -5113701,143,142,285 -5113702,196,216,412 -5113703,181,190,371 -5113704,249,228,477 -5113705,240,209,449 -5113706,243,220,463 -5113707,135,154,289 -5113708,268,303,571 -5113709,294,313,607 -5113710,139,154,293 -5113711,194,198,392 -5113712,215,202,417 -5113713,190,224,414 -5113714,149,156,305 -5113715,177,199,376 -5113716,193,184,377 -5113717,194,217,411 -5113718,213,252,465 -5113719,290,283,573 -5113720,120,137,257 -5113721,244,240,484 -5113722,132,122,254 -5113723,225,234,459 -5113724,276,275,551 -5113725,171,208,379 -5113726,229,250,479 -5113727,159,164,323 -5113728,217,218,435 -5113729,198,182,380 -5113730,203,191,394 -5113731,245,257,502 -5113732,219,196,415 -5113733,127,126,253 -5113734,192,204,396 -5113735,182,186,368 -5113736,390,383,773 -5113737,201,178,379 -5113738,177,173,350 -5113739,268,247,515 -5113740,181,189,370 -5113741,159,157,316 -5113742,178,192,370 -5113743,170,179,349 -5113744,176,176,352 -5113745,163,145,308 -5113746,101,112,213 -5113747,160,197,357 -5113748,277,256,533 -5113749,211,238,449 -5113750,183,147,330 -5113751,228,219,447 -5113752,119,118,237 -5113753,163,128,291 -5113754,144,157,301 -5113755,254,264,518 -5113756,95,101,196 -5113757,181,186,367 -5113758,178,198,376 -5113759,0,0,0 -5113801,89,101,190 -5113802,470,446,916 -5113803,237,260,497 -5113804,282,273,555 -5113805,455,495,950 -5113806,0,0,0 -5113807,197,200,397 -5113808,163,221,384 -5113809,119,124,243 -5113810,185,173,358 -5113811,165,164,329 -5113812,133,116,249 -5113813,235,260,495 -5113814,249,318,567 -5113815,205,216,421 -5113816,102,105,207 -5113817,0,0,0 -5113818,171,176,347 -5113819,231,223,454 -5113820,196,212,408 -5113821,208,211,419 -5113822,287,257,544 -5113823,207,184,391 -5113824,146,150,296 -5113825,246,231,477 -5113826,264,256,520 -5113827,163,144,307 -5113828,169,194,363 -5113829,374,393,767 -5113830,402,420,822 -5113831,178,173,351 -5113832,228,240,468 -5113833,271,272,543 -5113834,200,217,417 -5113835,179,163,342 -5113836,208,205,413 -5113837,252,265,517 -5113838,0,0,0 -5113839,0,0,0 -5113901,143,134,277 -5113902,256,287,543 -5113903,273,257,530 -5113904,252,265,517 -5113905,364,348,712 -5113906,379,440,819 -5113907,173,157,330 -5113908,213,191,404 -5113909,210,207,417 -5113910,126,128,254 -5113911,292,307,599 -5113912,434,458,892 -5113913,193,178,371 -5113914,186,184,370 -5113915,235,211,446 -5113916,140,114,254 -5113917,150,139,289 -5113918,281,299,580 -5113919,242,216,458 -5113920,238,230,468 -5113921,236,243,479 -5113922,261,237,498 -5113923,286,276,562 -5113924,188,191,379 -5113925,166,163,329 -5114001,255,250,505 -5114002,205,207,412 -5114003,194,198,392 -5114004,185,157,342 -5114005,201,217,418 -5114006,193,267,460 -5114007,173,175,348 -5114008,165,195,360 -5114009,277,279,556 -5114010,167,195,362 -5114011,120,126,246 -5114012,224,233,457 -5114013,247,275,522 -5114014,162,171,333 -5114015,283,244,527 -5114016,313,321,634 -5114017,231,213,444 -5114018,191,183,374 -5114019,244,256,500 -5114020,184,169,353 -5114021,215,216,431 -5114022,177,172,349 -5114023,185,243,428 -5114024,254,281,535 -5114025,151,130,281 -5114026,211,236,447 -5114027,247,284,531 -5114028,202,202,404 -5114029,123,129,252 -5114030,150,137,287 -5114031,144,138,282 -5114032,352,340,692 -5114033,208,198,406 -5114034,322,324,646 -5114035,6,3,9 -5114101,5,4,9 -5114102,76,58,134 -5114103,186,230,416 -5114104,229,226,455 -5114105,199,217,416 -5114106,172,192,364 -5114107,158,166,324 -5114108,273,291,564 -5114109,132,133,265 -5114110,229,219,448 -5114111,166,157,323 -5114112,174,158,332 -5114113,225,207,432 -5114114,226,227,453 -5114115,87,83,170 -5114116,208,180,388 -5114117,133,131,264 -5114118,138,145,283 -5114119,165,184,349 -5114120,245,120,365 -5114121,221,209,430 -5114122,136,123,259 -5114123,93,103,196 -5114124,179,171,350 -5114125,182,188,370 -5114126,227,234,461 -5114127,187,360,547 -5114128,151,176,327 -5114129,148,147,295 -5114130,131,135,266 -5114131,238,253,491 -5114132,131,158,289 -5114133,154,133,287 -5114201,173,193,366 -5114202,816,821,1637 -5114203,392,433,825 -5114204,396,406,802 -5114205,227,200,427 -5114206,284,246,530 -5114207,140,166,306 -5114208,359,386,745 -5114209,577,597,1174 -5114210,144,139,283 -5114211,305,278,583 -5114212,90,85,175 -5114213,145,157,302 -5114301,139,133,272 -5114302,175,144,319 -5114303,156,147,303 -5114304,200,200,400 -5114305,286,283,569 -5114306,121,129,250 -5114307,155,169,324 -5114308,241,228,469 -5114309,157,167,324 -5114310,143,142,285 -5114311,204,195,399 -5114312,301,301,602 -5114313,231,253,484 -5114314,198,199,397 -5114315,146,135,281 -5114401,237,0,237 -5114402,128,118,246 -5114403,216,201,417 -5114404,171,166,337 -5114405,140,139,279 -5114406,206,217,423 -5114407,185,165,350 -5114408,133,127,260 -5114409,158,139,297 -5114410,54,46,100 -5114411,164,156,320 -5114412,177,192,369 -5114413,156,165,321 -5114501,132,118,250 -5114502,241,325,566 -5114503,163,176,339 -5114504,227,240,467 -5114505,280,330,610 -5114506,226,252,478 -5114507,152,179,331 -5114508,282,302,584 -5114509,181,188,369 -5114510,236,244,480 -5114511,220,247,467 -5114512,146,168,314 -5114513,203,214,417 -5114514,205,243,448 -5114515,218,264,482 -5114516,60,259,319 -5114517,245,264,509 -5114518,244,267,511 -5114519,189,218,407 -5114520,179,263,442 -5114521,227,258,485 -5114522,198,219,417 -5114523,276,288,564 -5114524,214,239,453 -5114525,247,252,499 -5114526,229,239,468 -5114527,161,193,354 -5114528,197,184,381 -5114529,165,160,325 -5114530,323,339,662 -5114531,0,0,0 -5114601,171,156,327 -5114602,128,93,221 -5114603,163,170,333 -5114604,312,273,585 -5114605,325,246,571 -5114606,304,423,727 -5114607,169,131,300 -5114608,178,243,421 -5114609,146,138,284 -5114610,235,223,458 -5114611,139,118,257 -5114612,260,249,509 -5114613,236,340,576 -5114614,224,253,477 -5114615,185,181,366 -5114616,176,169,345 -5114617,283,315,598 -5114618,153,163,316 -5114619,107,118,225 -5114620,176,168,344 -5114621,289,306,595 -5114622,132,155,287 -5114623,152,154,306 -5114624,135,169,304 -5114625,133,135,268 -5114626,167,190,357 -5114627,208,217,425 -5114628,0,0,0 -5114629,189,5,194 -5114630,0,0,0 -5114701,248,253,501 -5114702,230,300,530 -5114703,281,268,549 -5114704,182,210,392 -5114705,195,196,391 -5114706,277,328,605 -5114707,152,160,312 -5114708,254,234,488 -5114709,119,102,221 -5114710,301,286,587 -5114711,225,114,339 -5114712,243,244,487 -5114713,208,232,440 -5114714,203,241,444 -5114715,169,184,353 -5114716,206,191,397 -5114717,232,198,430 -5114718,232,230,462 -5114719,120,111,231 -5114720,288,323,611 -5114721,0,0,0 -5114722,295,207,502 -5114723,120,114,234 -5114724,162,170,332 -5114725,175,181,356 -5114726,352,345,697 -5114727,233,241,474 -5114728,251,236,487 -5114729,203,181,384 -5114730,196,189,385 -5114731,141,109,250 -5114732,219,216,435 -5114733,126,137,263 -5114734,143,158,301 -5114735,124,158,282 -5114736,261,267,528 -5114737,184,207,391 -5114738,0,0,0 -5114739,116,101,217 -5114740,157,162,319 -5114741,111,123,234 -5114742,182,199,381 -5114743,122,112,234 -5114801,1119,1115,2234 -5114802,977,940,1917 -5114803,286,273,559 -5114804,505,521,1026 -5114805,542,590,1132 -5114806,349,380,729 -5114807,138,144,282 -5114808,280,281,561 -5114809,318,345,663 -5114810,253,248,501 -5114811,319,298,617 -5114812,196,185,381 -5114813,173,159,332 -5114814,147,138,285 -5114815,163,162,325 -5114816,334,348,682 -5114817,236,258,494 -5114818,268,277,545 -5114819,277,287,564 -5114820,170,199,369 -5114901,149,128,277 -5114902,46,46,92 -5114903,200,209,409 -5114904,232,233,465 -5114905,179,165,344 -5114906,245,246,491 -5114907,138,149,287 -5114908,231,213,444 -5114909,218,266,484 -5114910,305,320,625 -5114911,231,243,474 -5114912,186,185,371 -5114913,232,216,448 -5114914,235,223,458 -5114915,134,151,285 -5115001,14,6,20 -5115101,0,0,0 -5115201,349,367,716 -5115202,227,234,461 -5115203,156,145,301 -5115204,231,255,486 -5115205,224,218,442 -5115206,225,218,443 -5115207,318,292,610 -5115208,136,139,275 -5115209,257,284,541 -5115210,92,104,196 -5115211,293,312,605 -5115212,334,353,687 -5115213,157,154,311 -5115214,162,190,352 -5115215,224,214,438 -5115216,342,320,662 -5115301,208,235,443 -5115302,127,153,280 -5115303,230,229,459 -5115304,158,153,311 -5115305,163,157,320 -5115306,251,267,518 -5115307,199,168,367 -5115308,199,210,409 -5115309,171,158,329 -5115310,167,170,337 -5115311,155,147,302 -5115312,200,214,414 -5115313,131,134,265 -5115314,134,149,283 -5115315,208,204,412 -5115316,197,177,374 -5115317,205,212,417 -5115318,249,292,541 -5115319,220,225,445 -5115320,226,282,508 -5115401,191,166,357 -5115402,201,197,398 -5115403,225,223,448 -5115404,275,336,611 -5115405,168,167,335 -5115406,148,183,331 -5115407,271,283,554 -5115408,232,266,498 -5115409,209,175,384 -5115410,320,281,601 -5115411,281,265,546 -5115412,292,351,643 -5115413,309,284,593 -5115414,279,232,511 -5115415,208,187,395 -5115416,240,232,472 -5115417,137,151,288 -5115418,168,197,365 -5115419,142,165,307 -5115420,269,323,592 -5115421,318,310,628 -5115501,10,4,14 -5115601,282,280,562 -5115602,151,152,303 -5115603,0,0,0 -5115604,119,121,240 -5115605,124,130,254 -5115606,143,132,275 -5115607,270,306,576 -5115608,160,146,306 -5115701,222,0,222 -5115801,76,81,157 -5115802,200,193,393 -5115803,12,19,31 -5115901,171,171,342 -5115902,160,166,326 -5115903,117,120,237 -5115904,230,239,469 -5115905,185,204,389 -5115906,180,313,493 -5115907,231,202,433 -5115908,235,247,482 -5115909,232,233,465 -5115910,256,262,518 -5115911,239,240,479 -5115912,364,331,695 -5115913,182,151,333 -5115914,164,174,338 -5115915,177,152,329 -5115916,305,322,627 -5115917,187,177,364 -5115918,243,241,484 -5115919,345,328,673 -5115920,263,277,540 -5115921,212,191,403 -5115922,144,158,302 -5115923,176,174,350 -5115924,258,264,522 -5115925,227,225,452 -5116001,235,232,467 -5116002,263,263,526 -5116003,114,118,232 -5116004,217,204,421 -5116005,163,175,338 -5116006,158,167,325 -5116007,193,183,376 -5116008,125,126,251 -5116009,207,230,437 -5116010,226,214,440 -5116011,304,286,590 -5116012,117,148,265 -5116013,259,253,512 -5116014,171,213,384 -5116015,167,158,325 -5116016,197,165,362 -5116017,193,211,404 -5116018,173,156,329 -5116019,175,177,352 -5116020,256,279,535 -5116021,121,111,232 -5116022,180,177,357 -5116023,273,352,625 -5116101,124,97,221 -5116102,223,233,456 -5116103,192,194,386 -5116104,554,543,1097 -5116105,189,190,379 -5116106,177,162,339 -5116107,117,118,235 -5116108,276,287,563 -5116109,322,354,676 -5116110,203,212,415 -5116111,617,550,1167 -5116112,95,95,190 -5116113,409,373,782 -5116114,178,180,358 -5116115,276,244,520 -5116116,219,212,431 -5116117,249,248,497 -5116118,138,161,299 -5116119,179,174,353 -5116120,263,354,617 -5116121,212,241,453 -5116122,259,251,510 -5116201,91,82,173 -5116202,222,176,398 -5116301,122,107,229 -5116302,370,374,744 -5116303,308,300,608 -5116304,0,0,0 -5116305,208,182,390 -5116306,117,112,229 -5116307,258,253,511 -5116308,145,151,296 -5116309,263,249,512 -5116310,148,130,278 -5116311,311,295,606 -5116312,174,174,348 -5116313,175,159,334 -5116314,229,259,488 -5116315,125,124,249 -5116316,234,245,479 -5116317,265,248,513 -5116318,153,156,309 -5116401,179,188,367 -5116402,160,168,328 -5116403,133,130,263 -5116404,147,166,313 -5116405,177,166,343 -5116406,188,209,397 -5116407,208,215,423 -5116408,238,248,486 -5116409,261,261,522 -5116410,288,358,646 -5116411,178,170,348 -5116412,188,202,390 -5116413,171,192,363 -5116414,206,256,462 -5116415,190,203,393 -5116416,270,282,552 -5116417,164,170,334 -5116501,0,0,0 -5116502,311,318,629 -5116503,316,320,636 -5116504,267,304,571 -5116505,204,204,408 -5116506,178,165,343 -5116507,243,315,558 -5116508,205,121,326 -5116509,281,297,578 -5116510,207,211,418 -5116511,205,206,411 -5116512,137,160,297 -5116513,253,219,472 -5116514,190,136,326 -5116515,307,315,622 -5116516,274,256,530 -5116517,306,331,637 -5116518,231,241,472 -5116519,278,261,539 -5116520,151,201,352 -5116521,172,169,341 -5116522,275,257,532 -5116523,117,145,262 -5116524,113,106,219 -5116525,62,52,114 -5116526,247,280,527 -5116527,201,185,386 -5116528,258,320,578 -5116529,118,138,256 -5116530,184,178,362 -5116531,119,92,211 -5116532,165,172,337 -5116601,15,10,25 -5116602,162,143,305 -5116603,103,107,210 -5116604,208,219,427 -5116605,247,230,477 -5116606,0,0,0 -5116607,233,251,484 -5116608,310,316,626 -5116609,255,258,513 -5116610,320,289,609 -5116611,160,192,352 -5116612,166,225,391 -5116613,250,296,546 -5116614,196,196,392 -5116615,132,153,285 -5116616,141,155,296 -5116617,188,192,380 -5116618,180,174,354 -5116619,173,254,427 -5116620,154,169,323 -5116621,95,98,193 -5116622,162,194,356 -5116623,158,176,334 -5116624,186,184,370 -5116625,255,293,548 -5116626,172,201,373 -5116627,52,54,106 -5116628,269,272,541 -5116629,127,131,258 -5116630,140,174,314 -5116631,135,151,286 -5116632,166,164,330 -5116633,225,228,453 -5116634,355,370,725 -5116635,270,272,542 -5116636,134,153,287 -5116701,0,0,0 -5116702,0,0,0 -5116801,170,153,323 -5116802,33,30,63 -5116803,100,93,193 -5116804,148,108,256 -5116805,151,146,297 -5116901,606,627,1233 -5116902,232,276,508 -5116903,0,0,0 -5116904,160,177,337 -5116905,104,127,231 -5116906,0,0,0 -5116907,249,257,506 -5116908,276,283,559 -5116909,286,283,569 -5116910,255,268,523 -5116911,528,481,1009 -5116912,265,269,534 -5116913,218,206,424 -5116914,284,280,564 -5116915,407,422,829 -5117001,304,313,617 -5117002,0,0,0 -5117003,281,389,670 -5117004,178,180,358 -5117005,172,180,352 -5117006,266,282,548 -5117007,149,134,283 -5117008,271,262,533 -5117009,289,290,579 -5117010,191,185,376 -5117011,169,177,346 -5117012,208,222,430 -5117013,199,220,419 -5117014,290,303,593 -5117015,298,310,608 -5117016,336,319,655 -5117017,3,0,3 -5117101,297,242,539 -5117102,571,0,571 -5117103,258,220,478 -5117104,183,166,349 -5117201,0,0,0 -5117202,43,65,108 -5117301,9,0,9 -5117401,145,152,297 -5117402,126,157,283 -5117403,9,10,19 -5117404,173,165,338 -5117405,0,0,0 -5117406,266,277,543 -5117407,144,124,268 -5117408,127,126,253 -5117409,114,126,240 -5117410,231,227,458 -5117411,264,259,523 -5117412,217,230,447 -5117413,257,271,528 -5117414,324,359,683 -5117415,182,170,352 -5117416,146,135,281 -5117417,190,169,359 -5117418,281,285,566 -5117419,123,129,252 -5117420,317,312,629 -5117421,154,142,296 -5117422,327,328,655 -5117423,307,294,601 -5117424,198,175,373 -5117425,204,168,372 -5117426,208,199,407 -5117427,172,171,343 -5117428,245,241,486 -5117501,180,196,376 -5117502,222,232,454 -5117503,282,253,535 -5117504,266,303,569 -5117505,192,223,415 -5117506,142,182,324 -5117507,175,193,368 -5117508,255,253,508 -5117509,238,236,474 -5117510,221,233,454 -5117511,251,234,485 -5117512,183,188,371 -5117513,155,176,331 -5117514,204,251,455 -5117515,232,225,457 -5117516,249,286,535 -5117517,257,274,531 -5117518,250,288,538 -5117519,170,169,339 -5117520,236,285,521 -5117521,178,205,383 -5117522,158,166,324 -5117523,268,296,564 -5117524,143,178,321 -5117601,201,204,405 -5117602,186,250,436 -5117603,237,247,484 -5117604,163,168,331 -5117605,125,112,237 -5117606,256,231,487 -5117607,285,289,574 -5117608,137,131,268 -5117609,258,256,514 -5117701,160,173,333 -5117702,221,223,444 -5117703,234,269,503 -5117704,183,200,383 -5117705,179,177,356 -5117706,175,201,376 -5117707,162,218,380 -5117708,217,255,472 -5117709,212,216,428 -5117710,175,218,393 -5117711,155,175,330 -5117712,166,186,352 -5117713,344,336,680 -5117714,141,153,294 -5117715,187,245,432 -5117716,193,224,417 -5117717,235,256,491 -5117718,247,260,507 -5117719,236,281,517 -5117720,192,252,444 -5117721,202,255,457 -5117722,125,117,242 -5117723,158,214,372 -5117724,237,242,479 -5117725,196,246,442 -5117726,186,199,385 -5117727,212,228,440 -5117728,314,354,668 -5117729,167,200,367 -5117730,236,324,560 -5117801,293,280,573 -5117802,223,256,479 -5117803,146,139,285 -5117804,221,228,449 -5117805,229,271,500 -5117806,226,240,466 -5117807,262,314,576 -5117808,192,201,393 -5117809,271,290,561 -5117810,206,188,394 -5117811,233,243,476 -5117812,250,255,505 -5117813,230,258,488 -5117814,124,157,281 -5117815,349,398,747 -5117816,150,156,306 -5117817,172,248,420 -5117818,189,189,378 -5117819,135,118,253 -5117820,244,263,507 -5117821,135,152,287 -5117822,196,249,445 -5117823,199,235,434 -5117824,196,207,403 -5117825,177,215,392 -5117826,325,297,622 -5117827,326,389,715 -5117828,101,100,201 -5117829,231,248,479 -5117830,170,212,382 -5117831,208,264,472 -5117901,131,122,253 -5117902,199,202,401 -5117903,245,258,503 -5117904,94,126,220 -5117905,291,279,570 -5117906,187,187,374 -5117907,126,235,361 -5117908,207,239,446 -5117909,166,187,353 -5117910,219,213,432 -5117911,222,267,489 -5117912,304,343,647 -5117913,272,264,536 -5117914,198,215,413 -5117915,166,169,335 -5117916,292,280,572 -5117917,310,321,631 -5118001,150,144,294 -5118002,157,145,302 -5118003,194,236,430 -5118004,144,147,291 -5118005,129,136,265 -5118006,247,235,482 -5118007,157,157,314 -5118008,261,252,513 -5118009,177,179,356 -5118010,136,141,277 -5118011,195,191,386 -5118012,272,270,542 -5118013,158,153,311 -5118014,158,146,304 -5118015,294,277,571 -5118016,215,228,443 -5118017,233,226,459 -5118018,107,113,220 -5118019,174,191,365 -5118020,300,292,592 -5118021,265,241,506 -5118022,182,172,354 -5118023,113,111,224 -5118024,117,129,246 -5118025,92,100,192 -5118026,0,0,0 -5118027,116,117,233 -5118028,140,153,293 -5118029,256,284,540 -5118030,134,118,252 -5118031,135,124,259 -5118032,133,143,276 -5118101,162,200,362 -5118102,213,229,442 -5118103,210,200,410 -5118104,256,243,499 -5118105,198,214,412 -5118106,211,240,451 -5118107,273,284,557 -5118108,205,234,439 -5118109,213,247,460 -5118110,204,218,422 -5118111,295,301,596 -5118112,279,315,594 -5118113,271,292,563 -5118114,199,230,429 -5118115,198,225,423 -5118116,251,250,501 -5118117,119,112,231 -5118118,293,308,601 -5118119,215,346,561 -5118120,302,324,626 -5118121,256,264,520 -5118122,211,249,460 -5118123,232,241,473 -5118124,296,314,610 -5118125,308,324,632 -5118126,255,257,512 -5118127,102,149,251 -5118128,149,169,318 -5118129,215,214,429 -5118130,299,333,632 -5118131,244,354,598 -5118132,213,243,456 -5118201,270,270,540 -5118202,239,249,488 -5118203,99,117,216 -5118204,199,203,402 -5118205,143,168,311 -5118206,198,224,422 -5118207,202,203,405 -5118208,188,213,401 -5118209,204,221,425 -5118210,280,281,561 -5118211,115,112,227 -5118212,220,204,424 -5118213,410,599,1009 -5118214,216,230,446 -5118215,137,133,270 -5118216,159,174,333 -5118217,216,203,419 -5118218,202,191,393 -5118219,151,164,315 -5118220,182,194,376 -5118221,278,266,544 -5118222,171,185,356 -5118223,267,273,540 -5118224,344,322,666 -5118225,156,160,316 -5118226,149,144,293 -5118227,290,319,609 -5118228,205,194,399 -5118301,212,225,437 -5118302,284,347,631 -5118303,170,215,385 -5118304,223,221,444 -5118305,197,176,373 -5118306,276,334,610 -5118307,148,193,341 -5118308,278,372,650 -5118309,187,202,389 -5118310,264,243,507 -5118401,155,146,301 -5118402,142,127,269 -5118403,237,275,512 -5118404,210,204,414 -5118405,133,125,258 -5118406,151,151,302 -5118407,0,0,0 -5118408,153,164,317 -5118409,265,275,540 -5118410,266,250,516 -5118411,209,186,395 -5118412,108,121,229 -5118413,163,170,333 -5118414,176,201,377 -5118415,133,142,275 -5118416,132,135,267 -5118417,152,149,301 -5118418,298,296,594 -5118501,0,0,0 -5118502,669,676,1345 -5118503,339,342,681 -5118504,569,593,1162 -5118505,679,704,1383 -5118506,173,175,348 -5118507,125,129,254 -5118508,127,120,247 -5118509,195,195,390 -5118510,192,178,370 -5118511,318,320,638 -5118512,179,162,341 -5118513,173,167,340 -5118514,147,136,283 -5118515,495,487,982 -5118516,144,140,284 -5118517,266,312,578 -5118518,130,168,298 -5118519,201,211,412 -5118520,190,190,380 -5118521,287,300,587 -5118522,583,597,1180 -5118523,695,768,1463 -5118524,1128,1105,2233 -5118525,198,208,406 -5118601,176,181,357 -5118602,281,287,568 -5118603,199,205,404 -5118604,270,280,550 -5118605,305,281,586 -5118606,180,214,394 -5118607,137,149,286 -5118608,106,153,259 -5118609,265,306,571 -5118610,205,250,455 -5118611,173,177,350 -5118612,172,165,337 -5118613,169,160,329 -5118614,143,115,258 -5118615,154,168,322 -5118616,246,264,510 -5118617,225,206,431 -5118618,158,141,299 -5118619,166,177,343 -5118620,242,263,505 -5118621,246,248,494 -5118701,149,135,284 -5118702,145,135,280 -5118703,234,198,432 -5118704,275,280,555 -5118705,213,265,478 -5118706,124,130,254 -5118707,284,313,597 -5118708,165,159,324 -5118709,253,261,514 -5118710,217,207,424 -5118711,232,227,459 -5118712,357,373,730 -5118713,267,247,514 -5118714,193,228,421 -5118715,225,231,456 -5118716,166,172,338 -5118717,239,238,477 -5118718,237,322,559 -5118719,262,265,527 -5118720,203,213,416 -5118721,436,431,867 -5118722,0,0,0 -5118723,43,34,77 -5118724,16,5,21 -5118725,167,177,344 -5118726,198,209,407 -5118727,143,159,302 -5118728,165,158,323 -5118729,179,179,358 -5118730,180,186,366 -5118731,153,164,317 -5118732,248,240,488 -5118733,343,325,668 -5118734,270,248,518 -5118801,0,0,0 -5118802,143,128,271 -5118803,184,139,323 -5118804,223,263,486 -5118805,221,248,469 -5118806,100,171,271 -5118807,285,257,542 -5118808,380,310,690 -5118809,157,130,287 -5118810,316,304,620 -5118811,267,370,637 -5118812,155,166,321 -5118813,229,185,414 -5118814,268,301,569 -5118815,235,243,478 -5118816,204,319,523 -5118817,0,0,0 -5118818,256,306,562 -5118819,440,73,513 -5118820,128,136,264 -5118821,316,318,634 -5118822,232,213,445 -5118823,64,49,113 -5118824,177,193,370 -5118825,346,376,722 -5118826,239,237,476 -5118827,202,204,406 -5118828,231,212,443 -5118829,361,337,698 -5118830,206,206,412 -5118831,242,240,482 -5118832,189,186,375 -5118833,24,16,40 -5118834,185,176,361 -5118835,308,307,615 -5118901,7,6,13 -5119001,228,216,444 -5119002,241,243,484 -5119003,220,241,461 -5119004,208,209,417 -5119005,151,139,290 -5119006,169,157,326 -5119007,281,256,537 -5119008,282,291,573 -5119009,201,226,427 -5119010,203,198,401 -5119011,264,256,520 -5119012,207,213,420 -5119013,231,199,430 -5119014,173,174,347 -5119015,237,242,479 -5119016,116,95,211 -5119017,228,256,484 -5119018,175,166,341 -5119019,182,195,377 -5119020,148,161,309 -5119021,190,205,395 -5119022,165,164,329 -5119023,190,251,441 -5119024,141,146,287 -5119025,221,242,463 -5119026,516,532,1048 -5119101,319,322,641 -5119102,145,172,317 -5119103,269,263,532 -5119104,195,193,388 -5119105,150,133,283 -5119106,186,190,376 -5119107,184,155,339 -5119108,151,160,311 -5119109,271,254,525 -5119110,335,313,648 -5119111,367,349,716 -5119112,353,331,684 -5119113,426,343,769 -5119114,248,237,485 -5119115,164,174,338 -5119116,318,331,649 -5119117,143,147,290 -5119118,293,284,577 -5119119,207,205,412 -5119120,424,369,793 -5119121,599,619,1218 -5119122,182,180,362 -5119123,147,163,310 -5119124,285,306,591 -5119125,229,233,462 -5119126,251,245,496 -5119127,368,354,722 -5119128,231,199,430 -5119129,336,302,638 -5119130,160,142,302 -5119201,146,168,314 -5119202,212,196,408 -5119203,200,209,409 -5119204,250,240,490 -5119205,148,143,291 -5119206,212,229,441 -5119207,225,218,443 -5119208,151,158,309 -5119209,160,177,337 -5119210,198,176,374 -5119211,175,175,350 -5119212,343,349,692 -5119213,253,278,531 -5119214,152,172,324 -5119215,117,140,257 -5119216,130,148,278 -5119217,325,335,660 -5119218,328,329,657 -5119219,278,295,573 -5119220,283,278,561 -5119221,142,155,297 -5119222,195,196,391 -5119223,227,241,468 -5119224,216,213,429 -5119225,154,162,316 -5119226,187,187,374 -5119227,163,173,336 -5119228,182,217,399 -5119229,133,138,271 -5119301,175,179,354 -5119302,208,203,411 -5119303,151,134,285 -5119304,154,140,294 -5119305,272,249,521 -5119306,119,104,223 -5119307,221,223,444 -5119308,173,197,370 -5119309,250,274,524 -5119310,279,283,562 -5119311,175,190,365 -5119312,150,173,323 -5119313,139,114,253 -5119314,259,249,508 -5119315,149,192,341 -5119316,173,187,360 -5119317,188,210,398 -5119318,159,147,306 -5119319,103,115,218 -5119320,145,164,309 -5119321,170,196,366 -5119322,256,251,507 -5119323,211,203,414 -5119324,228,218,446 -5119325,311,311,622 -5119326,276,249,525 -5119327,207,240,447 -5119328,203,201,404 -5119401,175,193,368 -5119402,102,107,209 -5119403,3,0,3 -5119404,0,0,0 -5119405,165,177,342 -5119406,148,174,322 -5119407,248,245,493 -5119408,302,267,569 -5119409,238,228,466 -5119410,181,170,351 -5119411,148,195,343 -5119412,159,186,345 -5119413,179,213,392 -5119414,158,175,333 -5119415,191,201,392 -5119416,190,181,371 -5119417,244,266,510 -5119418,150,152,302 -5119419,111,118,229 -5119420,203,217,420 -5119421,230,205,435 -5119422,135,115,250 -5119423,121,109,230 -5119424,174,184,358 -5119425,220,237,457 -5119426,147,137,284 -5119427,94,103,197 -5119428,175,171,346 -5119429,97,101,198 -5119430,188,200,388 -5119431,249,237,486 -5119432,146,184,330 -5119433,155,122,277 -5119434,96,80,176 -5119435,131,122,253 -5119501,0,0,0 -5119502,89,88,177 -5119503,119,88,207 -5119504,3,3,6 -5119505,323,286,609 -5119506,290,264,554 -5119507,122,112,234 -5119508,234,107,341 -5119509,141,115,256 -5119510,89,72,161 -5119511,231,215,446 -5119512,264,228,492 -5119513,0,4,4 -5119514,226,212,438 -5119515,145,104,249 -5119601,98,94,192 -5119602,269,217,486 -5119603,202,182,384 -5119604,164,163,327 -5119605,160,188,348 -5119606,157,180,337 -5119607,224,213,437 -5119608,214,178,392 -5119609,184,208,392 -5119610,160,182,342 -5119611,153,162,315 -5119612,193,189,382 -5119613,123,99,222 -5119614,199,156,355 -5119615,113,100,213 -5119616,123,98,221 -5119701,0,0,0 -5119702,62,56,118 -5119703,109,120,229 -5119704,123,106,229 -5119705,235,188,423 -5119706,191,143,334 -5119707,103,80,183 -5119708,251,234,485 -5119709,122,134,256 -5119710,174,156,330 -5119711,165,146,311 -5119712,70,56,126 -5119713,123,98,221 -5119714,106,76,182 -5119715,274,236,510 -5119801,358,332,690 -5119802,223,228,451 -5119803,387,267,654 -5119804,221,197,418 -5119805,214,170,384 -5119806,0,0,0 -5119807,213,174,387 -5119808,136,154,290 -5119809,215,196,411 -5119810,271,230,501 -5119811,249,209,458 -5119812,271,252,523 -5119813,244,222,466 -5119814,244,206,450 -5119815,184,189,373 -5119816,240,201,441 -5119817,196,183,379 -5119818,232,214,446 -5119901,138,120,258 -5119902,51,54,105 -5119903,73,58,131 -5119904,279,248,527 -5119905,172,146,318 -5119906,274,155,429 -5119907,121,127,248 -5119908,219,217,436 -5119909,73,55,128 -5119910,199,182,381 -5119911,211,113,324 -5119912,256,244,500 -5119913,190,157,347 -5119914,304,276,580 -5119915,266,237,503 -5119916,220,237,457 -5119917,401,345,746 -5119918,299,279,578 -5119919,271,180,451 -5119920,322,180,502 -5119921,226,220,446 -5119922,232,218,450 -5119923,294,292,586 -5119924,232,211,443 -5119925,300,319,619 -5119926,407,368,775 -5119927,285,257,542 -5119928,320,287,607 -5119929,196,205,401 -5119930,207,203,410 -5119931,169,150,319 -5119932,208,209,417 -5120001,121,121,242 -5120002,98,100,198 -5120003,133,126,259 -5120004,166,185,351 -5120005,23,19,42 -5120006,190,153,343 -5120007,293,306,599 -5120008,209,194,403 -5120009,0,0,0 -5120010,149,139,288 -5120011,0,0,0 -5120012,173,183,356 -5120013,0,0,0 -5120014,0,0,0 -5120015,118,137,255 -5120016,155,160,315 -5120017,0,0,0 -5120018,185,172,357 -5120019,178,180,358 -5120020,255,242,497 -5120021,204,203,407 -5120022,219,202,421 -5120023,282,277,559 -5120024,203,197,400 -5120025,110,103,213 -5120026,232,230,462 -5120027,227,248,475 -5120028,201,191,392 -5120029,218,225,443 -5120030,274,253,527 -5120031,0,0,0 -5120101,0,0,0 -5120201,203,182,385 -5120202,0,0,0 -5120203,143,101,244 -5120204,162,162,324 -5120205,19,12,31 -5120206,365,119,484 -5120207,16,30,46 -5120208,35,47,82 -5120209,253,115,368 -5120210,235,213,448 -5120211,161,169,330 -5120212,265,229,494 -5120213,211,220,431 -5120214,161,151,312 -5120215,175,165,340 -5120216,148,123,271 -5120217,197,184,381 -5120218,238,204,442 -5120301,0,0,0 -5120302,104,101,205 -5120303,93,85,178 -5120304,80,70,150 -5120305,176,126,302 -5120306,225,249,474 -5120307,265,184,449 -5120308,452,60,512 -5120309,506,78,584 -5120310,48,45,93 -5120311,421,357,778 -5120312,103,77,180 -5120313,342,94,436 -5120314,225,192,417 -5120315,66,82,148 -5120316,91,96,187 -5120317,63,65,128 -5120318,138,124,262 -5120319,37,37,74 -5120401,0,0,0 -5120501,160,49,209 -5120502,3,3,6 -5120503,173,160,333 -5120504,207,215,422 -5120505,227,232,459 -5120506,74,38,112 -5120507,161,142,303 -5120508,86,96,182 -5120509,302,338,640 -5120510,194,211,405 -5120511,171,218,389 -5120512,242,236,478 -5120513,152,104,256 -5120514,111,92,203 -5120515,209,219,428 -5120516,163,131,294 -5120517,129,118,247 -5120518,75,53,128 -5120519,170,167,337 -5120520,168,177,345 -5120521,306,282,588 -5120522,66,46,112 -5120523,251,265,516 -5120524,153,164,317 -5120525,364,374,738 -5120526,166,130,296 -5120527,139,127,266 -5120528,179,139,318 -5120529,177,181,358 -5120530,162,147,309 -5120531,136,152,288 -5120532,202,229,431 -5120533,170,187,357 -5120534,348,369,717 -5120535,341,340,681 -5120536,156,149,305 -5120601,62,47,109 -5120602,66,63,129 -5120603,33,39,72 -5120604,83,67,150 -5120605,92,61,153 -5120606,34,36,70 -5120607,19,25,44 -5120608,17,37,54 -5120609,150,170,320 -5120610,280,299,579 -5120611,91,97,188 -5120612,198,181,379 -5120613,70,65,135 -5120614,53,51,104 -5120615,43,40,83 -5120616,89,99,188 -5120617,126,157,283 -5120618,28,28,56 -5120619,212,208,420 -5120620,122,102,224 -5120621,225,223,448 -5120622,287,294,581 -5120623,302,284,586 -5120624,288,299,587 -5120625,1556,46,1602 -5120626,56,42,98 -5120627,59,51,110 -5120628,139,168,307 -5120629,190,184,374 -5120701,166,132,298 -5120702,58,63,121 -5120703,217,247,464 -5120704,170,184,354 -5120705,237,269,506 -5120706,216,97,313 -5120707,119,138,257 -5120708,78,72,150 -5120709,264,244,508 -5120710,84,105,189 -5120711,217,191,408 -5120801,106,100,206 -5120802,123,93,216 -5120803,129,134,263 -5120804,300,121,421 -5120805,388,356,744 -5120806,7,17,24 -5120807,77,78,155 -5120808,146,134,280 -5120809,219,248,467 -5120810,249,257,506 -5120811,443,494,937 -5120812,73,66,139 -5120813,37,64,101 -5120814,323,283,606 -5120815,409,384,793 -5120816,351,306,657 -5120817,385,365,750 -5120818,293,255,548 -5120901,191,152,343 -5120902,291,304,595 -5120903,172,162,334 -5120904,126,119,245 -5120905,142,143,285 -5120906,156,119,275 -5120907,104,67,171 -5121001,240,253,493 -5121002,147,155,302 -5121003,141,126,267 -5121004,220,251,471 -5121005,135,144,279 -5121006,193,190,383 -5121007,223,258,481 -5121008,182,197,379 -5121009,159,169,328 -5121010,132,160,292 -5121011,232,233,465 -5121012,119,167,286 -5121013,253,312,565 -5121014,231,259,490 -5121015,207,250,457 -5121016,104,122,226 -5121017,273,264,537 -5121018,244,261,505 -5121019,204,297,501 -5121020,170,196,366 -5121021,195,202,397 -5121022,232,249,481 -5121023,3,0,3 -5121024,5,3,8 -5121025,189,190,379 -5121026,188,170,358 -5121027,224,257,481 -5121028,154,165,319 -5121029,162,161,323 -5121030,226,234,460 -5121031,75,70,145 -5121032,227,208,435 -5121033,237,252,489 -5121101,343,332,675 -5121102,284,266,550 -5121103,111,102,213 -5121104,266,264,530 -5121105,306,343,649 -5121106,166,166,332 -5121107,133,165,298 -5121108,213,209,422 -5121109,260,280,540 -5121110,135,130,265 -5121111,177,213,390 -5121112,124,142,266 -5121113,251,231,482 -5121114,224,215,439 -5121115,213,201,414 -5121116,179,174,353 -5121117,214,212,426 -5121118,383,124,507 -5121201,209,208,417 -5121202,137,121,258 -5121203,235,242,477 -5121204,223,207,430 -5121205,99,96,195 -5121206,224,194,418 -5121207,179,196,375 -5121208,326,300,626 -5121209,183,178,361 -5121210,152,137,289 -5121211,215,212,427 -5121212,176,170,346 -5121213,179,162,341 -5121214,185,186,371 -5121215,110,95,205 -5121216,175,193,368 -5121217,181,172,353 -5121218,109,130,239 -5121301,221,226,447 -5121302,245,268,513 -5121303,265,249,514 -5121304,184,160,344 -5121305,208,225,433 -5121306,231,225,456 -5121307,197,202,399 -5121308,301,324,625 -5121309,240,251,491 -5121310,215,212,427 -5121311,265,263,528 -5121312,218,227,445 -5121313,279,281,560 -5121314,143,148,291 -5121315,246,250,496 -5121316,332,386,718 -5121317,109,121,230 -5121318,198,208,406 -5121319,247,250,497 -5121320,183,160,343 -5121401,81,74,155 -5121402,279,251,530 -5121403,0,0,0 -5121404,264,277,541 -5121405,238,219,457 -5121406,203,220,423 -5121407,209,167,376 -5121408,217,208,425 -5121409,158,162,320 -5121410,177,163,340 -5121501,60,54,114 -5121502,39,38,77 -5121503,239,261,500 -5121504,114,118,232 -5121505,30,46,76 -5121506,152,139,291 -5121507,279,126,405 -5121508,131,97,228 -5121509,273,259,532 -5121510,633,156,789 -5121511,430,137,567 -5121512,25,18,43 -5121513,54,51,105 -5121514,93,20,113 -5121601,191,200,391 -5121602,211,197,408 -5121603,128,116,244 -5121604,132,107,239 -5121605,89,95,184 -5121606,146,142,288 -5121607,144,131,275 -5121608,77,62,139 -5121609,61,57,118 -5121610,517,203,720 -5121611,116,91,207 -5121612,124,103,227 -5121613,86,75,161 -5121614,162,131,293 -5121615,187,169,356 -5121616,134,122,256 -5121701,69,62,131 -5121702,16,15,31 -5121703,117,96,213 -5121704,94,91,185 -5121705,181,189,370 -5121706,98,88,186 -5121707,155,154,309 -5121708,145,131,276 -5121709,166,158,324 -5121710,119,116,235 -5121711,159,148,307 -5121712,191,178,369 -5121713,139,148,287 -5121714,186,151,337 -5121715,110,99,209 -5121716,236,243,479 -5121717,230,210,440 -5121718,183,179,362 -5121719,0,0,0 -5121720,204,154,358 -5121721,121,53,174 -5121722,104,78,182 -5121801,211,182,393 -5121802,225,170,395 -5121803,318,248,566 -5121804,176,160,336 -5121805,214,182,396 -5121806,388,263,651 -5121807,1861,471,2332 -5121808,316,276,592 -5121809,245,241,486 -5121810,228,223,451 -5121811,219,154,373 -5121812,1401,309,1710 -5121813,369,282,651 -5121814,351,315,666 -5121901,84,94,178 -5121902,78,77,155 -5121903,5,3,8 -5121904,66,63,129 -5121905,184,173,357 -5121906,13,10,23 -5121907,105,103,208 -5121908,53,53,106 -5121909,102,114,216 -5121910,45,37,82 -5121911,763,121,884 -5121912,91,84,175 -5121913,1561,287,1848 -5121914,42,29,71 -5121915,1130,202,1332 -5121916,658,149,807 -5121917,894,268,1162 -5122001,210,188,398 -5122002,265,215,480 -5122003,131,128,259 -5122004,96,92,188 -5122005,123,107,230 -5122006,185,158,343 -5122007,3,3,6 -5122008,6,8,14 -5122009,257,212,469 -5122010,696,526,1222 -5122011,167,136,303 -5122012,172,159,331 -5122013,364,140,504 -5122014,304,26,330 -5122015,4,0,4 -5122016,804,57,861 -5122017,525,466,991 -5122018,215,169,384 -5122019,122,96,218 -5122020,227,180,407 -5122021,165,144,309 -5122022,171,138,309 -5122023,121,124,245 -5122024,235,199,434 -5122025,145,116,261 -5122026,247,216,463 -5122027,111,66,177 -5122028,264,192,456 -5122029,186,156,342 -5122030,156,115,271 -5122031,140,128,268 -5122032,108,75,183 -5122033,292,239,531 -5122034,182,145,327 -5122035,145,121,266 -5122036,319,290,609 -5122037,178,143,321 -5122038,217,216,433 -5122039,333,271,604 -5122040,159,127,286 -5122041,196,160,356 -5122042,283,223,506 -5122043,319,281,600 -5122101,3,0,3 -5122102,123,111,234 -5122103,410,137,547 -5122104,331,200,531 -5122105,221,218,439 -5122106,220,177,397 -5122107,0,0,0 -5122108,0,0,0 -5122109,190,169,359 -5122110,279,223,502 -5122111,202,187,389 -5122112,234,209,443 -5122113,225,158,383 -5122114,218,186,404 -5122115,242,194,436 -5122116,212,200,412 -5122117,0,0,0 -5122201,0,0,0 -5122202,337,232,569 -5122203,215,181,396 -5122204,239,223,462 -5122205,39,48,87 -5122206,128,40,168 -5122207,481,141,622 -5122208,238,222,460 -5122209,171,139,310 -5122210,179,115,294 -5122211,311,285,596 -5122212,99,104,203 -5122213,116,111,227 -5122214,0,0,0 -5122215,0,0,0 -5122301,103,107,210 -5122302,0,0,0 -5122303,129,104,233 -5122304,196,170,366 -5122305,178,132,310 -5122306,149,132,281 -5122307,171,127,298 -5122308,144,122,266 -5122309,274,216,490 -5122310,223,206,429 -5122311,166,151,317 -5122312,153,146,299 -5122313,1480,237,1717 -5122314,197,141,338 -5122315,108,79,187 -5122316,3,0,3 -5122317,72,6,78 -5122318,485,118,603 -5122401,13,5,18 -5122402,176,163,339 -5122403,152,71,223 -5122404,99,18,117 -5122405,184,159,343 -5122406,138,120,258 -5122407,261,227,488 -5122408,182,165,347 -5122409,157,151,308 -5122410,0,0,0 -5122411,333,272,605 -5122412,298,284,582 -5122413,252,206,458 -5122414,365,302,667 -5122415,226,177,403 -5122416,268,269,537 -5122417,242,197,439 -5122418,237,180,417 -5122419,241,202,443 -5122420,154,149,303 -5122421,180,194,374 -5122422,258,264,522 -5122423,284,248,532 -5122424,170,128,298 -5122425,198,164,362 -5122501,260,244,504 -5122502,122,128,250 -5122503,192,211,403 -5122504,151,213,364 -5122505,308,346,654 -5122506,168,179,347 -5122507,147,145,292 -5122508,143,167,310 -5122509,260,290,550 -5122510,164,211,375 -5122511,179,228,407 -5122512,215,266,481 -5122513,135,165,300 -5122514,226,202,428 -5122515,272,310,582 -5122516,162,182,344 -5122517,177,187,364 -5122518,187,205,392 -5122519,260,297,557 -5122520,100,100,200 -5122521,306,321,627 -5122522,188,216,404 -5122523,234,289,523 -5122524,314,327,641 -5122525,114,132,246 -5122526,175,216,391 -5122527,132,178,310 -5122528,81,126,207 -5122529,87,89,176 -5122530,231,216,447 -5122531,4,8,12 -5122532,139,140,279 -5122533,245,260,505 -5122534,148,181,329 -5122535,169,176,345 -5122536,59,61,120 -5122601,171,150,321 -5122602,219,249,468 -5122603,158,137,295 -5122604,132,122,254 -5122605,168,168,336 -5122606,137,138,275 -5122607,185,169,354 -5122608,147,128,275 -5122609,126,134,260 -5122610,82,75,157 -5122701,112,128,240 -5122702,277,277,554 -5122703,181,177,358 -5122704,124,125,249 -5122705,240,242,482 -5122706,209,221,430 -5122707,17,17,34 -5122708,251,244,495 -5122709,152,165,317 -5122710,168,155,323 -5122711,179,187,366 -5122712,191,206,397 -5122801,118,147,265 -5122802,140,165,305 -5122803,0,0,0 -5122804,0,0,0 -5122805,0,0,0 -5122806,134,117,251 -5122807,91,105,196 -5122808,81,104,185 -5122809,175,164,339 -5122810,144,143,287 -5122811,147,120,267 -5122812,173,187,360 -5122813,81,88,169 -5122814,217,201,418 -5122815,126,159,285 -5122816,123,138,261 -5122817,153,141,294 -5122818,135,108,243 -5122819,115,156,271 -5122820,218,223,441 -5122821,182,176,358 -5122901,113,73,186 -5122902,124,113,237 -5122903,151,125,276 -5122904,141,128,269 -5122905,121,94,215 -5122906,198,167,365 -5122907,112,97,209 -5122908,118,121,239 -5122909,186,175,361 -5122910,125,115,240 -5122911,133,115,248 -5123001,248,221,469 -5123002,124,116,240 -5123003,159,170,329 -5123004,146,161,307 -5123005,156,188,344 -5123006,113,130,243 -5123007,133,150,283 -5123008,170,176,346 -5123009,233,201,434 -5123010,219,199,418 -5123011,119,124,243 -5123012,143,130,273 -5123013,201,200,401 -5123014,137,134,271 -5123101,141,127,268 -5123102,242,217,459 -5123103,196,158,354 -5123104,166,182,348 -5123105,151,135,286 -5123106,119,115,234 -5123107,141,136,277 -5123108,262,304,566 -5123109,280,290,570 -5123110,99,80,179 -5123111,130,128,258 -5123112,87,72,159 -5123113,125,123,248 -5123201,157,115,272 -5123202,137,139,276 -5123203,208,196,404 -5123204,151,156,307 -5123205,156,131,287 -5123206,175,167,342 -5123207,116,109,225 -5123208,178,176,354 -5123209,123,106,229 -5123210,335,22,357 -5123211,105,117,222 -5123301,194,209,403 -5123302,218,233,451 -5123303,141,135,276 -5123304,151,133,284 -5123305,305,276,581 -5123306,202,207,409 -5123307,119,118,237 -5123308,281,318,599 -5123309,260,279,539 -5123310,204,199,403 -5123311,182,236,418 -5123312,245,254,499 -5123313,142,132,274 -5123314,641,646,1287 -5123315,215,234,449 -5123316,140,140,280 -5123317,236,227,463 -5123318,170,206,376 -5123319,211,224,435 -5123320,227,238,465 -5123321,151,158,309 -5123401,127,126,253 -5123402,141,121,262 -5123403,140,111,251 -5123404,163,187,350 -5123405,75,59,134 -5123406,92,130,222 -5123407,181,225,406 -5123408,129,117,246 -5123409,135,123,258 -5123410,125,108,233 -5123411,148,158,306 -5123412,229,233,462 -5123413,204,196,400 -5123414,197,190,387 -5123415,173,173,346 -5123416,238,131,369 -5123501,0,0,0 -5123601,99,124,223 -5123602,119,132,251 -5123603,177,157,334 -5123604,214,210,424 -5123605,134,123,257 -5123606,175,161,336 -5123607,390,377,767 -5123608,143,121,264 -5123609,255,270,525 -5123610,258,246,504 -5123611,142,112,254 -5123612,144,140,284 -5123701,86,76,162 -5123702,140,96,236 -5123703,130,143,273 -5123704,173,201,374 -5123705,270,284,554 -5123706,171,146,317 -5123707,200,195,395 -5123708,341,340,681 -5123709,157,155,312 -5123710,136,129,265 -5123711,215,142,357 -5123801,190,202,392 -5123802,207,183,390 -5123803,268,260,528 -5123804,228,233,461 -5123805,165,153,318 -5123806,95,70,165 -5123807,138,130,268 -5123808,161,144,305 -5123809,178,192,370 -5123810,168,138,306 -5123811,101,104,205 -5123812,184,159,343 -5123901,104,103,207 -5123902,141,125,266 -5123903,96,116,212 -5123904,212,176,388 -5123905,291,293,584 -5123906,135,103,238 -5123907,265,236,501 -5123908,131,113,244 -5123909,43,38,81 -5123910,188,166,354 -5123911,97,91,188 -5123912,354,388,742 -5123913,75,66,141 -5123914,128,117,245 -5123915,286,198,484 -5123916,185,148,333 -5123917,245,216,461 -5123918,214,187,401 -5123919,318,288,606 -5123920,337,299,636 -5123921,146,143,289 -5123922,144,122,266 -5124001,217,243,460 -5124002,270,277,547 -5124003,229,225,454 -5124004,151,117,268 -5124005,318,301,619 -5124006,415,316,731 -5124007,255,252,507 -5124008,126,111,237 -5124009,83,66,149 -5124010,159,151,310 -5124011,130,124,254 -5124012,90,82,172 -5124013,94,77,171 -5124014,101,79,180 -5124101,186,146,332 -5124102,107,100,207 -5124103,136,113,249 -5124104,233,269,502 -5124105,286,308,594 -5124106,90,84,174 -5124107,128,97,225 -5124108,283,271,554 -5124109,101,89,190 -5124110,177,141,318 -5124111,127,114,241 -5124112,192,169,361 -5124113,104,97,201 -5124114,144,113,257 -5124115,127,110,237 -5124201,31,17,48 -5124202,298,80,378 -5124203,93,72,165 -5124204,167,110,277 -5124205,129,113,242 -5124206,137,116,253 -5124207,160,134,294 -5124208,129,102,231 -5124209,190,158,348 -5124210,227,203,430 -5124211,183,152,335 -5124212,106,81,187 -5124213,131,77,208 -5124214,45,32,77 -5124301,148,173,321 -5124302,197,203,400 -5124303,163,163,326 -5124304,134,125,259 -5124305,169,180,349 -5124306,128,142,270 -5124307,180,200,380 -5124308,186,197,383 -5124309,152,146,298 -5124310,126,129,255 -5124311,143,163,306 -5124312,110,121,231 -5124313,209,216,425 -5124314,121,138,259 -5124315,166,199,365 -5124316,157,164,321 -5124317,136,122,258 -5124318,153,163,316 -5124319,159,157,316 -5124320,208,200,408 -5124321,225,211,436 -5124322,176,182,358 -5124323,131,148,279 -5124324,122,119,241 -5124325,144,164,308 -5124326,103,95,198 -5124327,104,90,194 -5124328,114,109,223 -5124329,134,157,291 -5124330,137,135,272 -5124331,163,176,339 -5124332,115,115,230 -5124333,159,158,317 -5124334,46,58,104 -5124335,175,156,331 -5124401,186,186,372 -5124402,167,199,366 -5124403,115,116,231 -5124404,187,171,358 -5124405,187,185,372 -5124406,161,183,344 -5124407,221,189,410 -5124408,88,93,181 -5124409,180,186,366 -5124410,160,141,301 -5124411,207,205,412 -5124412,116,130,246 -5124413,205,227,432 -5124501,141,131,272 -5124502,138,174,312 -5124503,140,131,271 -5124504,279,273,552 -5124505,115,126,241 -5124506,189,191,380 -5124507,170,173,343 -5124508,153,164,317 -5124509,145,163,308 -5124510,229,208,437 -5124511,135,124,259 -5124512,153,139,292 -5124513,91,63,154 -5124514,141,122,263 -5124515,142,156,298 -5124516,138,118,256 -5124601,207,185,392 -5124602,195,189,384 -5124603,122,144,266 -5124604,90,89,179 -5124605,129,109,238 -5124606,225,214,439 -5124607,169,159,328 -5124608,197,211,408 -5124609,233,205,438 -5124610,268,276,544 -5124701,77,83,160 -5124702,91,78,169 -5124703,188,144,332 -5124704,84,62,146 -5124705,137,139,276 -5124706,120,108,228 -5124707,123,103,226 -5124708,164,166,330 -5124709,148,133,281 -5124710,127,133,260 -5124711,143,150,293 -5124712,114,82,196 -5124713,120,101,221 -5124714,236,113,349 -5124715,106,93,199 -5124716,221,186,407 -5124717,138,143,281 -5124718,127,112,239 -5124801,198,185,383 -5124802,254,248,502 -5124803,213,209,422 -5124804,100,85,185 -5124805,754,237,991 -5124806,65,63,128 -5124807,171,154,325 -5124901,129,120,249 -5124902,175,211,386 -5124903,151,99,250 -5124904,142,117,259 -5124905,306,335,641 -5124906,77,84,161 -5124907,109,89,198 -5124908,223,214,437 -5124909,114,125,239 -5124910,146,174,320 -5124911,260,319,579 -5124912,244,263,507 -5124913,248,263,511 -5125001,179,188,367 -5125002,183,188,371 -5125003,144,145,289 -5125004,115,120,235 -5125005,245,266,511 -5125006,162,170,332 -5125007,127,94,221 -5125008,140,117,257 -5125009,118,116,234 -5125010,133,133,266 -5125011,183,183,366 -5125012,291,251,542 -5125013,113,104,217 -5125014,142,134,276 -5125015,196,185,381 -5949999,4286,3011,7297 -5979991,0,0,0 -5979992,262,8,270 -5979993,120,25,145 -6100101,131,129,260 -6100102,205,225,430 -6100103,162,179,341 -6100104,113,108,221 -6100105,152,156,308 -6100106,153,140,293 -6100107,122,105,227 -6100108,153,190,343 -6100109,167,158,325 -6100110,136,141,277 -6100111,139,223,362 -6100112,175,183,358 -6100113,194,210,404 -6100114,174,240,414 -6100115,157,213,370 -6100116,103,112,215 -6100117,119,143,262 -6100118,205,243,448 -6100119,140,156,296 -6100120,256,269,525 -6100121,103,164,267 -6100122,199,183,382 -6100123,79,66,145 -6100201,220,235,455 -6100202,176,204,380 -6100203,164,162,326 -6100204,227,222,449 -6100205,165,156,321 -6100206,255,261,516 -6100207,456,452,908 -6100208,277,254,531 -6100209,244,263,507 -6100210,197,211,408 -6100301,0,0,0 -6100302,330,357,687 -6100303,275,214,489 -6100304,105,87,192 -6100305,143,143,286 -6100306,95,149,244 -6100307,281,275,556 -6100308,244,270,514 -6100309,361,396,757 -6100401,0,0,0 -6100402,105,137,242 -6100403,10,10,20 -6100404,216,233,449 -6100405,170,177,347 -6100406,196,221,417 -6100407,171,180,351 -6100408,150,151,301 -6100409,136,162,298 -6100410,166,233,399 -6100411,119,110,229 -6100412,300,297,597 -6100413,150,186,336 -6100414,118,150,268 -6100415,122,142,264 -6100416,150,158,308 -6100417,227,250,477 -6100418,130,150,280 -6100419,124,129,253 -6100501,210,188,398 -6100502,291,281,572 -6100503,201,206,407 -6100504,115,110,225 -6100505,228,213,441 -6100506,160,126,286 -6100507,11,13,24 -6100508,166,172,338 -6100509,0,0,0 -6100510,194,194,388 -6100511,237,288,525 -6100512,167,161,328 -6100513,202,205,407 -6100514,141,156,297 -6100515,117,97,214 -6100516,192,186,378 -6100517,221,226,447 -6100518,189,177,366 -6100519,134,128,262 -6100520,215,207,422 -6100521,104,107,211 -6100522,3,0,3 -6100523,12,13,25 -6100524,132,113,245 -6100601,205,219,424 -6100602,179,211,390 -6100603,162,166,328 -6100604,209,226,435 -6100605,276,293,569 -6100606,184,187,371 -6100607,192,236,428 -6100608,109,123,232 -6100701,112,115,227 -6100702,238,269,507 -6100703,161,187,348 -6100704,193,210,403 -6100705,223,221,444 -6100706,349,369,718 -6100707,189,218,407 -6100708,202,213,415 -6100709,340,356,696 -6100710,241,274,515 -6100711,161,187,348 -6100712,443,497,940 -6100713,237,223,460 -6100714,191,204,395 -6100715,164,178,342 -6100716,283,287,570 -6100717,239,228,467 -6100718,131,144,275 -6100719,173,205,378 -6100720,170,199,369 -6100721,211,198,409 -6100801,236,269,505 -6100802,294,309,603 -6100803,107,111,218 -6100804,208,242,450 -6100805,305,318,623 -6100806,222,264,486 -6100807,224,252,476 -6100808,220,222,442 -6100809,198,293,491 -6100810,239,283,522 -6100811,164,272,436 -6100812,185,181,366 -6100813,159,144,303 -6100814,13,9,22 -6100815,129,152,281 -6100816,118,133,251 -6100817,103,142,245 -6100901,122,140,262 -6100902,139,167,306 -6100903,289,299,588 -6100904,175,211,386 -6100905,127,122,249 -6100906,252,306,558 -6100907,0,5,5 -6100908,200,204,404 -6100909,203,191,394 -6100910,0,0,0 -6100911,222,242,464 -6100912,125,149,274 -6100913,196,260,456 -6100914,113,139,252 -6101001,183,165,348 -6101002,93,122,215 -6101003,251,221,472 -6101004,6,3,9 -6101005,136,111,247 -6101006,185,158,343 -6101007,160,167,327 -6101008,108,111,219 -6101009,368,38,406 -6101010,162,159,321 -6101101,137,129,266 -6101102,141,149,290 -6101103,181,175,356 -6101104,464,524,988 -6101105,175,216,391 -6101106,140,152,292 -6101107,61,57,118 -6101108,227,229,456 -6101109,147,158,305 -6101110,133,142,275 -6101111,11,6,17 -6101112,149,160,309 -6101113,161,171,332 -6101114,182,182,364 -6101115,206,208,414 -6101116,156,164,320 -6101201,117,123,240 -6101202,126,131,257 -6101203,181,161,342 -6101204,221,194,415 -6101205,227,234,461 -6101206,139,131,270 -6101207,129,115,244 -6101208,208,198,406 -6101209,59,56,115 -6101210,270,285,555 -6101211,49,50,99 -6101212,171,157,328 -6101213,170,168,338 -6101301,168,175,343 -6101302,156,178,334 -6101303,322,263,585 -6101304,176,188,364 -6101305,0,0,0 -6101306,102,119,221 -6101307,0,0,0 -6101308,0,0,0 -6101309,120,127,247 -6101310,197,177,374 -6101311,318,286,604 -6101312,241,251,492 -6101313,95,87,182 -6101401,132,116,248 -6101402,185,210,395 -6101403,159,171,330 -6101404,166,175,341 -6101405,165,179,344 -6101406,198,189,387 -6101407,185,194,379 -6101408,130,165,295 -6101409,249,262,511 -6101410,212,216,428 -6101411,163,152,315 -6101412,116,100,216 -6101413,116,119,235 -6101414,181,184,365 -6101415,153,154,307 -6101416,13,5,18 -6101417,100,127,227 -6101501,167,181,348 -6101502,285,304,589 -6101503,0,0,0 -6101504,100,117,217 -6101505,153,217,370 -6101506,119,107,226 -6101507,156,229,385 -6101508,140,179,319 -6101509,136,172,308 -6101510,272,290,562 -6101511,199,196,395 -6101512,303,302,605 -6101513,172,188,360 -6101514,117,125,242 -6101515,190,186,376 -6101516,187,194,381 -6101517,255,286,541 -6101518,231,231,462 -6101519,244,268,512 -6101520,236,249,485 -6101601,156,177,333 -6101602,0,5,5 -6101603,149,151,300 -6101604,201,230,431 -6101605,211,246,457 -6101606,227,237,464 -6101607,192,212,404 -6101608,127,115,242 -6101609,188,190,378 -6101610,0,3,3 -6101611,280,280,560 -6101612,289,286,575 -6101701,202,211,413 -6101702,222,295,517 -6101703,183,223,406 -6101704,183,211,394 -6101705,150,187,337 -6101706,193,167,360 -6101707,124,143,267 -6101708,126,132,258 -6101709,205,224,429 -6101710,159,158,317 -6101711,75,145,220 -6101712,175,231,406 -6101713,177,232,409 -6101714,0,0,0 -6101715,216,214,430 -6101716,309,330,639 -6101717,64,74,138 -6101718,161,158,319 -6101719,176,179,355 -6101720,292,328,620 -6101721,176,182,358 -6101722,197,211,408 -6101723,88,87,175 -6101724,147,192,339 -6101725,199,207,406 -6101726,0,0,0 -6101727,5,6,11 -6101728,190,220,410 -6101729,220,213,433 -6101730,143,140,283 -6101731,116,135,251 -6101732,113,132,245 -6101801,96,126,222 -6101802,163,219,382 -6101803,233,251,484 -6101804,0,0,0 -6101805,130,138,268 -6101806,185,206,391 -6101807,202,234,436 -6101808,188,209,397 -6101809,152,192,344 -6101810,198,214,412 -6101811,199,213,412 -6101812,146,157,303 -6101813,117,113,230 -6101814,134,162,296 -6101901,231,255,486 -6101902,211,232,443 -6101903,221,224,445 -6101904,210,203,413 -6101905,234,254,488 -6101906,229,215,444 -6101907,291,280,571 -6101908,287,322,609 -6101909,137,141,278 -6101910,282,344,626 -6101911,160,167,327 -6102001,59,136,195 -6102002,111,99,210 -6102003,122,121,243 -6102004,208,202,410 -6102005,243,268,511 -6102006,172,199,371 -6102007,173,145,318 -6102008,203,234,437 -6102009,163,153,316 -6102010,168,138,306 -6102011,235,236,471 -6102012,172,183,355 -6102013,69,67,136 -6102014,156,153,309 -6102015,234,250,484 -6102016,240,245,485 -6102017,167,143,310 -6102018,111,113,224 -6102019,124,101,225 -6102101,202,215,417 -6102102,175,197,372 -6102103,250,273,523 -6102104,290,297,587 -6102105,222,272,494 -6102106,191,214,405 -6102107,184,209,393 -6102108,107,119,226 -6102109,188,186,374 -6102201,144,163,307 -6102202,0,0,0 -6102203,189,196,385 -6102204,38,43,81 -6102205,241,263,504 -6102206,309,288,597 -6102207,170,162,332 -6102208,402,413,815 -6102209,126,110,236 -6102210,300,345,645 -6102211,188,200,388 -6102212,217,266,483 -6102213,109,126,235 -6102214,113,141,254 -6102215,107,125,232 -6102216,159,152,311 -6102217,466,499,965 -6102218,195,219,414 -6102219,3,3,6 -6102220,124,134,258 -6102221,114,127,241 -6102222,111,106,217 -6102223,181,184,365 -6102224,282,286,568 -6102225,195,206,401 -6102226,130,171,301 -6102227,218,360,578 -6102228,184,201,385 -6102229,122,131,253 -6102301,177,189,366 -6102302,150,143,293 -6102303,92,100,192 -6102304,165,166,331 -6102305,145,144,289 -6102306,137,143,280 -6102307,160,164,324 -6102308,260,266,526 -6102309,170,191,361 -6102310,149,199,348 -6102311,155,151,306 -6102312,117,135,252 -6102313,155,156,311 -6102314,253,283,536 -6102315,245,282,527 -6102316,270,337,607 -6102317,185,215,400 -6102318,200,191,391 -6102319,230,249,479 -6102320,108,132,240 -6102321,174,180,354 -6102322,186,218,404 -6102323,188,190,378 -6102324,247,242,489 -6102325,137,138,275 -6102326,238,254,492 -6102401,257,263,520 -6102402,254,245,499 -6102403,68,63,131 -6102404,179,184,363 -6102405,186,172,358 -6102406,96,89,185 -6102407,245,229,474 -6102408,144,155,299 -6102409,68,71,139 -6102410,73,83,156 -6102411,384,407,791 -6102412,267,286,553 -6102413,121,127,248 -6102414,210,250,460 -6102415,218,251,469 -6102416,155,166,321 -6102417,122,131,253 -6102418,44,52,96 -6102419,355,409,764 -6102501,0,0,0 -6102601,262,240,502 -6102602,12,3,15 -6102603,139,142,281 -6102604,220,234,454 -6102605,212,214,426 -6102606,177,186,363 -6102607,141,209,350 -6102608,81,84,165 -6102609,147,157,304 -6102610,113,124,237 -6102611,188,221,409 -6102701,153,134,287 -6102702,164,168,332 -6102703,151,158,309 -6102704,139,134,273 -6102705,154,151,305 -6102706,154,148,302 -6102707,210,201,411 -6102708,237,213,450 -6102709,194,178,372 -6102710,119,128,247 -6102711,126,131,257 -6102712,233,248,481 -6102713,165,182,347 -6102714,258,263,521 -6102715,190,220,410 -6102716,130,177,307 -6102717,215,213,428 -6102718,156,123,279 -6102719,276,224,500 -6102720,302,292,594 -6102721,16,18,34 -6102801,258,273,531 -6102802,242,267,509 -6102803,298,341,639 -6102804,209,241,450 -6102805,29,36,65 -6102806,121,127,248 -6102807,160,175,335 -6102808,203,237,440 -6102809,201,204,405 -6102810,260,291,551 -6102811,166,181,347 -6102812,236,287,523 -6102813,195,223,418 -6102814,249,277,526 -6102815,237,267,504 -6102816,132,106,238 -6102817,169,186,355 -6102818,227,253,480 -6102819,284,293,577 -6102901,227,209,436 -6102902,233,249,482 -6102903,308,283,591 -6102904,239,259,498 -6102905,310,299,609 -6102906,145,156,301 -6102907,249,240,489 -6102908,172,165,337 -6102909,334,331,665 -6103001,206,199,405 -6103002,176,201,377 -6103003,302,329,631 -6103004,253,295,548 -6103005,215,175,390 -6103006,184,172,356 -6103007,177,220,397 -6103008,127,125,252 -6103009,214,224,438 -6103010,280,279,559 -6103011,194,178,372 -6103012,282,309,591 -6103013,315,333,648 -6103014,0,0,0 -6103101,254,235,489 -6103102,248,244,492 -6103103,325,330,655 -6103104,140,153,293 -6103105,290,409,699 -6103106,129,142,271 -6103107,190,212,402 -6103108,291,397,688 -6103109,146,149,295 -6103110,210,208,418 -6103111,0,0,0 -6103112,178,150,328 -6103113,183,197,380 -6103114,190,214,404 -6103115,195,181,376 -6103116,238,237,475 -6103117,12,24,36 -6103118,234,243,477 -6103119,222,217,439 -6103120,181,188,369 -6103121,155,161,316 -6103122,215,200,415 -6103123,142,120,262 -6103124,119,129,248 -6103125,333,304,637 -6103126,166,175,341 -6103127,302,318,620 -6103128,166,165,331 -6103201,283,280,563 -6103202,140,167,307 -6103203,139,140,279 -6103204,246,255,501 -6103205,229,253,482 -6103206,128,133,261 -6103207,135,153,288 -6103208,166,194,360 -6103209,4,0,4 -6103210,166,137,303 -6103211,195,210,405 -6103212,141,148,289 -6103213,99,95,194 -6103214,88,80,168 -6103215,149,167,316 -6103216,178,171,349 -6103217,230,241,471 -6103218,122,248,370 -6103301,140,136,276 -6103302,137,155,292 -6103303,150,156,306 -6103304,241,280,521 -6103305,212,249,461 -6103306,232,243,475 -6103307,143,116,259 -6103308,130,151,281 -6103309,179,220,399 -6103310,152,146,298 -6103311,138,161,299 -6103312,221,265,486 -6103313,103,110,213 -6103314,117,152,269 -6103315,120,127,247 -6103316,3,5,8 -6103317,215,214,429 -6103318,141,143,284 -6103401,266,237,503 -6103402,222,223,445 -6103403,179,189,368 -6103404,190,215,405 -6103405,162,141,303 -6103406,216,201,417 -6103407,190,190,380 -6103408,172,158,330 -6103409,172,186,358 -6103410,139,143,282 -6103411,198,219,417 -6103412,93,101,194 -6103413,209,202,411 -6103414,84,96,180 -6103415,157,129,286 -6103416,105,94,199 -6103417,133,141,274 -6103418,160,141,301 -6103419,172,185,357 -6103420,170,152,322 -6103421,175,173,348 -6103501,112,143,255 -6103502,195,202,397 -6103503,207,234,441 -6103504,202,195,397 -6103505,255,266,521 -6103506,114,105,219 -6103507,155,210,365 -6103508,183,163,346 -6103509,195,169,364 -6103510,209,198,407 -6103511,168,189,357 -6103512,139,158,297 -6103513,163,149,312 -6103514,103,128,231 -6103515,171,163,334 -6103516,193,209,402 -6103517,83,125,208 -6103518,185,182,367 -6103519,153,141,294 -6103520,205,205,410 -6103521,240,267,507 -6103522,144,185,329 -6103601,271,236,507 -6103602,3,8,11 -6103603,283,294,577 -6103604,241,222,463 -6103605,124,114,238 -6103606,159,190,349 -6103607,0,0,0 -6103608,27,16,43 -6103609,158,134,292 -6103610,174,194,368 -6103611,0,0,0 -6103612,124,118,242 -6103701,276,283,559 -6103702,222,317,539 -6103703,182,201,383 -6103704,0,0,0 -6103705,116,140,256 -6103706,254,263,517 -6103707,0,0,0 -6103708,207,209,416 -6103709,217,248,465 -6103710,113,120,233 -6103711,213,230,443 -6103801,103,122,225 -6103802,263,316,579 -6103803,150,182,332 -6103804,147,128,275 -6103805,148,173,321 -6103806,222,264,486 -6103807,229,215,444 -6103808,166,178,344 -6103809,115,99,214 -6103810,105,107,212 -6103811,184,126,310 -6103812,116,118,234 -6103813,5,3,8 -6103814,242,263,505 -6103815,168,161,329 -6103816,163,156,319 -6103901,113,104,217 -6103902,205,205,410 -6103903,252,243,495 -6103904,208,239,447 -6103905,298,332,630 -6103906,96,119,215 -6103907,78,93,171 -6103908,87,77,164 -6103909,236,257,493 -6103910,196,249,445 -6104001,265,252,517 -6104002,125,117,242 -6104003,224,259,483 -6104004,70,69,139 -6104005,246,264,510 -6104006,188,205,393 -6104007,0,0,0 -6104008,0,0,0 -6104009,272,298,570 -6104010,208,217,425 -6104011,222,248,470 -6104101,269,286,555 -6104102,241,305,546 -6104103,137,160,297 -6104104,176,183,359 -6104105,285,282,567 -6104106,229,238,467 -6104107,147,148,295 -6104108,140,169,309 -6104109,312,303,615 -6104110,208,209,417 -6104111,171,176,347 -6104112,325,357,682 -6104113,111,93,204 -6104114,227,130,357 -6104115,394,412,806 -6104116,98,119,217 -6104117,140,180,320 -6104118,187,215,402 -6104119,168,176,344 -6104120,8,3,11 -6104121,218,223,441 -6104122,9,4,13 -6104123,0,0,0 -6104201,324,404,728 -6104202,0,0,0 -6104203,0,0,0 -6104204,188,279,467 -6104205,158,198,356 -6104206,148,180,328 -6104207,213,226,439 -6104208,239,263,502 -6104209,146,153,299 -6104210,138,112,250 -6104211,311,312,623 -6104212,228,297,525 -6104213,205,239,444 -6104301,264,294,558 -6104302,248,299,547 -6104303,116,127,243 -6104304,136,215,351 -6104305,272,288,560 -6104306,252,245,497 -6104307,257,287,544 -6104308,137,149,286 -6104309,100,110,210 -6104401,153,151,304 -6104402,212,192,404 -6104403,153,150,303 -6104404,174,187,361 -6104405,118,104,222 -6104406,155,184,339 -6104407,145,203,348 -6104408,175,194,369 -6104409,196,213,409 -6104410,242,270,512 -6104411,212,228,440 -6104412,280,327,607 -6104413,0,0,0 -6104414,111,125,236 -6104415,220,260,480 -6104416,164,187,351 -6104417,190,200,390 -6104418,96,141,237 -6104501,114,127,241 -6104502,4,0,4 -6104503,300,310,610 -6104504,205,227,432 -6104505,202,248,450 -6104506,220,223,443 -6104507,140,171,311 -6104508,134,148,282 -6104509,123,120,243 -6104510,254,303,557 -6104511,3,3,6 -6104512,189,208,397 -6104601,125,119,244 -6104602,182,185,367 -6104603,259,287,546 -6104604,212,232,444 -6104605,115,125,240 -6104606,260,294,554 -6104607,154,145,299 -6104608,231,263,494 -6104609,88,76,164 -6104610,244,279,523 -6104611,144,137,281 -6104612,204,207,411 -6104613,0,0,0 -6104614,259,249,508 -6104615,96,99,195 -6104616,147,162,309 -6104617,226,274,500 -6104701,213,202,415 -6104702,147,223,370 -6104703,137,131,268 -6104704,147,138,285 -6104705,121,147,268 -6104706,264,252,516 -6104707,222,237,459 -6104708,222,217,439 -6104709,187,189,376 -6104710,191,196,387 -6104711,107,107,214 -6104712,165,282,447 -6104801,206,235,441 -6104802,126,170,296 -6104803,214,220,434 -6104804,0,0,0 -6104805,227,221,448 -6104806,200,234,434 -6104807,251,273,524 -6104808,173,214,387 -6104809,179,167,346 -6104810,155,146,301 -6104811,54,60,114 -6104812,120,116,236 -6104813,193,200,393 -6104814,126,125,251 -6104901,319,307,626 -6104902,126,135,261 -6104903,182,196,378 -6104904,214,237,451 -6104905,159,169,328 -6104906,239,239,478 -6104907,247,267,514 -6104908,347,352,699 -6104909,191,240,431 -6104910,232,243,475 -6104911,0,0,0 -6105001,236,274,510 -6105002,109,118,227 -6105003,145,143,288 -6105004,267,286,553 -6105005,109,90,199 -6105006,175,195,370 -6105007,214,208,422 -6105008,191,192,383 -6105009,242,271,513 -6105101,6,3,9 -6105102,135,137,272 -6105103,117,144,261 -6105104,128,128,256 -6105105,127,150,277 -6105106,154,168,322 -6105107,208,214,422 -6105108,113,108,221 -6105109,171,204,375 -6105110,191,223,414 -6105111,126,133,259 -6105112,156,203,359 -6105113,156,143,299 -6105114,137,137,274 -6105201,208,245,453 -6105202,160,158,318 -6105203,168,159,327 -6105204,131,217,348 -6105205,189,185,374 -6105206,192,199,391 -6105207,167,154,321 -6105208,177,195,372 -6105209,320,319,639 -6105210,283,277,560 -6105211,298,291,589 -6105301,121,110,231 -6105302,224,228,452 -6105303,261,265,526 -6105304,106,121,227 -6105305,104,90,194 -6105306,160,140,300 -6105307,107,121,228 -6105308,122,146,268 -6105309,114,97,211 -6105310,103,99,202 -6105311,0,5,5 -6105312,232,219,451 -6105313,158,164,322 -6105314,58,55,113 -6105401,118,111,229 -6105402,101,101,202 -6105403,164,205,369 -6105404,94,147,241 -6105405,153,171,324 -6105406,93,133,226 -6105407,3,0,3 -6105408,189,211,400 -6105409,85,101,186 -6105410,169,140,309 -6105411,220,199,419 -6105412,225,211,436 -6105413,201,184,385 -6105414,0,0,0 -6105415,174,161,335 -6105416,154,164,318 -6105417,108,116,224 -6105418,145,188,333 -6105419,93,130,223 -6105420,214,201,415 -6105501,286,275,561 -6105502,177,212,389 -6105503,144,162,306 -6105504,157,156,313 -6105505,230,234,464 -6105506,190,178,368 -6105507,223,235,458 -6105508,152,152,304 -6105509,194,223,417 -6105510,98,96,194 -6105511,230,217,447 -6105512,247,267,514 -6105513,168,200,368 -6105514,135,143,278 -6105515,88,91,179 -6105601,171,173,344 -6105602,218,211,429 -6105603,147,174,321 -6105604,158,146,304 -6105605,120,124,244 -6105606,133,137,270 -6105607,205,244,449 -6105608,192,224,416 -6105609,174,216,390 -6105701,175,173,348 -6105702,152,169,321 -6105703,181,175,356 -6105704,188,187,375 -6105705,134,138,272 -6105706,123,113,236 -6105707,165,165,330 -6105708,203,220,423 -6105709,188,188,376 -6105710,191,171,362 -6105711,140,119,259 -6105712,158,132,290 -6105801,128,145,273 -6105802,169,144,313 -6105803,106,82,188 -6105804,187,169,356 -6105805,201,207,408 -6105806,216,176,392 -6105807,154,152,306 -6105808,197,184,381 -6105809,253,236,489 -6105810,152,155,307 -6105811,107,127,234 -6105812,146,122,268 -6105901,108,101,209 -6105902,194,207,401 -6105903,227,243,470 -6105904,198,193,391 -6105905,162,155,317 -6105906,128,156,284 -6105907,155,176,331 -6105908,174,178,352 -6105909,203,258,461 -6105910,118,124,242 -6105911,225,215,440 -6105912,196,182,378 -6105913,198,179,377 -6105914,0,0,0 -6105915,228,248,476 -6105916,95,100,195 -6105917,84,82,166 -6105918,112,111,223 -6105919,117,112,229 -6105920,115,101,216 -6105921,100,86,186 -6105922,186,166,352 -6106001,194,212,406 -6106002,131,142,273 -6106003,173,196,369 -6106004,182,207,389 -6106005,254,278,532 -6106006,136,157,293 -6106007,288,286,574 -6106008,251,236,487 -6106009,99,122,221 -6106010,117,103,220 -6106101,153,158,311 -6106102,220,246,466 -6106103,132,139,271 -6106104,122,94,216 -6106105,179,172,351 -6106106,214,210,424 -6106107,84,67,151 -6106108,379,350,729 -6106109,170,151,321 -6106110,153,147,300 -6106111,36,41,77 -6106201,161,139,300 -6106202,149,161,310 -6106203,146,151,297 -6106204,76,77,153 -6106205,244,253,497 -6106206,198,195,393 -6106207,148,150,298 -6106208,150,148,298 -6106209,150,148,298 -6106210,85,92,177 -6106211,274,277,551 -6106212,175,139,314 -6106213,259,285,544 -6106214,162,153,315 -6106301,186,169,355 -6106302,119,180,299 -6106303,201,212,413 -6106304,220,207,427 -6106305,195,211,406 -6106306,200,212,412 -6106307,97,110,207 -6106308,243,223,466 -6106309,186,153,339 -6106310,154,135,289 -6106311,147,149,296 -6106312,95,78,173 -6106313,72,65,137 -6106314,141,125,266 -6106315,0,0,0 -6106316,139,122,261 -6106317,237,207,444 -6106318,32,35,67 -6106319,102,111,213 -6106320,156,156,312 -6106321,128,123,251 -6106322,242,278,520 -6106323,126,147,273 -6106324,142,113,255 -6106325,112,96,208 -6106326,155,155,310 -6106401,189,167,356 -6106402,152,138,290 -6106403,108,87,195 -6106404,122,101,223 -6106405,87,86,173 -6106406,0,0,0 -6106407,136,145,281 -6106408,171,194,365 -6106409,164,193,357 -6106410,108,102,210 -6106411,203,168,371 -6106412,72,69,141 -6106413,134,108,242 -6106414,221,213,434 -6106415,259,252,511 -6106416,191,175,366 -6106417,157,130,287 -6106418,0,0,0 -6106419,161,160,321 -6106420,144,138,282 -6106421,232,271,503 -6106422,143,135,278 -6106501,199,192,391 -6106502,196,196,392 -6106503,235,241,476 -6106504,0,0,0 -6106505,192,176,368 -6106506,141,100,241 -6106507,176,127,303 -6106601,139,120,259 -6106602,189,178,367 -6106603,79,91,170 -6106604,118,107,225 -6106605,70,65,135 -6106606,187,169,356 -6106607,118,116,234 -6106608,174,139,313 -6106609,178,109,287 -6106610,190,167,357 -6106611,203,195,398 -6106612,0,0,0 -6106701,198,208,406 -6106702,146,149,295 -6106703,144,140,284 -6106704,194,199,393 -6106705,161,164,325 -6106706,179,175,354 -6106707,164,146,310 -6106708,127,100,227 -6106709,294,268,562 -6106710,124,136,260 -6106711,187,173,360 -6106712,271,250,521 -6106713,191,182,373 -6106714,161,162,323 -6106715,127,101,228 -6106716,196,185,381 -6106717,249,220,469 -6106801,4,3,7 -6106901,109,99,208 -6106902,167,140,307 -6106903,244,223,467 -6106904,221,225,446 -6106905,100,94,194 -6106906,282,252,534 -6106907,84,75,159 -6106908,128,110,238 -6106909,120,117,237 -6107001,120,126,246 -6107002,175,183,358 -6107003,118,118,236 -6107004,205,213,418 -6107005,304,302,606 -6107006,146,138,284 -6107007,160,149,309 -6107008,146,134,280 -6107009,124,120,244 -6107010,139,142,281 -6107011,124,119,243 -6107012,191,180,371 -6107101,204,225,429 -6107102,208,163,371 -6107103,219,222,441 -6107104,172,149,321 -6107105,290,288,578 -6107106,178,195,373 -6107107,196,175,371 -6107108,0,0,0 -6107109,186,165,351 -6107110,136,124,260 -6107201,139,134,273 -6107202,83,80,163 -6107203,173,162,335 -6107204,183,167,350 -6107205,128,146,274 -6107206,292,285,577 -6107207,257,239,496 -6107208,148,178,326 -6107209,287,230,517 -6107210,176,149,325 -6107211,174,194,368 -6107212,200,195,395 -6107213,227,295,522 -6107214,136,129,265 -6107215,188,159,347 -6107216,148,139,287 -6107217,151,143,294 -6107218,191,226,417 -6107219,209,230,439 -6107220,231,221,452 -6107221,174,172,346 -6107301,182,156,338 -6107302,141,145,286 -6107303,0,0,0 -6107304,154,121,275 -6107305,193,164,357 -6107306,139,140,279 -6107307,138,136,274 -6107308,46,40,86 -6107309,104,106,210 -6107310,124,125,249 -6107401,139,138,277 -6107402,0,0,0 -6107403,105,97,202 -6107404,202,173,375 -6107405,0,0,0 -6107406,60,64,124 -6107407,165,140,305 -6107408,102,122,224 -6107409,115,119,234 -6107410,80,76,156 -6107411,74,61,135 -6107412,98,121,219 -6107413,86,86,172 -6107414,175,203,378 -6107415,132,143,275 -6107416,3,0,3 -6107417,193,165,358 -6107418,134,117,251 -6107419,157,132,289 -6107420,101,87,188 -6107501,142,146,288 -6107502,189,173,362 -6107503,142,145,287 -6107504,151,151,302 -6107505,286,307,593 -6107506,295,295,590 -6107507,173,191,364 -6107508,220,293,513 -6107601,244,219,463 -6107602,208,209,417 -6107603,223,195,418 -6107604,205,194,399 -6107605,135,115,250 -6107606,207,211,418 -6107607,188,175,363 -6107608,204,194,398 -6107609,204,194,398 -6107610,159,166,325 -6107611,232,217,449 -6107612,188,194,382 -6107613,154,154,308 -6107614,55,67,122 -6107701,187,197,384 -6107702,84,100,184 -6107703,216,227,443 -6107704,37,32,69 -6107705,0,0,0 -6107706,3,0,3 -6107707,122,145,267 -6107708,141,149,290 -6107709,240,210,450 -6107710,175,189,364 -6107711,151,187,338 -6107712,215,237,452 -6107713,259,289,548 -6107801,246,240,486 -6107802,165,196,361 -6107803,67,158,225 -6107804,171,174,345 -6107805,94,88,182 -6107806,147,167,314 -6107807,275,339,614 -6107808,175,183,358 -6107809,165,188,353 -6107810,99,130,229 -6107811,134,154,288 -6107812,230,266,496 -6107813,173,175,348 -6107814,99,109,208 -6107815,111,126,237 -6107816,198,250,448 -6107817,191,242,433 -6107818,174,206,380 -6107901,90,97,187 -6107902,82,85,167 -6107903,251,244,495 -6107904,134,137,271 -6107905,115,107,222 -6107906,156,149,305 -6107907,106,119,225 -6107908,137,149,286 -6107909,137,170,307 -6107910,233,246,479 -6107911,275,284,559 -6107912,99,118,217 -6107913,170,137,307 -6107914,101,96,197 -6107915,83,116,199 -6107916,121,127,248 -6107917,128,138,266 -6108001,178,165,343 -6108002,127,133,260 -6108003,181,177,358 -6108004,115,122,237 -6108005,181,219,400 -6108006,196,214,410 -6108007,97,111,208 -6108008,224,229,453 -6108009,123,131,254 -6108010,126,118,244 -6108011,145,183,328 -6108101,50,42,92 -6108102,159,152,311 -6108103,113,114,227 -6108104,109,116,225 -6108105,103,119,222 -6108106,144,162,306 -6108107,233,269,502 -6108108,247,293,540 -6108109,148,165,313 -6108110,192,200,392 -6108111,219,232,451 -6108112,182,209,391 -6108201,19,14,33 -6108202,204,258,462 -6108203,162,195,357 -6108204,133,153,286 -6108205,138,137,275 -6108206,126,124,250 -6108207,101,104,205 -6108208,211,230,441 -6108209,78,57,135 -6108210,65,63,128 -6108211,154,149,303 -6108212,79,92,171 -6108213,118,131,249 -6108214,204,213,417 -6108215,163,173,336 -6108216,194,204,398 -6108217,177,198,375 -6108218,151,192,343 -6108219,235,263,498 -6108220,209,272,481 -6108221,284,301,585 -6108301,124,145,269 -6108302,164,167,331 -6108303,193,186,379 -6108304,240,257,497 -6108305,148,205,353 -6108306,126,126,252 -6108307,141,154,295 -6108308,42,38,80 -6108309,213,210,423 -6108310,240,256,496 -6108311,185,217,402 -6108312,189,201,390 -6108313,94,78,172 -6108401,3,0,3 -6108402,128,124,252 -6108403,136,140,276 -6108404,100,110,210 -6108405,138,142,280 -6108406,199,166,365 -6108407,91,118,209 -6108408,235,254,489 -6108409,196,221,417 -6108410,191,204,395 -6108411,179,196,375 -6108412,157,128,285 -6108413,160,212,372 -6108414,101,145,246 -6108415,155,151,306 -6108416,143,182,325 -6108417,165,170,335 -6108418,129,139,268 -6108419,122,141,263 -6108420,142,169,311 -6108501,104,128,232 -6108502,140,160,300 -6108503,182,191,373 -6108504,208,189,397 -6108505,178,221,399 -6108506,225,243,468 -6108507,0,0,0 -6108508,175,159,334 -6108509,234,265,499 -6108510,160,185,345 -6108511,299,365,664 -6108512,245,265,510 -6108513,200,204,404 -6108514,234,275,509 -6108515,234,230,464 -6108516,156,240,396 -6108517,232,304,536 -6108518,162,188,350 -6108519,134,135,269 -6108520,205,227,432 -6108521,241,265,506 -6108522,232,262,494 -6108523,207,208,415 -6108524,176,198,374 -6108525,211,245,456 -6108526,153,190,343 -6108527,129,161,290 -6108528,154,236,390 -6108529,146,217,363 -6108530,246,244,490 -6108531,144,180,324 -6108532,0,0,0 -6108533,179,190,369 -6108534,173,207,380 -6108535,214,255,469 -6108536,221,243,464 -6108601,158,164,322 -6108602,124,141,265 -6108603,148,143,291 -6108604,248,227,475 -6108605,67,64,131 -6108606,185,188,373 -6108607,95,108,203 -6108608,174,215,389 -6108609,45,44,89 -6108610,159,175,334 -6108611,159,169,328 -6108612,196,185,381 -6108613,149,157,306 -6108614,140,151,291 -6108615,134,177,311 -6108616,217,198,415 -6108701,150,157,307 -6108702,119,136,255 -6108703,112,105,217 -6108704,131,141,272 -6108705,184,144,328 -6108706,167,164,331 -6108707,320,341,661 -6108708,134,179,313 -6108709,160,124,284 -6108710,178,185,363 -6108711,185,181,366 -6108712,255,269,524 -6108801,99,96,195 -6108802,383,415,798 -6108803,300,313,613 -6108804,232,250,482 -6108805,288,325,613 -6108806,176,197,373 -6108901,226,212,438 -6108902,116,117,233 -6108903,100,93,193 -6108904,95,89,184 -6108905,265,303,568 -6108906,253,310,563 -6108907,450,473,923 -6108908,203,188,391 -6108909,136,131,267 -6108910,218,211,429 -6108911,188,191,379 -6108912,153,147,300 -6108913,92,70,162 -6109001,231,216,447 -6109002,272,268,540 -6109003,83,89,172 -6109004,234,230,464 -6109005,116,117,233 -6109006,260,237,497 -6109007,101,112,213 -6109008,131,120,251 -6109101,4,5,9 -6109102,160,130,290 -6109103,167,136,303 -6109104,144,154,298 -6109105,241,280,521 -6109106,227,202,429 -6109107,124,123,247 -6109108,184,197,381 -6109109,179,166,345 -6109110,266,256,522 -6109111,169,153,322 -6109112,231,201,432 -6109113,219,176,395 -6109114,200,212,412 -6109115,168,161,329 -6109116,146,145,291 -6109117,171,144,315 -6109118,136,120,256 -6109201,134,151,285 -6109202,234,208,442 -6109203,242,243,485 -6109204,100,117,217 -6109205,179,200,379 -6109206,160,163,323 -6109207,180,150,330 -6109208,188,198,386 -6109209,111,106,217 -6109301,218,186,404 -6109302,137,139,276 -6109303,148,145,293 -6109304,210,185,395 -6109305,100,100,200 -6109401,203,168,371 -6109402,162,135,297 -6109403,97,111,208 -6109404,162,140,302 -6109405,303,287,590 -6109406,154,146,300 -6109407,151,152,303 -6109408,176,167,343 -6109409,170,157,327 -6109410,114,101,215 -6109411,253,228,481 -6109412,10,5,15 -6109413,144,143,287 -6109501,161,187,348 -6109502,100,94,194 -6109503,163,166,329 -6109504,220,232,452 -6109505,180,187,367 -6109506,195,177,372 -6109507,110,121,231 -6109508,149,196,345 -6109509,109,90,199 -6109510,122,140,262 -6109511,149,149,298 -6109512,267,269,536 -6109601,135,113,248 -6109602,222,217,439 -6109603,223,206,429 -6109604,109,92,201 -6109605,175,149,324 -6109606,173,180,353 -6109607,185,166,351 -6109608,177,160,337 -6109609,132,104,236 -6109610,165,122,287 -6109611,189,186,375 -6109612,40,10,50 -6109613,53,58,111 -6109701,215,172,387 -6109702,98,94,192 -6109703,93,97,190 -6109704,335,325,660 -6109705,181,162,343 -6109706,0,0,0 -6109707,148,136,284 -6109708,134,136,270 -6109709,89,83,172 -6109710,185,178,363 -6109711,214,184,398 -6109712,237,193,430 -6109713,251,223,474 -6109714,92,74,166 -6109715,23,14,37 -6109716,0,0,0 -6109717,152,159,311 -6109718,0,0,0 -6109719,0,0,0 -6109720,0,0,0 -6109801,0,0,0 -6949999,613,460,1073 -6979991,0,0,0 -6979992,0,0,0 -6979993,61,28,89 -6979994,20,7,27 -7100101,293,158,451 -7100201,715,563,1278 -7100202,475,408,883 -7100203,416,277,693 -7100204,149,125,274 -7100205,507,352,859 -7100206,5,7,12 -7100207,131,84,215 -7100208,216,129,345 -7100301,23,17,40 -7100401,374,351,725 -7100402,296,266,562 -7100403,243,204,447 -7100404,278,279,557 -7100405,394,348,742 -7100406,118,111,229 -7100501,151,137,288 -7100502,307,254,561 -7100503,387,360,747 -7100504,225,183,408 -7100505,257,203,460 -7100506,181,75,256 -7100507,292,233,525 -7100601,236,225,461 -7100602,44,41,85 -7100603,122,100,222 -7100604,0,0,0 -7100605,173,184,357 -7100606,301,294,595 -7100607,306,324,630 -7100608,277,235,512 -7100701,122,120,242 -7100702,101,91,192 -7100703,241,201,442 -7100704,183,159,342 -7100705,199,186,385 -7100706,185,180,365 -7100801,439,383,822 -7100802,310,270,580 -7100803,242,209,451 -7100804,222,218,440 -7100805,437,391,828 -7100806,106,85,191 -7100807,224,215,439 -7100901,263,239,502 -7100902,446,401,847 -7100903,280,294,574 -7100904,9,5,14 -7100905,221,228,449 -7100906,170,97,267 -7101001,144,147,291 -7101002,239,227,466 -7101003,315,277,592 -7101004,195,190,385 -7101005,207,184,391 -7101006,3,0,3 -7101101,272,281,553 -7101102,148,144,292 -7101103,220,209,429 -7101104,277,266,543 -7101105,298,293,591 -7101201,285,250,535 -7101202,669,34,703 -7101203,128,116,244 -7101204,638,189,827 -7101205,102,111,213 -7101301,289,243,532 -7101302,307,290,597 -7101303,235,199,434 -7101304,286,265,551 -7101305,261,255,516 -7101306,211,198,409 -7101307,8,4,12 -7101401,3,0,3 -7101501,5,6,11 -7101601,261,302,563 -7101602,260,276,536 -7101603,370,387,757 -7101604,254,207,461 -7101605,238,243,481 -7101606,22,25,47 -7101701,5,3,8 -7101801,283,254,537 -7101802,245,239,484 -7101803,185,190,375 -7101804,198,224,422 -7101901,322,290,612 -7101902,227,225,452 -7101903,275,277,552 -7101904,246,237,483 -7101905,173,184,357 -7101906,256,244,500 -7101907,160,187,347 -7101908,245,231,476 -7101909,303,302,605 -7101910,226,231,457 -7102001,343,361,704 -7102002,369,356,725 -7102003,316,326,642 -7102004,205,229,434 -7102005,216,222,438 -7102006,332,297,629 -7102007,335,316,651 -7102008,226,244,470 -7102101,461,482,943 -7102102,0,0,0 -7102103,84,55,139 -7102104,507,477,984 -7102201,155,170,325 -7102202,350,312,662 -7102203,219,224,443 -7102204,233,244,477 -7102205,197,210,407 -7102206,212,216,428 -7102207,10,3,13 -7102208,12,4,16 -7102209,206,220,426 -7102210,194,210,404 -7102211,169,201,370 -7102212,230,217,447 -7102213,161,169,330 -7102301,274,249,523 -7102302,357,327,684 -7102303,160,138,298 -7102304,183,183,366 -7102305,287,301,588 -7102401,221,196,417 -7102402,271,221,492 -7102403,181,173,354 -7102404,155,159,314 -7102405,220,235,455 -7102501,143,145,288 -7102502,200,198,398 -7102503,123,134,257 -7102504,203,203,406 -7102505,349,345,694 -7102506,217,230,447 -7102507,221,225,446 -7102508,200,156,356 -7102509,169,189,358 -7102601,275,282,557 -7102602,0,0,0 -7102603,456,389,845 -7102604,253,210,463 -7102605,318,314,632 -7102606,404,363,767 -7102701,233,239,472 -7102702,191,241,432 -7102703,177,204,381 -7102704,313,303,616 -7102705,229,249,478 -7102706,59,74,133 -7102707,3,0,3 -7102801,259,255,514 -7102802,232,227,459 -7102803,257,255,512 -7102804,332,289,621 -7102805,0,0,0 -7102901,301,278,579 -7102902,182,167,349 -7102903,233,230,463 -7102904,195,190,385 -7103001,222,217,439 -7103002,197,193,390 -7103003,213,196,409 -7103004,235,244,479 -7103005,238,208,446 -7103006,104,100,204 -7103007,126,128,254 -7103101,270,232,502 -7103102,31,50,81 -7103103,104,92,196 -7103104,170,149,319 -7103105,226,181,407 -7103106,336,276,612 -7103107,807,60,867 -7103108,0,0,0 -7103109,208,193,401 -7103110,165,129,294 -7103111,130,112,242 -7103112,205,174,379 -7103201,185,182,367 -7103202,268,237,505 -7103203,398,346,744 -7103204,562,566,1128 -7103205,230,206,436 -7103206,281,288,569 -7103207,216,202,418 -7103208,178,131,309 -7103209,256,239,495 -7103210,296,259,555 -7103211,371,344,715 -7103212,278,271,549 -7103213,200,208,408 -7103214,302,306,608 -7103301,9,9,18 -7103401,223,192,415 -7103402,199,194,393 -7103403,207,189,396 -7103404,328,294,622 -7103405,179,166,345 -7103406,357,322,679 -7103501,3,3,6 -7103502,139,116,255 -7103503,402,333,735 -7103504,353,340,693 -7103505,297,266,563 -7103506,341,296,637 -7103507,279,249,528 -7103508,130,100,230 -7103601,315,326,641 -7103602,178,173,351 -7103603,266,260,526 -7103604,347,335,682 -7103605,182,186,368 -7103606,308,316,624 -7103701,311,309,620 -7103702,337,360,697 -7103703,240,255,495 -7103704,215,203,418 -7103705,226,223,449 -7103706,142,135,277 -7103801,373,343,716 -7103802,349,322,671 -7103803,316,330,646 -7103804,248,225,473 -7103805,240,222,462 -7103806,118,112,230 -7103807,48,26,74 -7103808,12,10,22 -7103809,190,181,371 -7103901,211,179,390 -7103902,177,179,356 -7103903,223,224,447 -7103904,246,254,500 -7103905,291,288,579 -7103906,222,234,456 -7103907,293,295,588 -7104001,199,223,422 -7104002,193,207,400 -7104003,324,333,657 -7104004,247,236,483 -7104005,262,281,543 -7104006,342,346,688 -7104101,167,178,345 -7104102,273,250,523 -7104103,711,695,1406 -7104104,39,29,68 -7104105,212,186,398 -7104106,218,225,443 -7104107,124,129,253 -7104108,248,241,489 -7104109,94,92,186 -7104110,16,4,20 -7104201,0,8,8 -7104301,201,194,395 -7104302,231,218,449 -7104303,107,131,238 -7104304,261,284,545 -7104305,590,559,1149 -7104306,516,455,971 -7104401,316,318,634 -7104402,334,324,658 -7104403,216,245,461 -7104404,115,95,210 -7104405,169,194,363 -7104406,356,347,703 -7104407,192,197,389 -7104501,16,17,33 -7104502,234,231,465 -7104503,202,200,402 -7104504,286,285,571 -7104505,252,254,506 -7104506,85,90,175 -7104507,136,120,256 -7104508,163,177,340 -7104509,248,255,503 -7104510,180,169,349 -7104511,207,183,390 -7104512,157,88,245 -7104513,52,72,124 -7104514,47,39,86 -7104601,192,206,398 -7104602,187,152,339 -7104603,246,242,488 -7104604,125,137,262 -7104605,163,198,361 -7104606,197,214,411 -7104607,9,12,21 -7104608,187,236,423 -7104609,243,240,483 -7104610,246,253,499 -7104611,209,196,405 -7104612,260,270,530 -7104613,97,100,197 -7104614,90,118,208 -7104615,104,104,208 -7104701,0,0,0 -7104702,44,47,91 -7104703,249,270,519 -7104704,219,225,444 -7104705,289,274,563 -7104706,277,259,536 -7104707,232,216,448 -7104708,294,307,601 -7104709,324,344,668 -7104710,322,314,636 -7104801,0,0,0 -7104802,266,279,545 -7104803,351,396,747 -7104804,326,338,664 -7104805,224,186,410 -7104806,237,241,478 -7104807,408,433,841 -7104808,167,167,334 -7104809,192,180,372 -7104810,129,151,280 -7104811,181,188,369 -7104812,3,0,3 -7104813,0,0,0 -7104901,159,136,295 -7104902,100,132,232 -7104903,212,252,464 -7104904,275,272,547 -7104905,257,192,449 -7104906,0,0,0 -7104907,178,183,361 -7104908,202,185,387 -7104909,211,205,416 -7104910,259,232,491 -7105001,35,14,49 -7105002,466,369,835 -7105003,151,145,296 -7105004,127,168,295 -7105005,91,94,185 -7105006,81,82,163 -7105007,137,129,266 -7105008,43,28,71 -7105009,0,0,0 -7105101,225,208,433 -7105102,0,0,0 -7105103,82,82,164 -7105104,241,235,476 -7105105,158,161,319 -7105106,253,261,514 -7105107,82,100,182 -7105108,19,23,42 -7105109,84,90,174 -7105201,50,42,92 -7105202,534,27,561 -7105203,136,140,276 -7105204,285,270,555 -7105205,0,0,0 -7105206,83,118,201 -7105207,92,92,184 -7105208,66,76,142 -7105209,188,177,365 -7105210,36,53,89 -7105211,26,42,68 -7105212,22,20,42 -7105213,244,272,516 -7105214,11,14,25 -7105215,112,90,202 -7105216,218,201,419 -7105301,225,43,268 -7105302,100,110,210 -7105303,201,253,454 -7105304,13,14,27 -7105305,193,225,418 -7105306,70,80,150 -7105307,33,34,67 -7105308,69,87,156 -7105309,5,4,9 -7105310,40,39,79 -7105311,0,0,0 -7105312,118,122,240 -7105313,282,342,624 -7105314,104,132,236 -7105401,322,365,687 -7105402,0,0,0 -7105403,108,113,221 -7105404,98,109,207 -7105405,125,126,251 -7105406,63,61,124 -7105407,98,98,196 -7105408,49,56,105 -7105409,54,57,111 -7105410,86,81,167 -7105501,86,71,157 -7105502,166,116,282 -7105503,173,145,318 -7105504,253,282,535 -7105505,103,113,216 -7105506,90,117,207 -7105507,225,217,442 -7105508,45,50,95 -7105509,26,30,56 -7105510,182,166,348 -7105601,160,123,283 -7105602,227,239,466 -7105603,308,307,615 -7105604,248,284,532 -7105605,199,196,395 -7105606,106,114,220 -7105607,8,17,25 -7105608,61,66,127 -7105609,71,44,115 -7105610,135,147,282 -7105611,0,0,0 -7105701,33,28,61 -7105702,90,91,181 -7105703,193,175,368 -7105704,111,126,237 -7105705,241,198,439 -7105706,98,76,174 -7105707,166,141,307 -7105708,321,232,553 -7105709,276,221,497 -7105710,184,152,336 -7105711,300,238,538 -7105712,126,79,205 -7105713,183,149,332 -7105801,215,239,454 -7105802,61,35,96 -7105803,211,169,380 -7105804,178,200,378 -7105805,98,91,189 -7105806,37,26,63 -7105807,97,74,171 -7105808,129,70,199 -7105901,1040,1071,2111 -7105902,100,88,188 -7106001,45,41,86 -7106002,92,54,146 -7106003,767,760,1527 -7106004,183,188,371 -7106005,229,218,447 -7106101,590,581,1171 -7106102,159,150,309 -7106103,1182,1110,2292 -7106104,142,131,273 -7106105,20,37,57 -7106106,29,33,62 -7106107,67,55,122 -7106108,219,204,423 -7106201,87,89,176 -7106202,226,177,403 -7106203,208,233,441 -7106204,13,4,17 -7106205,414,420,834 -7106206,142,140,282 -7106207,202,93,295 -7106208,0,0,0 -7106209,68,55,123 -7106301,96,122,218 -7106302,76,94,170 -7106303,457,417,874 -7106304,151,161,312 -7106305,564,517,1081 -7106306,14,10,24 -7106307,1065,1059,2124 -7106308,418,424,842 -7106309,402,431,833 -7106310,194,206,400 -7106311,79,76,155 -7106312,47,68,115 -7106313,63,66,129 -7106314,40,31,71 -7106315,51,63,114 -7106316,4,6,10 -7106317,13,14,27 -7106401,97,23,120 -7106402,238,218,456 -7106403,514,395,909 -7106404,369,343,712 -7106405,317,319,636 -7106406,316,283,599 -7106407,263,240,503 -7106501,152,160,312 -7106502,264,247,511 -7106503,62,52,114 -7106504,130,162,292 -7106505,48,57,105 -7106506,117,127,244 -7106507,138,142,280 -7106508,108,86,194 -7106601,194,182,376 -7106602,247,170,417 -7106603,32,36,68 -7106604,342,344,686 -7106605,27,29,56 -7106606,234,250,484 -7106607,52,48,100 -7106608,503,552,1055 -7106609,0,0,0 -7106610,3,3,6 -7106611,128,130,258 -7106612,100,86,186 -7106613,111,108,219 -7106614,71,75,146 -7106701,211,235,446 -7106702,296,268,564 -7106703,191,173,364 -7106704,270,255,525 -7106705,212,176,388 -7106706,160,184,344 -7106707,264,300,564 -7106708,243,252,495 -7106709,83,78,161 -7106710,20,11,31 -7106711,168,160,328 -7106712,157,143,300 -7106713,72,70,142 -7106714,120,118,238 -7106715,193,161,354 -7106716,146,149,295 -7106717,416,326,742 -7106718,170,144,314 -7106719,332,351,683 -7106720,186,226,412 -7106721,22,28,50 -7106722,250,232,482 -7106723,180,186,366 -7106724,191,189,380 -7106725,112,123,235 -7106801,65,40,105 -7106802,124,108,232 -7106803,40,45,85 -7106804,63,63,126 -7106805,94,99,193 -7106806,166,178,344 -7106807,292,363,655 -7106808,82,57,139 -7106809,127,139,266 -7106810,55,78,133 -7106811,38,35,73 -7106812,84,75,159 -7949999,1018,851,1869 -7979991,0,0,0 -7979992,0,0,0 -7979993,89,19,108 -8100101,147,186,333 -8100102,190,184,374 -8100103,133,161,294 -8100104,236,249,485 -8100105,257,280,537 -8100106,238,220,458 -8100201,261,243,504 -8100202,170,171,341 -8100203,224,224,448 -8100204,4,4,8 -8100205,0,0,0 -8100206,264,223,487 -8100207,320,261,581 -8100208,208,201,409 -8100209,174,132,306 -8100210,187,181,368 -8100211,278,269,547 -8100212,182,256,438 -8100301,185,177,362 -8100302,277,333,610 -8100303,351,323,674 -8100304,118,116,234 -8100305,350,315,665 -8100306,184,205,389 -8100307,120,122,242 -8100308,612,693,1305 -8100309,141,134,275 -8100310,120,134,254 -8100311,131,149,280 -8100312,188,220,408 -8100313,283,264,547 -8100314,79,59,138 -8100401,126,123,249 -8100402,222,205,427 -8100403,230,238,468 -8100404,172,194,366 -8100405,222,232,454 -8100406,269,309,578 -8100407,249,279,528 -8100501,145,154,299 -8100502,199,209,408 -8100503,171,175,346 -8100504,144,160,304 -8100505,173,216,389 -8100506,83,95,178 -8100507,172,168,340 -8100508,113,118,231 -8100509,204,205,409 -8100601,385,437,822 -8100602,112,101,213 -8100603,321,319,640 -8100604,148,145,293 -8100605,214,203,417 -8100606,155,170,325 -8100607,214,257,471 -8100608,222,220,442 -8100609,181,182,363 -8100610,174,179,353 -8100611,227,242,469 -8100612,296,248,544 -8100613,132,123,255 -8100614,161,183,344 -8100615,109,110,219 -8100616,245,250,495 -8100617,205,231,436 -8100701,244,274,518 -8100702,117,131,248 -8100703,243,247,490 -8100704,84,116,200 -8100705,231,224,455 -8100706,186,192,378 -8100707,233,241,474 -8100708,149,161,310 -8100709,171,169,340 -8100710,205,184,389 -8100711,302,284,586 -8100712,234,184,418 -8100713,158,163,321 -8100714,142,149,291 -8100801,176,213,389 -8100802,251,242,493 -8100803,212,228,440 -8100804,132,153,285 -8100805,254,236,490 -8100806,190,178,368 -8100807,305,332,637 -8100808,178,178,356 -8100809,276,271,547 -8100810,178,176,354 -8100811,130,114,244 -8100812,204,232,436 -8100901,189,184,373 -8100902,151,120,271 -8100903,220,222,442 -8100904,187,170,357 -8100905,165,176,341 -8100906,242,239,481 -8100907,144,162,306 -8100908,151,170,321 -8100909,150,139,289 -8100910,205,180,385 -8101001,183,188,371 -8101002,197,179,376 -8101003,244,238,482 -8101004,187,169,356 -8101005,264,276,540 -8101101,324,307,631 -8101102,173,172,345 -8101103,310,322,632 -8101104,228,227,455 -8101105,156,137,293 -8101106,120,123,243 -8101107,0,0,0 -8101108,95,107,202 -8101109,123,126,249 -8101110,130,129,259 -8101201,0,0,0 -8101301,94,115,209 -8101302,302,207,509 -8101303,180,178,358 -8101304,151,157,308 -8101305,222,197,419 -8101306,154,190,344 -8101307,86,110,196 -8101308,136,152,288 -8101309,0,0,0 -8101310,128,118,246 -8101401,131,137,268 -8101402,249,247,496 -8101403,297,290,587 -8101404,259,249,508 -8101405,202,200,402 -8101406,127,135,262 -8101407,280,296,576 -8101501,299,357,656 -8101502,143,140,283 -8101503,160,175,335 -8101504,173,179,352 -8101505,244,251,495 -8101506,147,191,338 -8101507,310,380,690 -8101508,159,173,332 -8101509,186,210,396 -8101510,173,204,377 -8101511,123,131,254 -8101512,149,153,302 -8101601,219,216,435 -8101602,98,94,192 -8101603,231,220,451 -8101604,199,215,414 -8101605,199,191,390 -8101606,250,243,493 -8101607,133,136,269 -8101608,3,0,3 -8101609,231,237,468 -8101610,128,121,249 -8101611,188,181,369 -8101612,282,250,532 -8101613,205,197,402 -8101614,225,196,421 -8101615,246,233,479 -8101616,261,244,505 -8101617,207,208,415 -8101618,196,205,401 -8101619,217,214,431 -8101701,156,152,308 -8101702,278,273,551 -8101703,302,285,587 -8101704,162,137,299 -8101705,164,178,342 -8101706,279,284,563 -8101707,196,250,446 -8101708,90,88,178 -8101709,162,163,325 -8101801,0,0,0 -8101901,242,266,508 -8101902,283,289,572 -8101903,68,71,139 -8101904,203,201,404 -8101905,225,238,463 -8101906,161,150,311 -8101907,265,288,553 -8101908,282,233,515 -8101909,209,215,424 -8101910,182,180,362 -8101911,227,245,472 -8101912,179,184,363 -8101913,202,223,425 -8102001,152,154,306 -8102002,184,173,357 -8102003,142,139,281 -8102004,123,125,248 -8102005,151,210,361 -8102006,134,144,278 -8102007,177,180,357 -8102008,195,173,368 -8102101,297,318,615 -8102102,192,205,397 -8102103,267,292,559 -8102104,253,252,505 -8102105,357,360,717 -8102201,118,115,233 -8102202,139,149,288 -8102203,222,235,457 -8102204,271,269,540 -8102205,276,289,565 -8102206,160,175,335 -8102207,244,239,483 -8102208,143,167,310 -8102301,233,252,485 -8102302,121,130,251 -8102303,228,215,443 -8102304,207,239,446 -8102305,154,170,324 -8102306,197,182,379 -8102307,164,390,554 -8102401,123,131,254 -8102402,220,263,483 -8102403,184,160,344 -8102404,160,115,275 -8102405,143,134,277 -8102406,197,225,422 -8102407,140,116,256 -8102408,244,251,495 -8102501,173,166,339 -8102502,217,219,436 -8102503,242,260,502 -8102504,231,224,455 -8102505,134,145,279 -8102506,262,283,545 -8102601,164,167,331 -8102602,80,106,186 -8102603,193,224,417 -8102604,219,238,457 -8102605,133,123,256 -8102606,284,272,556 -8102607,192,209,401 -8102701,264,225,489 -8102801,11,16,27 -8102901,20,13,33 -8103001,202,84,286 -8103002,166,93,259 -8103003,31,19,50 -8103004,10,4,14 -8103005,152,148,300 -8103006,6,7,13 -8103101,289,18,307 -8103201,21,13,34 -8103301,133,117,250 -8103401,183,196,379 -8103402,116,115,231 -8103403,209,222,431 -8103404,213,226,439 -8103405,210,241,451 -8103406,184,205,389 -8103407,140,149,289 -8103408,239,257,496 -8103409,127,137,264 -8103410,242,253,495 -8103411,277,295,572 -8103412,225,256,481 -8103413,203,223,426 -8103414,123,109,232 -8103501,134,127,261 -8103502,216,247,463 -8103503,233,228,461 -8103504,155,156,311 -8103601,185,194,379 -8103602,251,230,481 -8103603,301,331,632 -8103701,265,297,562 -8103801,472,464,936 -8103802,425,434,859 -8103803,267,258,525 -8103901,284,262,546 -8103902,385,385,770 -8103903,370,342,712 -8103904,251,252,503 -8103905,313,266,579 -8103906,341,357,698 -8104001,272,281,553 -8104002,168,164,332 -8104003,287,263,550 -8104004,345,337,682 -8104005,193,200,393 -8104006,161,145,306 -8104007,226,266,492 -8104008,256,284,540 -8104009,347,318,665 -8104010,260,235,495 -8104011,0,0,0 -8104012,312,295,607 -8104101,27,9,36 -8104201,0,3,3 -8104301,153,178,331 -8104401,256,264,520 -8104402,272,296,568 -8104403,372,367,739 -8104404,286,281,567 -8104405,223,212,435 -8104406,320,358,678 -8104407,0,0,0 -8104408,290,309,599 -8104409,168,159,327 -8104501,4,3,7 -8104601,110,117,227 -8104602,226,192,418 -8104603,126,117,243 -8104604,135,142,277 -8104605,117,128,245 -8104606,164,183,347 -8104607,115,125,240 -8104608,272,266,538 -8104609,130,154,284 -8104610,279,313,592 -8104611,317,339,656 -8104612,88,124,212 -8104613,207,208,415 -8104614,147,129,276 -8104615,329,335,664 -8104616,92,112,204 -8104617,260,230,490 -8104618,183,214,397 -8104619,135,147,282 -8104620,184,186,370 -8104621,167,179,346 -8104622,149,171,320 -8104623,256,270,526 -8104624,0,0,0 -8104625,201,216,417 -8104701,138,150,288 -8104702,175,186,361 -8104703,262,244,506 -8104704,133,129,262 -8104705,232,214,446 -8104706,164,189,353 -8104707,107,106,213 -8104708,173,153,326 -8104709,126,135,261 -8104710,231,230,461 -8104711,256,261,517 -8104712,130,149,279 -8104713,226,219,445 -8104714,0,0,0 -8104715,147,156,303 -8104716,215,206,421 -8104717,255,257,512 -8104718,271,249,520 -8104719,214,256,470 -8104801,163,182,345 -8104802,261,262,523 -8104803,169,157,326 -8104804,197,209,406 -8104805,253,259,512 -8104806,166,180,346 -8104807,154,148,302 -8104808,185,194,379 -8104809,239,245,484 -8104810,142,161,303 -8104811,188,198,386 -8104812,247,296,543 -8104813,133,144,277 -8104814,270,272,542 -8104901,1011,951,1962 -8104902,5,0,5 -8104903,0,0,0 -8105001,186,251,437 -8105002,151,170,321 -8105003,0,0,0 -8105004,112,139,251 -8105005,224,264,488 -8105006,211,187,398 -8105007,159,139,298 -8105008,110,126,236 -8105009,239,326,565 -8105010,174,209,383 -8105011,261,287,548 -8105012,199,203,402 -8105013,254,263,517 -8105014,124,142,266 -8105101,301,190,491 -8105102,245,229,474 -8105103,394,386,780 -8105104,11,4,15 -8105105,210,174,384 -8105106,250,201,451 -8105107,271,250,521 -8105108,478,441,919 -8105109,267,260,527 -8105201,336,193,529 -8105202,174,194,368 -8105203,189,241,430 -8105204,1249,462,1711 -8105205,210,198,408 -8105206,290,288,578 -8105207,209,187,396 -8105208,244,259,503 -8105209,0,0,0 -8105301,218,166,384 -8105302,238,190,428 -8105303,679,747,1426 -8105304,327,259,586 -8105401,274,242,516 -8105402,328,340,668 -8105403,286,268,554 -8105404,184,219,403 -8105501,205,236,441 -8105502,158,134,292 -8105503,185,198,383 -8105504,192,169,361 -8105505,149,155,304 -8105506,186,210,396 -8105507,221,209,430 -8105508,287,291,578 -8105509,172,192,364 -8105601,248,271,519 -8105602,250,264,514 -8105603,212,231,443 -8105604,160,199,359 -8105605,213,243,456 -8105606,114,113,227 -8105607,183,203,386 -8105701,184,207,391 -8105702,109,135,244 -8105703,126,162,288 -8105704,138,159,297 -8105705,227,267,494 -8105706,220,295,515 -8105707,294,312,606 -8105708,229,240,469 -8105709,212,223,435 -8105710,249,195,444 -8105711,159,149,308 -8105801,252,281,533 -8105802,190,257,447 -8105803,139,108,247 -8105804,168,177,345 -8105805,107,132,239 -8105806,122,160,282 -8105807,260,298,558 -8105808,278,277,555 -8105809,173,177,350 -8105810,174,138,312 -8105811,230,260,490 -8105812,197,189,386 -8105813,232,252,484 -8105814,10,7,17 -8105901,214,152,366 -8105902,304,264,568 -8105903,171,197,368 -8105904,133,147,280 -8106001,232,179,411 -8106002,331,319,650 -8106003,221,260,481 -8106004,333,286,619 -8106005,357,281,638 -8106006,224,228,452 -8106007,156,184,340 -8106101,215,207,422 -8106102,170,172,342 -8106103,189,200,389 -8106104,391,382,773 -8106105,0,6,6 -8106106,118,108,226 -8106107,147,177,324 -8106108,255,245,500 -8106109,179,202,381 -8106110,169,175,344 -8106111,139,161,300 -8106112,137,149,286 -8106113,146,139,285 -8106114,278,267,545 -8106201,140,240,380 -8106202,187,295,482 -8106203,0,5,5 -8106204,156,164,320 -8106205,205,238,443 -8106206,128,131,259 -8106207,159,182,341 -8106208,138,138,276 -8106209,126,149,275 -8106301,282,274,556 -8106302,124,126,250 -8106303,200,196,396 -8106304,132,133,265 -8106401,170,127,297 -8106402,248,290,538 -8106403,110,107,217 -8106404,161,147,308 -8106405,252,236,488 -8106406,309,296,605 -8106407,127,107,234 -8106408,149,82,231 -8106409,3,3,6 -8106410,88,95,183 -8106411,215,200,415 -8106412,190,196,386 -8106501,78,108,186 -8106502,384,399,783 -8106503,203,200,403 -8106504,281,311,592 -8106505,211,224,435 -8106506,146,132,278 -8106507,220,232,452 -8106508,223,202,425 -8106509,113,134,247 -8106510,178,182,360 -8106601,0,0,0 -8106701,166,194,360 -8106702,109,106,215 -8106703,141,147,288 -8106704,164,158,322 -8106705,152,175,327 -8106706,177,186,363 -8106707,115,108,223 -8106708,190,220,410 -8106709,146,150,296 -8106710,154,156,310 -8106711,260,378,638 -8106712,203,197,400 -8106713,152,192,344 -8106714,122,143,265 -8106715,207,194,401 -8106716,108,112,220 -8106717,152,144,296 -8106801,3,0,3 -8106901,150,140,290 -8106902,191,107,298 -8106903,186,180,366 -8106904,229,168,397 -8106905,266,291,557 -8106906,263,313,576 -8106907,207,224,431 -8106908,0,0,0 -8106909,170,172,342 -8107001,156,171,327 -8107002,213,220,433 -8107003,199,236,435 -8107004,136,160,296 -8107005,230,247,477 -8107006,138,132,270 -8107007,211,223,434 -8107008,131,113,244 -8107101,0,0,0 -8107102,257,266,523 -8107103,289,317,606 -8107104,130,162,292 -8107105,209,225,434 -8107106,175,167,342 -8107107,192,171,363 -8107108,271,320,591 -8107109,193,194,387 -8107110,333,384,717 -8107111,134,114,248 -8107112,278,290,568 -8107201,300,301,601 -8107202,156,172,328 -8107203,192,213,405 -8107204,230,261,491 -8107205,258,256,514 -8107206,241,271,512 -8107207,219,212,431 -8107208,268,290,558 -8107209,0,0,0 -8107301,211,229,440 -8107302,251,240,491 -8107303,268,282,550 -8107304,165,184,349 -8107305,192,214,406 -8107306,269,266,535 -8107307,221,224,445 -8107308,148,178,326 -8107309,284,274,558 -8107310,198,219,417 -8107311,294,328,622 -8107312,190,177,367 -8107313,158,175,333 -8107401,227,222,449 -8107402,253,266,519 -8107403,155,156,311 -8107404,154,176,330 -8107405,216,221,437 -8107406,225,238,463 -8107407,278,280,558 -8107408,124,126,250 -8107409,211,241,452 -8107410,177,154,331 -8107411,257,244,501 -8107412,133,138,271 -8107413,168,183,351 -8107501,292,310,602 -8107502,173,183,356 -8107503,194,202,396 -8107504,201,209,410 -8107505,239,248,487 -8107506,225,224,449 -8107507,217,205,422 -8107508,153,162,315 -8107509,128,123,251 -8107510,292,292,584 -8107511,185,179,364 -8107512,145,176,321 -8107513,182,167,349 -8107601,171,191,362 -8107602,203,212,415 -8107603,201,196,397 -8107604,195,197,392 -8107605,186,203,389 -8107606,231,232,463 -8107607,0,0,0 -8107608,219,206,425 -8107609,125,119,244 -8107701,321,297,618 -8107702,202,201,403 -8107703,166,165,331 -8107704,159,165,324 -8107705,212,233,445 -8107706,151,160,311 -8107707,206,194,400 -8107708,3,0,3 -8107801,221,244,465 -8107802,105,118,223 -8107803,207,206,413 -8107804,155,160,315 -8107805,205,198,403 -8107806,204,199,403 -8107807,123,116,239 -8107808,200,208,408 -8107809,145,157,302 -8107810,202,255,457 -8107811,228,309,537 -8107812,159,189,348 -8107813,170,176,346 -8107814,253,256,509 -8107815,153,174,327 -8107816,135,141,276 -8107817,133,127,260 -8107818,219,220,439 -8107819,126,127,253 -8107820,204,213,417 -8107821,203,228,431 -8107901,133,150,283 -8107902,176,192,368 -8107903,227,256,483 -8107904,194,174,368 -8107905,175,192,367 -8107906,164,177,341 -8107907,126,159,285 -8107908,147,149,296 -8107909,154,133,287 -8108001,0,0,0 -8108002,183,214,397 -8108003,260,273,533 -8108004,265,260,525 -8108101,182,201,383 -8108102,170,156,326 -8108103,255,255,510 -8108104,151,186,337 -8108105,197,182,379 -8108106,197,223,420 -8108107,156,149,305 -8108108,228,229,457 -8108109,183,181,364 -8108110,243,274,517 -8108111,162,156,318 -8108201,169,160,329 -8108202,110,117,227 -8108203,192,219,411 -8108204,173,165,338 -8108205,161,165,326 -8108206,158,133,291 -8108207,273,268,541 -8108208,113,118,231 -8108209,147,133,280 -8108210,245,237,482 -8108211,160,172,332 -8108212,222,197,419 -8108213,257,252,509 -8108214,106,115,221 -8108215,256,263,519 -8108216,192,215,407 -8108217,201,228,429 -8108218,185,180,365 -8108219,276,289,565 -8108220,195,211,406 -8108221,158,201,359 -8108222,203,203,406 -8108223,125,130,255 -8108224,213,216,429 -8108225,148,132,280 -8108226,197,222,419 -8108227,198,191,389 -8108228,85,102,187 -8108229,260,250,510 -8108230,179,190,369 -8108231,163,181,344 -8108232,159,170,329 -8108233,144,130,274 -8108234,166,154,320 -8108235,280,294,574 -8108236,282,285,567 -8108237,220,224,444 -8108238,195,176,371 -8108239,163,150,313 -8108240,123,109,232 -8108241,214,234,448 -8108301,279,255,534 -8108302,215,198,413 -8108303,272,234,506 -8108401,118,92,210 -8108402,132,113,245 -8108403,163,150,313 -8108404,159,201,360 -8108405,200,190,390 -8108406,138,133,271 -8108407,145,144,289 -8108408,203,200,403 -8108409,133,153,286 -8108410,124,124,248 -8108411,219,205,424 -8108412,172,198,370 -8108413,108,113,221 -8108414,122,131,253 -8108415,195,195,390 -8108416,47,83,130 -8108417,163,222,385 -8108418,104,126,230 -8108501,4,0,4 -8108601,175,153,328 -8108602,140,135,275 -8108603,228,251,479 -8108604,120,137,257 -8108605,213,234,447 -8108701,245,229,474 -8108702,218,212,430 -8108703,279,328,607 -8108704,135,147,282 -8108705,217,254,471 -8108706,305,289,594 -8108707,139,136,275 -8108801,291,279,570 -8108802,150,155,305 -8108803,192,222,414 -8108804,234,219,453 -8108805,171,172,343 -8108806,163,160,323 -8108807,241,238,479 -8108808,157,162,319 -8108809,287,292,579 -8108810,112,116,228 -8108901,19,13,32 -8109001,109,118,227 -8109002,94,99,193 -8109003,262,232,494 -8109004,261,284,545 -8109005,193,192,385 -8109006,187,189,376 -8109007,216,217,433 -8109008,230,258,488 -8109009,156,161,317 -8109010,252,259,511 -8109011,267,255,522 -8109012,122,141,263 -8109013,176,162,338 -8109014,250,261,511 -8109015,162,157,319 -8109016,237,239,476 -8109017,100,105,205 -8109018,176,195,371 -8109019,269,248,517 -8109020,155,145,300 -8109101,120,119,239 -8109102,171,157,328 -8109103,142,181,323 -8109104,128,133,261 -8109105,168,163,331 -8109106,212,214,426 -8109107,170,190,360 -8109108,236,226,462 -8109201,237,256,493 -8109202,216,212,428 -8109203,202,195,397 -8109204,162,164,326 -8109205,164,160,324 -8109206,164,168,332 -8109207,167,182,349 -8109208,245,243,488 -8109209,51,56,107 -8109210,0,0,0 -8109301,190,289,479 -8109302,112,133,245 -8109303,227,224,451 -8109304,344,345,689 -8109305,270,277,547 -8109306,298,305,603 -8109401,208,202,410 -8109402,0,0,0 -8109403,115,115,230 -8109404,279,322,601 -8109405,294,288,582 -8109406,251,240,491 -8109407,197,204,401 -8109501,134,146,280 -8109502,161,181,342 -8109503,129,121,250 -8109504,155,180,335 -8109505,203,228,431 -8109506,139,152,291 -8109507,172,188,360 -8109508,222,239,461 -8109509,168,200,368 -8109601,181,193,374 -8109602,184,187,371 -8109603,287,285,572 -8109604,200,225,425 -8109605,177,160,337 -8109701,210,243,453 -8109702,221,215,436 -8109703,219,213,432 -8109704,151,153,304 -8109705,135,147,282 -8109706,157,149,306 -8109707,192,190,382 -8109801,128,233,361 -8109802,168,165,333 -8109803,3,0,3 -8109804,121,120,241 -8109805,321,293,614 -8109806,141,167,308 -8109807,178,217,395 -8109808,226,242,468 -8109809,276,260,536 -8109901,390,349,739 -8109902,286,292,578 -8109903,170,183,353 -8109904,204,192,396 -8109905,209,209,418 -8110001,242,241,483 -8110002,189,197,386 -8110003,139,221,360 -8110004,253,299,552 -8110005,267,272,539 -8110006,210,210,420 -8110007,127,129,256 -8110008,290,307,597 -8110009,201,200,401 -8110010,218,271,489 -8110011,113,117,230 -8110012,213,244,457 -8110101,126,124,250 -8110102,188,195,383 -8110103,331,314,645 -8110104,187,193,380 -8110105,179,189,368 -8110106,144,219,363 -8110107,233,241,474 -8110108,244,252,496 -8110201,0,0,0 -8110202,301,316,617 -8110203,201,217,418 -8110204,164,162,326 -8110205,125,135,260 -8110206,115,108,223 -8110207,276,359,635 -8110208,214,208,422 -8110209,146,149,295 -8110301,181,195,376 -8110302,182,196,378 -8110303,153,178,331 -8110304,197,225,422 -8110305,110,132,242 -8110306,217,327,544 -8110307,224,224,448 -8110308,99,119,218 -8110401,329,337,666 -8110402,148,173,321 -8110403,194,229,423 -8110404,195,224,419 -8110405,252,273,525 -8110406,0,0,0 -8110501,0,0,0 -8110502,314,269,583 -8110503,167,175,342 -8110504,124,156,280 -8110505,192,193,385 -8110506,251,260,511 -8110507,348,284,632 -8110601,211,212,423 -8110602,227,211,438 -8110603,230,223,453 -8110604,107,147,254 -8110605,259,210,469 -8110606,216,230,446 -8110607,204,231,435 -8110701,174,170,344 -8110702,256,271,527 -8110801,3,0,3 -8110802,118,126,244 -8110803,277,280,557 -8110804,212,239,451 -8110805,218,209,427 -8110806,197,180,377 -8110807,232,252,484 -8110901,115,114,229 -8110902,297,306,603 -8110903,0,0,0 -8110904,0,0,0 -8110905,93,91,184 -8110906,182,225,407 -8110907,143,161,304 -8110908,178,168,346 -8110909,7,0,7 -8111001,243,244,487 -8111002,233,248,481 -8111003,153,130,283 -8111004,207,210,417 -8111005,156,158,314 -8111006,149,154,303 -8949999,327,304,631 -8979991,0,0,0 -9100101,707,0,707 -9100102,8,8,16 -9100103,187,140,327 -9100104,331,267,598 -9100105,228,191,419 -9100201,207,212,419 -9100202,77,58,135 -9100203,0,0,0 -9100301,109,63,172 -9100302,98,98,196 -9100303,7,4,11 -9100304,0,0,0 -9949999,7,19,26 -9979993,0,3,3 diff --git a/wwwroot/data/2011Census_TOT_SA2.csv b/wwwroot/data/2011Census_TOT_SA2.csv deleted file mode 100644 index 2042da3608..0000000000 --- a/wwwroot/data/2011Census_TOT_SA2.csv +++ /dev/null @@ -1,2215 +0,0 @@ -SA2,Tot_P_M,Tot_P_F,Tot_P_P -101011001,10760,10724,21484 -101011002,5915,5699,11614 -101011003,3072,3256,6328 -101011004,5234,5161,10395 -101011005,4955,5326,10281 -101011006,3726,3667,7393 -101021007,1690,1667,3357 -101021008,4238,4363,8601 -101021009,5210,5024,10234 -101021010,2412,2229,4641 -101021011,7117,6993,14110 -101021012,6186,6385,12571 -101031013,1223,1196,2419 -101031014,3308,3366,6674 -101031015,1645,1531,3176 -101031016,3568,3095,6663 -101041017,3652,3851,7503 -101041018,3950,4271,8221 -101041019,3896,4149,8045 -101041020,4434,4335,8769 -101041021,1391,1437,2828 -101041022,28,28,56 -101041023,1555,1650,3205 -101041024,1663,1547,3210 -101041025,4711,5070,9781 -101041026,3777,3841,7618 -101041027,4303,4328,8631 -102011028,3478,3530,7008 -102011029,5128,5208,10336 -102011030,2271,2152,4423 -102011031,6303,7289,13592 -102011032,8581,9489,18070 -102011033,3198,3253,6451 -102011034,3271,3837,7108 -102011035,3155,3337,6492 -102011036,3994,4057,8051 -102011037,3081,3233,6314 -102011038,3189,3446,6635 -102011039,6182,6385,12567 -102011040,10721,11814,22535 -102011041,4484,4607,9091 -102011042,6344,6909,13253 -102011043,5302,5888,11190 -102021044,10013,11367,21380 -102021045,5274,5508,10782 -102021046,4398,4570,8968 -102021047,7416,7930,15346 -102021048,9876,10802,20678 -102021049,1503,1505,3008 -102021050,4858,5207,10065 -102021051,2368,2424,4792 -102021052,2712,2689,5401 -102021053,6734,7254,13988 -102021054,4347,4654,9001 -102021055,2470,2565,5035 -102021056,6071,6424,12495 -102021057,3995,4158,8153 -103011058,11460,11524,22984 -103011059,4744,4753,9497 -103011060,3432,3178,6610 -103011061,2349,2110,4459 -103021062,3465,3428,6893 -103021063,4385,4542,8927 -103021064,2727,2622,5349 -103021065,4870,4933,9803 -103021066,1848,1799,3647 -103021067,5311,5630,10941 -103021068,1742,1649,3391 -103021069,2906,2941,5847 -103031070,6228,6021,12249 -103031071,4052,3845,7897 -103031072,5160,5323,10483 -103031073,1688,1658,3346 -103031074,5169,4782,9951 -103031075,0,0,0 -103041076,3499,3507,7006 -103041077,9530,10099,19629 -103041078,8212,8626,16838 -103041079,5550,5447,10997 -104011080,8864,9495,18359 -104011081,7679,7355,15034 -104011082,7732,8110,15842 -104021083,2735,2967,5702 -104021084,7793,8549,16342 -104021085,4669,5148,9817 -104021086,1822,1763,3585 -104021087,1657,1635,3292 -104021088,3817,3879,7696 -104021089,9101,9840,18941 -104021090,2242,2300,4542 -104021091,5676,5770,11446 -105011092,2180,2104,4284 -105011093,2463,2254,4717 -105011094,2139,2121,4260 -105011095,2624,2586,5210 -105011096,3662,3161,6823 -105021097,9018,9499,18517 -105021098,1434,1250,2684 -105031099,4100,4073,8173 -105031100,5181,5669,10850 -105031101,7389,8334,15723 -105031102,3670,3750,7420 -105031103,2671,2495,5166 -105031104,2154,2304,4458 -105031105,3348,3330,6678 -105031106,4470,4154,8624 -106011107,4691,4580,9271 -106011108,10036,10225,20261 -106011109,3515,3520,7035 -106011110,4188,4130,8318 -106011111,7988,8208,16196 -106011112,8253,7883,16136 -106011113,2479,2280,4759 -106021114,2405,2368,4773 -106021115,12536,13272,25808 -106021116,3248,3367,6615 -106021117,8877,9409,18286 -106021118,4388,4338,8726 -106031119,2726,2703,5429 -106031120,3132,3184,6316 -106031121,9456,10189,19645 -106031122,6754,6983,13737 -106031123,2619,2684,5303 -106031124,2250,2249,4499 -106031125,6329,6248,12577 -106041126,6124,5667,11791 -106041127,2039,1959,3998 -106041128,2858,3023,5881 -106041129,4005,3865,7870 -107011130,13335,13314,26649 -107011131,10947,11552,22499 -107011132,3658,3759,7417 -107011133,24,4,28 -107011134,7497,7825,15322 -107021135,6,6,12 -107031136,6679,6939,13618 -107031137,3403,3600,7003 -107031138,3510,3654,7164 -107031139,2842,2895,5737 -107031140,3408,3616,7024 -107031141,6632,6814,13446 -107031142,4617,4872,9489 -107031143,9835,10222,20057 -107041144,9854,10145,19999 -107041145,7332,7754,15086 -107041146,9921,9962,19883 -107041147,4249,4210,8459 -107041148,5202,5377,10579 -107041149,14245,13637,27882 -107041150,8990,9638,18628 -108011151,2388,2341,4729 -108011152,6546,7156,13702 -108011153,2871,2746,5617 -108011154,2756,3044,5800 -108021155,7066,7228,14294 -108021156,4646,4298,8944 -108021157,2214,2428,4642 -108021158,3163,3502,6665 -108021159,3717,3620,7337 -108021160,2430,2524,4954 -108031161,175,185,360 -108041162,7678,8063,15741 -108041163,12731,13982,26713 -108041164,7019,7990,15009 -108041165,2595,2441,5036 -108041166,4922,5294,10216 -108051167,2422,2447,4869 -108051168,4644,4916,9560 -108051169,9586,10520,20106 -108051170,5867,5649,11516 -108051171,2537,2776,5313 -109011172,6161,6641,12802 -109011173,4510,4801,9311 -109011174,5036,5489,10525 -109011175,5473,5402,10875 -109011176,6742,7180,13922 -109021177,1504,1492,2996 -109021178,2920,2849,5769 -109021179,1980,1681,3661 -109031180,2720,2885,5605 -109031181,3347,3162,6509 -109031182,3453,3667,7120 -109031183,3517,3289,6806 -109031184,2530,2587,5117 -109031185,4655,4642,9297 -110011186,10660,11808,22468 -110011187,2178,2111,4289 -110011188,2973,3028,6001 -110011189,1594,1597,3191 -110021190,4285,4371,8656 -110021191,5519,5881,11400 -110021192,2688,2596,5284 -110021193,2813,2804,5617 -110021194,3390,3421,6811 -110031195,4174,4224,8398 -110031196,2946,2604,5550 -110031197,3405,3525,6930 -110031198,2485,2325,4810 -110041199,4264,4468,8732 -110041200,2361,2161,4522 -110041201,3771,3707,7478 -110041202,9815,10087,19902 -110041203,6331,7181,13512 -110041204,2625,2698,5323 -110041205,8641,8700,17341 -111011206,8329,8816,17145 -111011207,2765,2854,5619 -111011208,11512,12043,23555 -111011209,11228,11736,22964 -111011210,4126,4534,8660 -111011211,1719,1742,3461 -111011212,5243,5488,10731 -111011213,5869,6100,11969 -111011214,6153,6607,12760 -111021215,4190,4509,8699 -111021216,3898,4036,7934 -111021217,5559,5864,11423 -111021218,6805,7035,13840 -111021219,6421,6846,13267 -111021220,4357,4350,8707 -111021221,3057,3076,6133 -111031222,7365,7680,15045 -111031223,4127,4235,8362 -111031224,5955,5783,11738 -111031225,7872,8535,16407 -111031226,5583,5630,11213 -111031227,7262,7380,14642 -111031228,6634,6762,13396 -111031229,5173,4962,10135 -111031230,12,6,18 -111031231,4982,5101,10083 -111031232,3055,3066,6121 -111031233,9118,9919,19037 -111031234,5676,6183,11859 -111031235,3870,3798,7668 -112011236,7611,8555,16166 -112011237,7631,8064,15695 -112011238,2615,2706,5321 -112011239,3698,4034,7732 -112011240,4326,4329,8655 -112011241,2528,2461,4989 -112011242,3568,3772,7340 -112011243,3553,3782,7335 -112021244,5720,6112,11832 -112021245,3534,3361,6895 -112021246,5955,6762,12717 -112021247,3753,3757,7510 -112021248,7631,7934,15565 -112021249,7463,7307,14770 -112031250,5311,5617,10928 -112031251,3895,4342,8237 -112031252,4811,4738,9549 -112031253,5993,6148,12141 -112031254,8710,9484,18194 -112031255,12289,13763,26052 -113011256,8884,9016,17900 -113011257,6652,6031,12683 -113011258,4830,5061,9891 -113011259,3027,3094,6121 -113021260,1805,1584,3389 -113021261,3116,3178,6294 -113021262,2417,2227,4644 -113031263,3615,3829,7444 -113031264,1821,1756,3577 -113031265,3307,2514,5821 -113031266,3149,3176,6325 -113031267,7694,8215,15909 -113031268,1633,1859,3492 -113031269,10012,10857,20869 -113031270,5731,6043,11774 -113031271,7182,6805,13987 -114011272,4036,4250,8286 -114011273,1776,1750,3526 -114011274,2432,2357,4789 -114011275,20,18,38 -114011276,1850,1970,3820 -114011277,7451,7784,15235 -114011278,9066,9038,18104 -114011279,6092,6518,12610 -114011280,2065,2065,4130 -114011281,1680,1616,3296 -114011282,6742,7407,14149 -114011283,2400,2242,4642 -114021284,5683,6471,12154 -114021285,2856,2818,5674 -114021286,3781,4322,8103 -114021287,4281,4651,8932 -114021288,1670,1703,3373 -114021289,3001,3149,6150 -115011290,10491,10857,21348 -115011291,9166,9450,18616 -115011292,13501,13956,27457 -115011293,11639,12721,24360 -115011294,2852,2980,5832 -115011295,11690,12071,23761 -115011296,6113,6333,12446 -115021297,10050,10192,20242 -115021298,2510,2587,5097 -115031299,1415,1224,2639 -115031300,10818,10619,21437 -115041301,4565,4450,9015 -115041302,9208,8960,18168 -116011303,7916,7627,15543 -116011304,8395,8479,16874 -116011305,13089,13527,26616 -116011306,9575,9929,19504 -116011307,11839,12130,23969 -116011308,11175,11337,22512 -116021309,7658,7667,15325 -116021310,11459,10945,22404 -116021311,12820,12991,25811 -116021312,5720,5515,11235 -116031313,9078,9519,18597 -116031314,4052,4078,8130 -116031315,9709,9884,19593 -116031316,7839,8206,16045 -116031317,10811,10908,21719 -116031318,11,6,17 -116031319,9595,10031,19626 -117011320,12,0,12 -117011321,4387,4498,8885 -117011322,9909,9957,19866 -117011323,5181,5408,10589 -117011324,3,0,3 -117011325,4,0,4 -117021326,12194,12420,24614 -117021327,9358,9448,18806 -117021328,3722,3468,7190 -117031329,5918,4143,10061 -117031330,7150,6748,13898 -117031331,8071,8505,16576 -117031332,10752,10767,21519 -117031333,9753,8285,18038 -117031334,9557,9174,18731 -117031335,9188,7371,16559 -117031336,8873,6469,15342 -117031337,11726,11034,22760 -117031338,11096,9994,21090 -118011339,8801,9089,17890 -118011340,9827,9501,19328 -118011341,7634,8212,15846 -118011342,0,0,0 -118011343,11330,12601,23931 -118011344,4998,5425,10423 -118011345,6852,7386,14238 -118011346,5555,6157,11712 -118011347,3239,3941,7180 -118021348,11351,12321,23672 -118021349,13598,13275,26873 -118021350,10992,10118,21110 -118021351,14249,15345,29594 -118021352,13171,14569,27740 -119011353,15254,15579,30833 -119011354,9796,10275,20071 -119011355,0,0,0 -119011356,5133,5053,10186 -119011357,12020,12293,24313 -119011358,7597,8035,15632 -119011359,11880,12336,24216 -119011360,7156,7716,14872 -119011361,9395,9557,18952 -119021362,9210,9409,18619 -119021363,13477,13341,26818 -119021364,11004,11517,22521 -119021365,13206,12002,25208 -119021366,9763,9435,19198 -119021367,6405,6657,13062 -119031368,9775,10377,20152 -119031369,10791,11480,22271 -119031370,6081,6681,12762 -119031371,5825,6120,11945 -119031372,8473,8944,17417 -119031373,4614,4841,9455 -119031374,10995,11609,22604 -119041375,7381,7291,14672 -119041376,12441,12677,25118 -119041377,5914,6096,12010 -119041378,4728,4878,9606 -119041379,7288,7549,14837 -119041380,6337,6788,13125 -119041381,9382,8943,18325 -119041382,6990,7813,14803 -120011383,9525,10058,19583 -120011384,8947,9071,18018 -120011385,8354,9103,17457 -120011386,9114,9986,19100 -120021387,7036,7716,14752 -120021388,11545,12890,24435 -120021389,6148,6871,13019 -120031390,11134,11640,22774 -120031391,10195,10819,21014 -120031392,4594,4785,9379 -120031393,7810,8575,16385 -120031394,7619,8287,15906 -120031395,6400,6834,13234 -120031396,6497,6022,12519 -120031397,13041,12962,26003 -121011398,11568,12773,24341 -121011399,8774,9349,18123 -121011400,11668,12480,24148 -121011401,4557,4707,9264 -121011402,11817,12507,24324 -121021403,8813,8921,17734 -121021404,5733,5661,11394 -121021405,14269,15104,29373 -121021406,8732,9295,18027 -121031407,8839,9915,18754 -121031408,10209,10964,21173 -121031409,7400,8336,15736 -121031410,9014,9631,18645 -121031411,8579,9449,18028 -121031412,8349,8898,17247 -121041413,8479,9577,18056 -121041414,7933,8687,16620 -121041415,12820,14632,27452 -121041416,7861,8849,16710 -121041417,4699,4816,9515 -122011418,9270,9912,19182 -122011419,10138,10428,20566 -122021420,5978,6219,12197 -122021421,4984,5222,10206 -122021422,6384,6515,12899 -122021423,10559,11288,21847 -122031424,6303,6740,13043 -122031425,3487,3722,7209 -122031426,11252,11506,22758 -122031427,5968,6320,12288 -122031428,11859,12224,24083 -122031429,9641,9595,19236 -122031430,7708,8193,15901 -122031431,11110,11580,22690 -122031432,1782,1752,3534 -123011433,5792,6343,12135 -123011434,7853,8222,16075 -123011435,11831,12194,24025 -123021436,9161,9990,19151 -123021437,7707,8049,15756 -123021438,10293,10720,21013 -123021439,0,0,0 -123021440,8267,8319,16586 -123021441,7898,8086,15984 -123021442,10097,10835,20932 -123021443,8640,8940,17580 -123021444,9920,10239,20159 -123031445,2701,2707,5408 -123031446,3597,3467,7064 -123031447,7581,7788,15369 -123031448,4305,4259,8564 -124011449,2648,2813,5461 -124011450,9125,9373,18498 -124011451,15,13,28 -124011452,6181,6740,12921 -124011453,5333,5748,11081 -124011454,10465,11308,21773 -124011455,2808,3126,5934 -124021456,3,6,9 -124031457,7549,7586,15135 -124031458,8635,8735,17370 -124031459,6741,7138,13879 -124031460,10194,10695,20889 -124031461,8147,8740,16887 -124031462,8368,8747,17115 -124031463,3319,3201,6520 -124031464,5653,6161,11814 -124031465,2576,2483,5059 -124041466,6504,6936,13440 -124041467,7551,7910,15461 -124041468,3653,3193,6846 -124051469,3354,3314,6668 -124051470,9873,9964,19837 -124051471,12644,12916,25560 -125011472,17260,15862,33122 -125011473,6187,5121,11308 -125011474,15122,14865,29987 -125011475,3,5,8 -125021476,12062,12558,24620 -125021477,9566,9651,19217 -125021478,7751,8010,15761 -125031479,8354,8290,16644 -125031480,7154,7249,14403 -125031481,9319,8926,18245 -125031482,11417,12049,23466 -125031483,9210,9121,18331 -125031484,9346,9674,19020 -125031485,12820,12965,25785 -125031486,5,0,5 -125031487,4,4,8 -125041488,12871,12943,25814 -125041489,10343,9931,20274 -125041490,3761,3865,7626 -125041491,8493,8795,17288 -125041492,12057,10644,22701 -125041493,10105,10604,20709 -125041494,5086,5280,10366 -126011495,11503,12080,23583 -126011496,9339,10080,19419 -126021497,11256,11747,23003 -126021498,6426,6998,13424 -126021499,4889,4916,9805 -126021500,8726,9766,18492 -126021501,5847,6130,11977 -126021502,12780,13360,26140 -126021503,8441,8559,17000 -127011504,8155,8492,16647 -127011505,5022,4854,9876 -127011506,3318,3093,6411 -127011507,14183,14584,28767 -127011508,9235,9405,18640 -127021509,7441,7748,15189 -127021510,9146,9079,18225 -127021511,11425,11941,23366 -127021512,7771,8044,15815 -127021513,9607,9983,19590 -127021514,4687,4754,9441 -127021515,8238,8612,16850 -127021516,8473,8934,17407 -127021517,3805,3956,7761 -127021518,2205,2118,4323 -127021519,8498,8513,17011 -127021520,5226,5406,10632 -127021521,14,9,23 -127031522,7168,7529,14697 -127031523,7709,7941,15650 -127031524,9908,9639,19547 -127031525,14188,14398,28586 -127031526,12714,12993,25707 -128011527,12379,13239,25618 -128011528,14441,14747,29188 -128011529,8181,8665,16846 -128011530,8524,9078,17602 -128011531,7199,7914,15113 -128021532,13808,13926,27734 -128021533,3141,3317,6458 -128021534,5327,5313,10640 -128021535,10420,10635,21055 -128021536,10147,10485,20632 -128021537,9,7,16 -128021538,9275,10095,19370 -197979799,57,55,112 -199999499,7592,5326,12918 -201011001,4101,4244,8345 -201011002,5687,6389,12076 -201011003,10475,11552,22027 -201011004,10879,11906,22785 -201011005,3318,3282,6600 -201011006,2752,2997,5749 -201011007,1955,1825,3780 -201011008,6804,7407,14211 -201021009,2801,2746,5547 -201021010,3669,3754,7423 -201021011,4042,4351,8393 -201021012,2785,2628,5413 -201031013,1691,1612,3303 -201031014,1967,1866,3833 -201031015,2095,1964,4059 -201031016,3686,3945,7631 -201031017,2620,2444,5064 -202011018,6952,7555,14507 -202011019,4872,5255,10127 -202011020,6492,7189,13681 -202011021,4287,4902,9189 -202011022,8756,9653,18409 -202011023,2238,2163,4401 -202011024,3536,3495,7031 -202011025,4300,4436,8736 -202021026,3112,3093,6205 -202021027,4760,4973,9733 -202021028,4115,4063,8178 -202021029,2086,1987,4073 -202021030,4332,4500,8832 -202021031,3068,3340,6408 -202031032,2096,2067,4163 -202031033,3592,3434,7026 -203011034,2353,2360,4713 -203011035,3145,3071,6216 -203011036,2869,2818,5687 -203021037,6552,7064,13616 -203021038,12550,13294,25844 -203021039,5792,6274,12066 -203021040,9091,9783,18874 -203021041,9439,10263,19702 -203021042,9408,9913,19321 -203021043,7976,7546,15522 -203021044,4976,5135,10111 -203021045,7072,7640,14712 -203021046,4719,4963,9682 -203021047,6837,7160,13997 -203031048,5615,6082,11697 -203031049,2418,2501,4919 -203031050,8878,9479,18357 -203031051,3163,3334,6497 -203031052,1928,2144,4072 -203031053,7422,7620,15042 -204011054,3036,3061,6097 -204011055,2979,2971,5950 -204011056,5913,6035,11948 -204011057,4093,4060,8153 -204011058,1778,1780,3558 -204011059,3095,3274,6369 -204011060,2265,1958,4223 -204011061,117,102,219 -204011062,1746,1649,3395 -204021063,4951,5380,10331 -204021064,1718,1660,3378 -204021065,1843,1869,3712 -204021066,8336,9351,17687 -204021067,4649,4478,9127 -204031068,2064,2154,4218 -204031069,3837,3897,7734 -204031070,1460,1430,2890 -204031071,2262,2248,4510 -204031072,2959,2903,5862 -204031073,7059,7524,14583 -204031074,10445,10493,20938 -204031075,2183,2229,4412 -205011076,6513,6706,13219 -205011077,3025,2940,5965 -205011078,3512,3561,7073 -205011079,8006,8716,16722 -205021080,0,0,0 -205021081,6290,6953,13243 -205021082,3752,3538,7290 -205021083,0,0,0 -205021084,4679,4784,9463 -205021085,3378,3323,6701 -205021086,2751,2853,5604 -205031087,4099,4091,8190 -205031088,58,58,116 -205031089,4343,4401,8744 -205031090,5115,5408,10523 -205031091,4591,4815,9406 -205031092,8,6,14 -205031093,9814,10218,20032 -205041094,5649,5737,11386 -205041095,8069,8605,16674 -205041096,6898,7106,14004 -205041097,12410,13289,25699 -205041098,2250,2198,4448 -205051099,18,11,29 -205051100,1996,1839,3835 -205051101,6602,6804,13406 -205051102,2670,1883,4553 -205051103,6773,7486,14259 -205051104,2671,2585,5256 -206011105,11127,11637,22764 -206011106,3958,4518,8476 -206011107,6457,6692,13149 -206011108,12193,12784,24977 -206011109,4720,4813,9533 -206021110,4002,4203,8205 -206021111,10880,12040,22920 -206021112,8432,9003,17435 -206031113,6600,6875,13475 -206031114,11922,12839,24761 -206031115,4350,4810,9160 -206031116,6520,7011,13531 -206041117,6770,7334,14104 -206041118,3041,2750,5791 -206041119,2336,2567,4903 -206041120,40,38,78 -206041121,4733,4986,9719 -206041122,10154,9876,20030 -206041123,8041,7457,15498 -206041124,2930,3262,6192 -206041125,2866,3131,5997 -206041126,5865,5446,11311 -206041127,0,0,0 -206051128,6931,7201,14132 -206051129,7033,7605,14638 -206051130,7028,7485,14513 -206051131,5,0,5 -206051132,4794,5035,9829 -206051133,11618,10932,22550 -206051134,7916,7793,15709 -206061135,4114,4646,8760 -206061136,8644,8843,17487 -206061137,7144,7520,14664 -206061138,6056,6815,12871 -206071139,2480,2426,4906 -206071140,3909,4387,8296 -206071141,3252,3215,6467 -206071142,4652,4778,9430 -206071143,5419,6054,11473 -206071144,12788,13333,26121 -206071145,3994,4139,8133 -207011146,3743,3843,7586 -207011147,7270,8316,15586 -207011148,9762,10180,19942 -207011149,9388,10641,20029 -207011150,7701,8252,15953 -207011151,10198,10506,20704 -207011152,6583,6989,13572 -207011153,11280,12307,23587 -207011154,3047,3258,6305 -207011155,7524,8386,15910 -207021156,5324,5544,10868 -207021157,8831,9529,18360 -207021158,13017,14030,27047 -207021159,7975,8509,16484 -207021160,6345,6807,13152 -207031161,9621,10201,19822 -207031162,5017,5567,10584 -207031163,8448,8922,17370 -207031164,7877,8550,16427 -207031165,4926,5870,10796 -207031166,5009,5132,10141 -207031167,4637,5135,9772 -208011168,6243,6591,12834 -208011169,9973,11284,21257 -208011170,7345,8067,15412 -208011171,4869,5321,10190 -208011172,8139,8737,16876 -208011173,7279,7968,15247 -208021174,10053,10830,20883 -208021175,12717,13207,25924 -208021176,7958,8341,16299 -208021177,9584,10186,19770 -208021178,7958,8477,16435 -208021179,5065,5676,10741 -208021180,3432,3623,7055 -208021181,4243,4349,8592 -208021182,6186,6184,12370 -208031183,4370,4387,8757 -208031184,9,5,14 -208031185,5483,5704,11187 -208031186,6086,6869,12955 -208031187,2600,2585,5185 -208031188,9788,10577,20365 -208031189,5898,6179,12077 -208031190,5551,6116,11667 -208031191,4029,4023,8052 -208031192,0,0,0 -208031193,9013,9709,18722 -208041194,9124,10177,19301 -208041195,9699,10367,20066 -209011196,4716,4800,9516 -209011197,9806,10420,20226 -209011198,6519,7095,13614 -209011199,6590,6855,13445 -209011200,5301,5784,11085 -209011201,3809,3882,7691 -209011202,7438,8190,15628 -209011203,8901,9209,18110 -209011204,4358,4626,8984 -209021205,4940,5416,10356 -209021206,14830,15095,29925 -209021207,11969,12723,24692 -209021208,11402,11538,22940 -209031209,11159,11645,22804 -209031210,1770,1741,3511 -209031211,1837,1740,3577 -209031212,2554,2468,5022 -209031213,4484,4469,8953 -209031214,3303,3303,6606 -209031215,6624,6826,13450 -209041216,2678,2760,5438 -209041217,3065,3057,6122 -209041218,13311,13544,26855 -209041219,9909,9964,19873 -209041220,8981,9255,18236 -209041221,6068,6216,12284 -209041222,18852,19469,38321 -209041223,10193,10138,20331 -209041224,6043,5986,12029 -209041225,3733,3681,7414 -210011226,3390,3569,6959 -210011227,0,0,0 -210011228,4102,4211,8313 -210011229,11825,12420,24245 -210011230,2972,3295,6267 -210011231,4479,4560,9039 -210021232,5405,5673,11078 -210021233,1644,1539,3183 -210021234,1831,1922,3753 -210021235,4342,4280,8622 -210031236,3233,3342,6575 -210031237,6226,6371,12597 -210031238,13815,13961,27776 -210031239,10057,10603,20660 -210041240,6239,6399,12638 -210041241,11844,12371,24215 -210051242,5895,5800,11695 -210051243,8049,7980,16029 -210051244,17130,17189,34319 -210051245,8418,8691,17109 -210051246,6134,5967,12101 -210051247,7304,7538,14842 -210051248,69,73,142 -210051249,9836,10215,20051 -210051250,3073,3194,6267 -211011251,5600,5640,11240 -211011252,12224,12828,25052 -211011253,13891,14184,28075 -211011254,6455,6577,13032 -211011255,3245,3306,6551 -211011256,7500,7735,15235 -211011257,3993,4086,8079 -211011258,5402,5426,10828 -211011259,6723,7044,13767 -211011260,8394,9084,17478 -211021261,7602,7897,15499 -211021262,5010,4995,10005 -211031263,5659,5817,11476 -211031264,13995,15602,29597 -211031265,8913,9102,18015 -211031266,7693,8316,16009 -211031267,9296,9707,19003 -211031268,4632,4686,9318 -211041269,4733,5318,10051 -211041270,7220,7591,14811 -211041271,5300,5647,10947 -211041272,4810,5092,9902 -211041273,5553,5863,11416 -211051274,5033,5030,10063 -211051275,4500,4625,9125 -211051276,6277,6567,12844 -211051277,4098,4432,8530 -211051278,8804,9185,17989 -211051279,2740,2802,5542 -211051280,3269,3464,6733 -211051281,10270,10419,20689 -211051282,4892,4766,9658 -211051283,4686,4688,9374 -211051284,4906,4874,9780 -211051285,3724,3685,7409 -211051286,7876,8108,15984 -212011287,4073,4024,8097 -212011288,4102,4101,8203 -212011289,8826,8683,17509 -212011290,3288,3240,6528 -212011291,6123,6525,12648 -212011292,10372,10976,21348 -212021293,10533,11717,22250 -212021294,11443,11544,22987 -212021295,5170,5085,10255 -212021296,12808,12696,25504 -212021297,5005,5157,10162 -212021298,12932,12950,25882 -212021299,3538,3448,6986 -212031300,9351,9271,18622 -212031301,3923,4288,8211 -212031302,7228,7342,14570 -212031303,3375,3341,6716 -212031304,4340,4403,8743 -212031305,11893,11874,23767 -212031306,5813,5853,11666 -212031307,14300,14294,28594 -212031308,3803,3674,7477 -212041309,5774,5888,11662 -212041310,6042,5583,11625 -212041311,13479,12444,25923 -212041312,10874,11036,21910 -212041313,5002,5168,10170 -212041314,9950,10094,20044 -212041315,14298,14079,28377 -212041316,3708,3682,7390 -212041317,10143,9628,19771 -212041318,6066,6118,12184 -212051319,8084,8168,16252 -212051320,9176,8533,17709 -212051321,10054,10668,20722 -212051322,9092,9394,18486 -212051323,7257,7659,14916 -212051324,8327,8835,17162 -212051325,8717,8930,17647 -212051326,10056,10177,20233 -212051327,9418,9687,19105 -213011328,3738,3424,7162 -213011329,4434,4405,8839 -213011330,11202,10991,22193 -213011331,4128,4315,8443 -213011332,6668,6801,13469 -213011333,6744,6785,13529 -213011334,9484,9400,18884 -213011335,7967,8242,16209 -213011336,4520,4318,8838 -213011337,5261,5375,10636 -213011338,8326,8421,16747 -213011339,5756,5773,11529 -213011340,9002,8934,17936 -213021341,5832,5947,11779 -213021342,9198,9548,18746 -213021343,6492,6518,13010 -213021344,7993,8164,16157 -213021345,2497,2475,4972 -213021346,7269,7478,14747 -213031347,8067,7865,15932 -213031348,7000,6203,13203 -213031349,5051,5114,10165 -213031350,4258,4100,8358 -213031351,5326,4904,10230 -213031352,6690,7057,13747 -213041353,8412,8743,17155 -213041354,12786,13282,26068 -213041355,7776,7767,15543 -213041356,8724,8977,17701 -213041357,7787,8016,15803 -213041358,6981,7190,14171 -213041359,1582,1078,2660 -213041360,7658,7807,15465 -213051361,9364,9614,18978 -213051362,9281,9339,18620 -213051363,2856,2495,5351 -213051364,16318,16095,32413 -213051365,10954,11021,21975 -213051366,6000,5168,11168 -213051367,14528,15214,29742 -213051368,5153,5323,10476 -213051369,8461,8844,17305 -214011370,9391,9731,19122 -214011371,10453,11130,21583 -214011372,9274,9787,19061 -214011373,8492,9120,17612 -214011374,11004,11494,22498 -214011375,7996,8037,16033 -214011376,5246,5304,10550 -214021377,4406,4608,9014 -214021378,2677,2654,5331 -214021379,10206,10093,20299 -214021380,10434,11987,22421 -214021381,8351,8896,17247 -214021382,8225,8862,17087 -214021383,8025,8102,16127 -214021384,9157,10465,19622 -214021385,8557,8895,17452 -215011386,4133,3943,8076 -215011387,1470,1437,2907 -215011388,7667,8227,15894 -215011389,1756,1654,3410 -215011390,3589,3606,7195 -215011391,1815,1770,3585 -215011392,4098,4172,8270 -215011393,1450,1433,2883 -215011394,3502,3526,7028 -215021395,3294,3183,6477 -215021396,2319,2322,4641 -215021397,14604,16043,30647 -215021398,2027,1779,3806 -215021399,2733,2672,5405 -215031400,3229,3158,6387 -215031401,3281,3214,6495 -215031402,1864,2009,3873 -215031403,1785,1686,3471 -215031404,5075,5355,10430 -215031405,3450,3100,6550 -216011406,6833,7358,14191 -216011407,5335,5401,10736 -216011408,1889,1837,3726 -216011409,1875,1923,3798 -216011410,2165,1933,4098 -216021411,3090,3155,6245 -216021412,1312,1247,2559 -216021413,6176,6086,12262 -216021414,3403,3654,7057 -216031415,3787,4026,7813 -216031416,8361,8871,17232 -216031417,10582,10875,21457 -216031418,2019,1907,3926 -216031419,5017,4775,9792 -217011420,4455,4376,8831 -217011421,4856,5248,10104 -217011422,5322,5393,10715 -217011423,3208,3139,6347 -217021424,1670,1793,3463 -217021425,5724,6054,11778 -217021426,2778,2540,5318 -217021427,2726,2671,5397 -217021428,3812,3662,7474 -217021429,3398,3309,6707 -217021430,4324,4566,8890 -217021431,1651,1617,3268 -217021432,9463,10079,19542 -217021433,6207,6631,12838 -297979799,36,0,36 -299999499,4672,3636,8308 -301011001,8255,8455,16710 -301011002,3657,3784,7441 -301011003,7071,7273,14344 -301011004,8372,8545,16917 -301011005,1769,1779,3548 -301011006,5374,5613,10987 -301021007,6847,7567,14414 -301021008,2684,2957,5641 -301021009,6773,6852,13625 -301021010,4354,4305,8659 -301021011,3218,3277,6495 -301021012,6280,6527,12807 -301021013,7063,7754,14817 -301031014,3,3,6 -301031015,3494,3639,7133 -301031016,5171,5544,10715 -301031017,1973,1984,3957 -301031018,4225,4314,8539 -301031019,3830,3974,7804 -301031020,6123,6403,12526 -301031021,6991,7344,14335 -302011022,3401,3545,6946 -302011023,3718,3920,7638 -302011024,3641,4128,7769 -302011025,4064,4261,8325 -302011026,3464,3625,7089 -302021027,5947,6500,12447 -302021028,3821,4349,8170 -302021029,2972,3149,6121 -302021030,2086,2213,4299 -302021031,6159,6451,12610 -302021032,2901,3140,6041 -302021033,3266,3514,6780 -302021034,4560,4875,9435 -302031035,4520,4227,8747 -302031036,54,36,90 -302031037,150,112,262 -302031038,3196,3167,6363 -302031039,4305,4417,8722 -302031040,5134,5252,10386 -302041041,8192,8607,16799 -302041042,4410,4602,9012 -302041043,1666,1793,3459 -302041044,3217,3322,6539 -302041045,4122,4783,8905 -302041046,3954,4151,8105 -303011047,5157,5377,10534 -303011048,2264,2243,4507 -303011049,4876,5426,10302 -303011050,2901,3209,6110 -303011051,7533,8028,15561 -303021052,5307,5357,10664 -303021053,7357,7587,14944 -303021054,2034,1992,4026 -303021055,4215,4350,8565 -303021056,3770,4079,7849 -303021057,2970,2995,5965 -303021058,2549,2240,4789 -303021059,4115,4271,8386 -303031060,6975,7105,14080 -303031061,2700,2876,5576 -303031062,4087,4406,8493 -303031063,6933,7194,14127 -303031064,2029,2048,4077 -303031065,4325,4526,8851 -303031066,4978,5483,10461 -303041067,2310,2236,4546 -303041068,4978,5007,9985 -303041069,2401,2466,4867 -303041070,3629,3524,7153 -303041071,4848,5116,9964 -303051072,4022,4240,8262 -303051073,9039,9430,18469 -303051074,1886,1903,3789 -303051075,7135,7272,14407 -303051076,4433,4274,8707 -303061077,3779,3998,7777 -303061078,6672,6697,13369 -303061079,4018,4072,8090 -303061080,8342,8488,16830 -304011081,3523,3745,7268 -304011082,3513,3572,7085 -304011083,1887,1932,3819 -304011084,4522,4989,9511 -304011085,2210,2171,4381 -304021086,4429,4591,9020 -304021087,3353,3579,6932 -304021088,4950,5218,10168 -304021089,1802,1850,3652 -304021090,4132,4351,8483 -304021091,2651,2714,5365 -304031092,3199,3362,6561 -304031093,2241,2455,4696 -304031094,5730,5940,11670 -304031095,2495,2751,5246 -304031096,5517,5678,11195 -304031097,3951,3981,7932 -304041098,4046,3639,7685 -304041099,14,10,24 -304041100,3270,3741,7011 -304041101,3670,3989,7659 -304041102,0,0,0 -304041103,7821,8128,15949 -304041104,4487,4555,9042 -305011105,4625,4080,8705 -305011106,2974,2243,5217 -305011107,2990,2834,5824 -305011108,3619,3381,7000 -305011109,5902,5825,11727 -305011110,2773,2643,5416 -305011111,3153,2475,5628 -305011112,4029,4032,8061 -305021113,1845,1982,3827 -305021114,2958,2983,5941 -305021115,3075,2523,5598 -305021116,2362,2413,4775 -305021117,5634,5796,11430 -305021118,2959,3044,6003 -305031119,1207,1344,2551 -305031120,2775,2904,5679 -305031121,2572,2593,5165 -305031122,4742,5265,10007 -305031123,2011,2152,4163 -305031124,2341,2380,4721 -305031125,2175,2242,4417 -305031126,3798,4050,7848 -305031127,2142,2302,4444 -305031128,3808,3474,7282 -305031129,1931,1941,3872 -305031130,3251,3138,6389 -305031131,4329,4409,8738 -305041132,6443,6473,12916 -305041133,2622,2729,5351 -305041134,4369,4887,9256 -305041135,4812,5163,9975 -305041136,2759,2788,5547 -305041137,5212,5287,10499 -306011138,2557,2677,5234 -306011139,4864,5097,9961 -306011140,1757,1864,3621 -306011141,5573,5937,11510 -306011142,5393,5507,10900 -306011143,3016,2977,5993 -306021144,3601,3818,7419 -306021145,5210,4643,9853 -306021146,3953,4043,7996 -306021147,4863,5071,9934 -306021148,4057,3985,8042 -306021149,4459,4715,9174 -306021150,0,0,0 -306021151,2717,2971,5688 -306021152,2507,2456,4963 -306021153,3926,4068,7994 -306021154,3252,3045,6297 -306021155,2183,2308,4491 -306021156,3976,4072,8048 -306021157,2395,2431,4826 -306031158,2111,2002,4113 -306031159,4630,4592,9222 -306031160,3908,3618,7526 -306031161,5384,4812,10196 -306031162,3,3,6 -306031163,1202,1207,2409 -306041164,3080,2929,6009 -306041165,2451,2321,4772 -306051166,4820,5348,10168 -306051167,2830,2655,5485 -306051168,2140,2197,4337 -306051169,4036,4025,8061 -306051170,5043,5139,10182 -307011171,2436,2283,4719 -307011172,3698,3388,7086 -307011173,3123,3274,6397 -307011174,2176,2017,4193 -307011175,1957,1843,3800 -307011176,3498,3408,6906 -307011177,3230,2937,6167 -307011178,2211,1928,4139 -307021179,4026,4045,8071 -307021180,3797,3542,7339 -307021181,1591,1525,3116 -307021182,2649,2642,5291 -307021183,8403,8138,16541 -307031184,2240,2293,4533 -307031185,2052,2041,4093 -307031186,2276,2117,4393 -307031187,2557,2828,5385 -307031188,2809,2681,5490 -307031189,6952,7655,14607 -308011190,4058,3493,7551 -308011191,4907,3986,8893 -308011192,6879,6339,13218 -308021193,2948,2585,5533 -308021194,4477,4091,8568 -308021195,2999,2886,5885 -308021196,4981,4675,9656 -308021197,40,11,51 -308021198,5647,5396,11043 -308021199,3374,2938,6312 -308021200,5479,4907,10386 -308021201,2116,2035,4151 -308021202,0,0,0 -308021203,2799,2752,5551 -308021204,2700,2501,5201 -308031205,3656,3590,7246 -308031206,971,910,1881 -308031207,2264,2280,4544 -308031208,4510,4733,9243 -308031209,2532,1958,4490 -308031210,4360,4510,8870 -308031211,2561,2500,5061 -308031212,1533,1482,3015 -308031213,4330,4502,8832 -308031214,2588,2778,5366 -308031215,3158,3331,6489 -308031216,3004,3156,6160 -308031217,1931,1706,3637 -308031218,1666,1463,3129 -308031219,2108,1916,4024 -308031220,1400,1289,2689 -308031221,4,4,8 -308031222,3921,4364,8285 -308031223,8248,8124,16372 -309011224,3724,3810,7534 -309011225,3850,4177,8027 -309011226,6621,7247,13868 -309011227,5183,5154,10337 -309011228,5702,6087,11789 -309011229,3088,3276,6364 -309021230,2604,2588,5192 -309021231,5141,5279,10420 -309021232,4279,4604,8883 -309021233,5603,6042,11645 -309021234,6846,7110,13956 -309031235,4621,4954,9575 -309031236,3032,3306,6338 -309031237,4484,5290,9774 -309031238,7885,8517,16402 -309031239,4286,4326,8612 -309031240,4259,4653,8912 -309041241,2030,1968,3998 -309041242,6442,6695,13137 -309051243,3409,3409,6818 -309051244,8519,8867,17386 -309051245,3231,3641,6872 -309061246,5641,5929,11570 -309061247,4147,4327,8474 -309061248,9081,9747,18828 -309061249,8101,8273,16374 -309061250,3669,3758,7427 -309071251,4397,4396,8793 -309071252,7776,8211,15987 -309071253,4266,4318,8584 -309071254,1714,1595,3309 -309071255,7974,7917,15891 -309071256,7087,7283,14370 -309071257,1588,1623,3211 -309071258,11764,12156,23920 -309081259,1888,2098,3986 -309081260,3011,3310,6321 -309081261,9729,10793,20522 -309081262,6867,7499,14366 -309091263,5499,6087,11586 -309091264,3084,3129,6213 -309091265,4231,4205,8436 -309091266,13744,14571,28315 -309101267,3821,4158,7979 -309101268,2069,2119,4188 -309101269,1791,1705,3496 -309101270,10259,9409,19668 -310011271,2269,2108,4377 -310011272,3164,3381,6545 -310011273,12278,13077,25355 -310011274,7514,7920,15434 -310011275,3383,3536,6919 -310011276,3344,1593,4937 -310021277,5473,5465,10938 -310021278,2382,2395,4777 -310021279,3,0,3 -310021280,8745,8795,17540 -310021281,6096,5928,12024 -310021282,6204,5469,11673 -310031283,4401,4844,9245 -310031284,3958,3896,7854 -310031285,2949,2969,5918 -310031286,3395,3283,6678 -310031287,8196,8650,16846 -310031288,2214,2085,4299 -310031289,2464,2327,4791 -310031290,2968,2984,5952 -310031291,3300,3413,6713 -310031292,3151,3175,6326 -310031293,6801,7414,14215 -310031294,1449,1396,2845 -310031295,1614,1629,3243 -310041296,4350,4114,8464 -310041297,4596,4438,9034 -310041298,3,0,3 -310041299,3845,3905,7750 -310041300,4605,4647,9252 -310041301,0,0,0 -310041302,7433,7543,14976 -310041303,3221,3397,6618 -310041304,5001,5252,10253 -311011305,6076,6304,12380 -311021306,4161,4084,8245 -311021307,5862,6109,11971 -311021308,3244,3330,6574 -311021309,2725,2940,5665 -311021310,2623,2677,5300 -311031311,5712,6006,11718 -311031312,3296,3367,6663 -311031313,1901,1866,3767 -311031314,5548,5662,11210 -311031315,0,0,0 -311031316,3889,3864,7753 -311031317,5732,5757,11489 -311031318,2374,2216,4590 -311031319,7699,7830,15529 -311041320,5970,5812,11782 -311041321,9962,9745,19707 -311041322,3000,2851,5851 -311051323,3999,4526,8525 -311051324,4045,3986,8031 -311051325,5317,5413,10730 -311051326,4537,4777,9314 -311051327,5609,5666,11275 -311051328,3415,3595,7010 -311061329,3144,3110,6254 -311061330,5100,5084,10184 -311061331,3166,3094,6260 -311061332,7357,7764,15121 -311061333,5142,5294,10436 -311061334,4448,4542,8990 -311061335,2669,2659,5328 -311061336,6326,6461,12787 -312011337,4640,4210,8850 -312011338,5621,4255,9876 -312011339,1950,1795,3745 -312011340,2207,1837,4044 -312011341,4975,3990,8965 -312021342,7248,7157,14405 -312021343,1873,1763,3636 -312021344,5186,4719,9905 -312021345,0,3,3 -312021346,2222,1849,4071 -312021347,284,243,527 -312021348,5401,5350,10751 -312021349,3388,3358,6746 -312021350,2208,1917,4125 -312021351,3725,3356,7081 -312021352,6105,5489,11594 -312021353,4468,3952,8420 -312021354,2754,2589,5343 -312021355,2000,1859,3859 -312021356,3742,3674,7416 -312021357,4404,4002,8406 -312021358,3228,3279,6507 -312031359,5597,4954,10551 -312031360,0,0,0 -312031361,4108,3876,7984 -313011362,6649,6837,13486 -313011363,8176,8869,17045 -313021364,1870,1805,3675 -313021365,10842,11456,22298 -313021366,8964,9643,18607 -313021367,1874,1848,3722 -313021368,3512,3654,7166 -313021369,1826,1757,3583 -313031370,2448,2392,4840 -313031371,3492,2960,6452 -313041372,6393,6570,12963 -313041373,10569,11192,21761 -313041374,2443,2374,4817 -313041375,8027,8195,16222 -313041376,1424,1399,2823 -313051377,3938,3972,7910 -313051378,5341,5754,11095 -313051379,4414,4787,9201 -313051380,7883,8732,16615 -313051381,5397,5773,11170 -314011382,7835,8025,15860 -314011383,7718,7707,15425 -314011384,3869,3801,7670 -314011385,3962,4031,7993 -314011386,11218,11415,22633 -314011387,5444,5487,10931 -314021388,10007,10419,20426 -314021389,5722,6034,11756 -314021390,9386,9995,19381 -314031391,4880,5122,10002 -314031392,2819,2906,5725 -314031393,4222,4277,8499 -314031394,5560,5565,11125 -315011395,641,653,1294 -315011396,3923,3131,7054 -315011397,680,528,1208 -315011398,847,847,1694 -315011399,1115,1183,2298 -315011400,3188,2305,5493 -315011401,1621,1634,3255 -315011402,2180,2068,4248 -315011403,1776,1558,3334 -315021404,2646,2389,5035 -315021405,10854,9716,20570 -315021406,2259,1600,3859 -315021407,2013,1655,3668 -315031408,2712,2706,5418 -315031409,2306,2313,4619 -315031410,1318,1128,2446 -315031411,1722,1520,3242 -315031412,2044,2145,4189 -316011413,7063,8217,15280 -316011414,6978,7378,14356 -316011415,3460,3555,7015 -316011416,4142,4945,9087 -316021417,4637,5038,9675 -316021418,2990,3156,6146 -316021419,2926,3158,6084 -316021420,7216,7910,15126 -316021421,4942,5284,10226 -316021422,3729,4052,7781 -316021423,4398,4703,9101 -316021424,2903,2993,5896 -316031425,6352,6802,13154 -316031426,5003,5181,10184 -316031427,7961,8740,16701 -316031428,5434,5620,11054 -316041429,3307,3389,6696 -316041430,1702,1663,3365 -316041431,4798,4617,9415 -316041432,8637,9497,18134 -316041433,10089,10166,20255 -316051434,1952,2047,3999 -316051435,3668,4063,7731 -316051436,3842,3932,7774 -316051437,3064,3280,6344 -316051438,4714,5331,10045 -316061439,3472,3727,7199 -316061440,3828,4151,7979 -316061441,2788,2755,5543 -316061442,4704,4783,9487 -316061443,2923,3008,5931 -316061444,5031,5125,10156 -317011445,2811,2890,5701 -317011446,5815,6455,12270 -317011447,4834,5268,10102 -317011448,3432,3748,7180 -317011449,2788,2785,5573 -317011450,5575,5671,11246 -317011451,5181,5058,10239 -317011452,3142,3419,6561 -317011453,4445,5120,9565 -317011454,2882,3014,5896 -317011455,3900,4317,8217 -317011456,6339,6960,13299 -317011457,4908,5146,10054 -317011458,5583,5815,11398 -317011459,6195,6722,12917 -318011460,4464,4689,9153 -318011461,4221,3917,8138 -318011462,4006,4228,8234 -318011463,2091,1843,3934 -318011464,2327,2440,4767 -318011465,3570,3229,6799 -318011466,1226,1111,2337 -318021467,2451,2458,4909 -318021468,4845,4623,9468 -318021469,1676,1779,3455 -318021470,2744,2764,5508 -318021471,5048,5298,10346 -318021472,2986,3160,6146 -318021473,7723,7493,15216 -318021474,3443,3746,7189 -318021475,3435,3290,6725 -318021476,4026,4079,8105 -318021477,2061,2154,4215 -318021478,2599,2525,5124 -318021479,2377,2481,4858 -318021480,5022,5223,10245 -318021481,4006,4135,8141 -318021482,7586,8266,15852 -318021483,1119,1080,2199 -318021484,3936,3945,7881 -318021485,1841,2037,3878 -318021486,3198,2878,6076 -318021487,2613,2646,5259 -318021488,2649,2446,5095 -318021489,2091,1871,3962 -318021490,4482,4124,8606 -318021491,3171,2903,6074 -319011492,2406,2572,4978 -319011493,7611,7775,15386 -319011494,1939,1949,3888 -319011495,3031,3147,6178 -319011496,2552,2664,5216 -319011497,3536,3751,7287 -319011498,4122,3892,8014 -319011499,4818,4567,9385 -319011500,3547,4102,7649 -319011501,2757,3001,5758 -319011502,5266,5732,10998 -319021503,3253,3176,6429 -319021504,2627,2437,5064 -319021505,4742,5066,9808 -319021506,4660,4669,9329 -319021507,1937,1778,3715 -319021508,1881,1834,3715 -319021509,4692,4719,9411 -319021510,3,3,6 -319031511,2943,2777,5720 -319031512,6273,6936,13209 -319031513,3071,3227,6298 -319031514,8613,8269,16882 -319031515,1792,1782,3574 -319041516,2068,2091,4159 -319041517,2241,2246,4487 -319041518,5950,6646,12596 -319041519,2681,3011,5692 -319041520,6834,7679,14513 -319041521,5549,5844,11393 -319051522,4378,4284,8662 -319051523,1552,1613,3165 -319051524,9077,9102,18179 -319051525,3938,3709,7647 -319051526,2426,2451,4877 -397979799,277,194,471 -399999499,7151,5394,12545 -401011001,6911,6051,12962 -401011002,3240,3439,6679 -401021003,3434,3401,6835 -401021004,8638,8681,17319 -401021005,2112,2168,4280 -401021006,4498,4512,9010 -401021007,7104,7811,14915 -401021008,2983,2941,5924 -401021009,2148,2269,4417 -401021010,2738,2611,5349 -401031011,8595,9365,17960 -401031012,4260,4689,8949 -401031013,7067,8220,15287 -401041014,4623,4635,9258 -401041015,9003,9790,18793 -401041016,9755,10696,20451 -401051017,4637,5132,9769 -401051018,5633,6422,12055 -401051019,6446,6612,13058 -401061020,2882,3081,5963 -401061021,7010,6976,13986 -401061022,3403,3597,7000 -401071023,8221,8980,17201 -401071024,9115,10525,19640 -402011025,4366,4407,8773 -402011026,8456,9169,17625 -402011027,2656,2589,5245 -402021028,8035,8158,16193 -402021029,7685,7873,15558 -402021030,4821,5057,9878 -402021031,6074,6091,12165 -402021032,3907,3874,7781 -402021033,1240,1163,2403 -402021034,5970,6196,12166 -402021035,1897,1836,3733 -402031036,10917,10643,21560 -402031037,10495,10298,20793 -402031038,9142,9443,18585 -402041039,3,0,3 -402041040,7219,7466,14685 -402041041,7217,7239,14456 -402041042,73,3,76 -402041043,7498,7819,15317 -402041044,8101,7952,16053 -402041045,9218,9076,18294 -402041046,7946,8056,16002 -402041047,8431,8717,17148 -402041048,7806,7825,15631 -402051049,4524,4905,9429 -402051050,4413,4662,9075 -402051051,5213,5149,10362 -402051052,7508,8230,15738 -402051053,9295,9657,18952 -402051054,7942,7879,15821 -402051055,5976,6180,12156 -403011056,6255,7146,13401 -403011057,9469,10199,19668 -403021058,6040,6528,12568 -403021059,6113,6144,12257 -403021060,4461,4594,9055 -403021061,6775,7457,14232 -403021062,6375,7137,13512 -403021063,4719,4842,9561 -403021064,6166,6974,13140 -403031065,2234,2313,4547 -403031066,3439,3818,7257 -403031067,5511,5716,11227 -403031068,7247,7824,15071 -403031069,7535,8173,15708 -403031070,3833,4014,7847 -403041071,5791,6082,11873 -403041072,6958,7195,14153 -403041073,4183,4443,8626 -403041074,4896,4940,9836 -403041075,1295,1332,2627 -403041076,2112,2170,4282 -403041077,5223,5208,10431 -403041078,3141,3278,6419 -403041079,3694,3816,7510 -403041080,6711,6922,13633 -403041081,0,0,0 -403041082,16,11,27 -403041083,2829,2898,5727 -403041084,6572,6878,13450 -403041085,4512,4638,9150 -403041086,4817,4964,9781 -403041087,9256,9673,18929 -403041088,1629,1657,3286 -403041089,5404,5668,11072 -404011090,3584,3635,7219 -404011091,6653,7008,13661 -404011092,6946,6991,13937 -404011093,8294,8338,16632 -404011094,2739,2970,5709 -404011095,7472,8233,15705 -404011096,6754,7288,14042 -404011097,7576,7741,15317 -404021098,0,0,0 -404021099,7142,7363,14505 -404021100,6840,7218,14058 -404021101,5430,5345,10775 -404021102,8590,8665,17255 -404021103,7,3,10 -404031104,0,0,0 -404031105,1272,1318,2590 -404031106,5953,6259,12212 -404031107,11025,11736,22761 -404031108,7814,7968,15782 -404031109,2204,2276,4480 -405011110,2923,3005,5928 -405011111,4154,3960,8114 -405011112,2891,2785,5676 -405011113,1597,1507,3104 -405011114,2905,3063,5968 -405011115,2155,2260,4415 -405021116,1920,2006,3926 -405021117,2379,2365,4744 -405021118,2105,2080,4185 -405021119,4703,4492,9195 -405031120,2337,2223,4560 -405031121,2745,2684,5429 -405031122,6867,7176,14043 -405031123,1625,1614,3239 -405041124,2511,2559,5070 -405041125,2037,2201,4238 -405041126,1831,1843,3674 -405041127,3548,3501,7049 -405041128,2083,1892,3975 -406011129,1322,1320,2642 -406011130,3270,3106,6376 -406011131,2205,2045,4250 -406011132,1165,1090,2255 -406011133,7512,7709,15221 -406011134,1852,1702,3554 -406011135,66,42,108 -406011136,11116,10875,21991 -406011137,0,0,0 -406021138,1197,1243,2440 -406021139,953,742,1695 -406021140,1168,1104,2272 -406021141,2109,1329,3438 -406021142,6936,6722,13658 -406021143,2779,1938,4717 -407011144,5015,5423,10438 -407011145,2259,2158,4417 -407011146,3079,3375,6454 -407011147,3374,3263,6637 -407011148,6333,7078,13411 -407011149,2478,2512,4990 -407021150,2899,2497,5396 -407021151,1891,1788,3679 -407021152,2577,2702,5279 -407021153,13482,14273,27755 -407021154,2895,2796,5691 -407021155,1273,1151,2424 -407021156,1583,1495,3078 -407021157,3371,3185,6556 -407021158,1680,1543,3223 -407031159,3305,3219,6524 -407031160,1983,2120,4103 -407031161,1569,1483,3052 -407031162,2573,2660,5233 -407031163,905,830,1735 -407031164,3019,2812,5831 -407031165,8328,8380,16708 -407031166,1805,1591,3396 -407031167,2076,2311,4387 -407031168,2524,2332,4856 -407031169,2852,2685,5537 -407031170,3334,2995,6329 -497979799,5,0,5 -499999499,1779,1288,3067 -501011001,2239,2197,4436 -501011002,10485,11413,21898 -501011003,4260,4123,8383 -501011004,3659,3663,7322 -501021005,7381,7462,14843 -501021006,8457,8654,17111 -501021007,2331,2357,4688 -501021008,3331,3190,6521 -501021009,4906,4222,9128 -501021010,1529,1454,2983 -501021011,6,4,10 -501021012,5061,5177,10238 -501021013,4952,5045,9997 -501021014,4277,4115,8392 -501021015,3405,3489,6894 -501021016,1774,1809,3583 -501031017,2907,2998,5905 -501031018,2678,2642,5320 -501031019,2700,2715,5415 -501031020,2619,2411,5030 -502011021,2779,2771,5550 -502011022,3710,3725,7435 -502011023,4819,5121,9940 -502011024,8346,8799,17145 -502011025,4154,4417,8571 -502011026,2517,2396,4913 -502011027,6132,6354,12486 -502011028,4411,4863,9274 -502011029,4002,3976,7978 -503011030,3122,3232,6354 -503011031,3613,3980,7593 -503011032,3610,3789,7399 -503011033,3578,3651,7229 -503011034,4630,5496,10126 -503011035,8556,8995,17551 -503011036,3877,4008,7885 -503021037,21,12,33 -503021038,5105,5193,10298 -503021039,7868,8339,16207 -503021040,4219,4325,8544 -503021041,14069,11435,25504 -503021042,7298,7758,15056 -503021043,8166,8400,16566 -504011044,7174,7230,14404 -504011045,10463,10746,21209 -504011046,6489,5865,12354 -504011047,10153,10149,20302 -504011048,3957,4122,8079 -504021049,2676,1349,4025 -504021050,3480,3562,7042 -504021051,2308,2353,4661 -504021052,4,13,17 -504021053,6311,6343,12654 -504021054,5950,6067,12017 -504031055,0,0,0 -504031056,9442,9640,19082 -504031057,7627,7580,15207 -504031058,2119,2207,4326 -504031059,11427,11972,23399 -504031060,1278,1254,2532 -504031061,1840,1794,3634 -504031062,4083,3974,8057 -504031063,13,0,13 -504031064,4,0,4 -504031065,2615,2571,5186 -504031066,4845,4742,9587 -504031067,3340,3382,6722 -504031068,2717,2685,5402 -504031069,0,0,0 -505011070,4843,4749,9592 -505011071,6928,7019,13947 -505011072,7448,7578,15026 -505011073,6649,6778,13427 -505011074,5178,5241,10419 -505011075,5322,5358,10680 -505011076,3064,3101,6165 -505011077,6712,7015,13727 -505011078,6402,6816,13218 -505011079,5447,5559,11006 -505011080,4058,4050,8108 -505011081,4177,4189,8366 -505011082,4663,4876,9539 -505011083,4492,4710,9202 -505021084,7373,7600,14973 -505021085,9044,9000,18044 -505021086,11150,11962,23112 -505021087,3,0,3 -505021088,7310,7908,15218 -505021089,9134,9793,18927 -505021090,7477,7583,15060 -505021091,5,3,8 -505021092,7288,6983,14271 -505021093,6618,6586,13204 -505021094,3393,3533,6926 -505021095,5378,5891,11269 -505021096,6277,6322,12599 -505021097,7189,7635,14824 -505031098,5832,5759,11591 -505031099,9329,9898,19227 -505031100,5526,5806,11332 -505031101,5835,5852,11687 -505031102,4216,4118,8334 -505031103,9423,9553,18976 -505031104,5103,5416,10519 -505031105,8643,8865,17508 -505031106,0,0,0 -505031107,6244,6292,12536 -505031108,11332,11621,22953 -505031109,3744,3699,7443 -506011110,7965,8276,16241 -506011111,0,0,0 -506011112,2659,2595,5254 -506011113,3762,3697,7459 -506011114,5002,5017,10019 -506011115,3676,3654,7330 -506011116,3384,3389,6773 -506011117,4595,4622,9217 -506021118,6745,6543,13288 -506021119,7626,7364,14990 -506021120,3,0,3 -506021121,51,3,54 -506021122,11087,10775,21862 -506021123,7087,6522,13609 -506031124,9648,9910,19558 -506031125,4997,5161,10158 -506031126,0,0,0 -506031127,7748,7200,14948 -506031128,6740,6798,13538 -506031129,6357,6801,13158 -506031130,11,5,16 -506031131,8644,8747,17391 -506041132,9060,8553,17613 -506041133,10573,9936,20509 -506041134,9512,9657,19169 -506041135,7215,7315,14530 -506041136,5985,5813,11798 -506041137,11408,11557,22965 -506051138,7872,8062,15934 -506051139,5911,5870,11781 -506051140,7146,7378,14524 -506051141,5602,5720,11322 -506061142,4047,4109,8156 -506061143,2868,2818,5686 -506061144,2133,1827,3960 -506071145,6253,7146,13399 -506071146,5475,5498,10973 -506071147,8217,8219,16436 -507011148,7057,7144,14201 -507011149,2964,2999,5963 -507011150,13,6,19 -507011151,0,0,0 -507011152,3717,3807,7524 -507011153,3808,3936,7744 -507011154,4876,4979,9855 -507011155,10,4,14 -507011156,1248,1270,2518 -507011157,222,0,222 -507011158,289,290,579 -507011159,5482,5560,11042 -507011160,4483,4613,9096 -507011161,5466,5479,10945 -507011162,312,258,570 -507011163,3611,3514,7125 -507021164,3353,3577,6930 -507021165,6572,6673,13245 -507021166,6494,6952,13446 -507021167,0,0,0 -507031168,606,527,1133 -507031169,3863,3967,7830 -507031170,3600,3770,7370 -507031171,1307,627,1934 -507031172,43,65,108 -507031173,10,0,10 -507031174,5442,5398,10840 -507041175,5109,5517,10626 -507041176,1852,1886,3738 -507041177,6069,6890,12959 -507041178,6610,7260,13870 -507041179,3628,3913,7541 -507041180,5549,5544,11093 -507041181,7342,8113,15455 -507041182,5902,6213,12115 -507041183,2246,2522,4768 -507041184,3081,3123,6204 -507051185,8214,8380,16594 -507051186,4225,4405,8630 -507051187,6977,7128,14105 -507051188,7516,7311,14827 -507051189,7,5,12 -507051190,5568,5670,11238 -507051191,7940,7674,15614 -507051192,5907,6076,11983 -507051193,5498,5603,11101 -508011194,5642,5790,11432 -508011195,2276,1895,4171 -508021196,2730,2617,5347 -508021197,2109,1832,3941 -508031198,4100,3634,7734 -508031199,7412,6537,13949 -508031200,4617,4544,9161 -508031201,0,0,0 -508031202,2985,2422,5407 -508031203,3436,2129,5565 -508031204,0,0,0 -508041205,6501,6266,12767 -508041206,4959,3455,8414 -508041207,1826,1740,3566 -508041208,4054,3749,7803 -508041209,1167,1071,2238 -508051210,5921,6418,12339 -508051211,3982,3763,7745 -508051212,3287,3210,6497 -508051213,4526,4642,9168 -508051214,1822,1745,3567 -508051215,2559,1516,4075 -508051216,2506,1995,4501 -508051217,3039,2731,5770 -508061218,6522,3480,10002 -508061219,5872,1874,7746 -508061220,9524,6952,16476 -508061221,3116,2362,5478 -508061222,2553,1840,4393 -508061223,4226,2200,6426 -508061224,5068,4307,9375 -509011225,6456,7224,13680 -509011226,1532,1465,2997 -509011227,2116,2144,4260 -509011228,2554,2640,5194 -509011229,1513,1320,2833 -509011230,2299,2299,4598 -509011231,2126,2067,4193 -509011232,1841,1433,3274 -509011233,4633,4807,9440 -509011234,2497,2386,4883 -509011235,0,0,0 -509021236,2251,2177,4428 -509021237,2022,1910,3932 -509021238,2083,1975,4058 -509021239,4151,3719,7870 -509021240,2645,2425,5070 -509021241,2425,2217,4642 -509021242,2014,1456,3470 -509021243,5200,5357,10557 -509021244,2180,2208,4388 -509021245,2502,2457,4959 -509031246,1833,1769,3602 -509031247,2461,2122,4583 -509031248,1753,1173,2926 -509031249,2329,2402,4731 -509031250,2482,2383,4865 -597979799,381,35,416 -599999499,4286,3011,7297 -601011001,3545,3945,7490 -601011002,2382,2415,4797 -601011003,1840,1890,3730 -601021004,2756,3075,5831 -601021005,3637,3579,7216 -601021006,1514,1669,3183 -601021007,4634,5001,9635 -601021008,3121,3594,6715 -601021009,2168,2425,4593 -601021010,1646,1260,2906 -601021011,2673,2820,5493 -601021012,2063,2012,4075 -601031013,1900,1845,3745 -601031014,2623,2716,5339 -601031015,3659,4023,7682 -601031016,2020,2125,4145 -601031017,4979,5555,10534 -601031018,2140,2435,4575 -601031019,2490,2636,5126 -601031020,3142,3192,6334 -601031021,1797,1977,3774 -601041022,5135,5617,10752 -601041023,4698,5043,9741 -601041024,3456,3631,7087 -601041025,0,0,0 -601041026,1689,1822,3511 -601051027,3739,3704,7443 -601051028,3869,4263,8132 -601051029,2220,2183,4403 -601051030,2931,3038,5969 -601051031,5461,5695,11156 -601051032,2837,3067,5904 -601051033,2773,3027,5800 -601061034,3569,3515,7084 -601061035,3774,3996,7770 -602011036,1560,1527,3087 -602011037,1807,2006,3813 -602011038,2527,2609,5136 -602011039,1769,1910,3679 -602011040,1831,1920,3751 -602011041,4197,4380,8577 -602011042,2302,2666,4968 -602011043,1789,2006,3795 -602011044,2994,3319,6313 -602011045,1890,2084,3974 -602011046,2940,3132,6072 -602011047,2110,2337,4447 -602011048,2212,2388,4600 -602011049,2251,2387,4638 -602011050,1690,1777,3467 -602011051,1929,2101,4030 -602011052,2299,2398,4697 -602021053,1868,1859,3727 -602021054,2699,2884,5583 -602021055,2725,2833,5558 -602021056,1522,1653,3175 -602021057,2007,1954,3961 -602031058,2023,1908,3931 -602031059,3322,3372,6694 -602031060,1829,1927,3756 -602031061,1851,1767,3618 -602031062,2371,2364,4735 -602031063,3812,3786,7598 -602031064,3150,3027,6177 -603011065,1147,1023,2170 -603011066,1642,1452,3094 -603011067,3107,2964,6071 -603011068,4,3,7 -603021069,1459,1336,2795 -603021070,1959,1928,3887 -603021071,1788,1705,3493 -603021072,3893,3871,7764 -603031073,1215,1140,2355 -603031074,2107,2057,4164 -604011075,1602,1705,3307 -604011076,2611,2497,5108 -604011077,1825,1964,3789 -604011078,2921,3383,6304 -604011079,2414,2519,4933 -604011080,1698,1805,3503 -604011081,1905,2070,3975 -604011082,3203,3516,6719 -604011083,2094,2243,4337 -604011084,2877,3113,5990 -604021085,6532,7478,14010 -604021086,2397,2514,4911 -604021087,2090,2133,4223 -604021088,1482,1594,3076 -604021089,2494,2528,5022 -604021090,1433,1391,2824 -604021091,3136,2962,6098 -604021092,1522,1533,3055 -604031093,815,750,1565 -604031094,2101,1937,4038 -604031095,1932,2003,3935 -604031096,1974,1763,3737 -604031097,2447,2230,4677 -604031098,0,0,0 -697979799,81,34,115 -699999499,613,460,1073 -701011001,292,159,451 -701011002,2609,1936,4545 -701011003,23,17,40 -701011004,1694,1563,3257 -701011005,1794,1448,3242 -701011006,1459,1405,2864 -701011007,1031,945,1976 -701011008,1981,1768,3749 -701011009,1390,1260,2650 -701021010,1095,1028,2123 -701021011,1217,1188,2405 -701021012,1825,697,2522 -701021013,1603,1451,3054 -701021014,3,0,3 -701021015,5,6,11 -701021016,1407,1444,2851 -701021017,5,3,8 -701021018,915,901,1816 -701021019,2433,2412,4845 -701021020,2336,2356,4692 -701021021,1050,1022,2072 -701021022,2347,2407,4754 -701021023,1262,1203,2465 -701021024,1052,974,2026 -701021025,1820,1835,3655 -701021026,1703,1565,3268 -701021027,1209,1301,2510 -701021028,1090,1019,2109 -701021029,912,863,1775 -701021030,1335,1285,2620 -701031031,2657,1641,4298 -701031032,4020,3781,7801 -701031033,10,8,18 -701031034,1486,1366,2852 -701031035,1950,1697,3647 -701041036,1594,1597,3191 -701041037,1469,1490,2959 -701041038,1890,1774,3664 -701041039,1663,1648,3311 -701041040,1566,1625,3191 -701041041,2100,2031,4131 -701041042,0,8,8 -701041043,1904,1841,3745 -701041044,1700,1719,3419 -702011045,2262,2197,4459 -702011046,2557,2676,5233 -702011047,2254,2251,4505 -702011048,2480,2562,5042 -702011049,1857,1785,3642 -702011050,1127,1036,2163 -702011051,1147,1158,2305 -702011052,2101,1626,3727 -702011053,1455,1475,2930 -702011054,995,1065,2060 -702021055,1349,1311,2660 -702021056,1524,1537,3061 -702031057,2328,1906,4234 -702031058,1024,903,1927 -702031059,1141,1163,2304 -702031060,1319,1260,2579 -702031061,2414,2291,4705 -702041062,1359,1212,2571 -702041063,3736,3775,7511 -702041064,2111,1822,3933 -702051065,1019,1035,2054 -702051066,2031,2013,4044 -702051067,4675,4534,9209 -702051068,1238,1277,2515 -797979799,90,18,108 -799999499,1018,851,1869 -801011001,1200,1283,2483 -801011002,2275,2162,4437 -801011003,3163,3227,6390 -801011004,1484,1584,3068 -801011005,1400,1501,2901 -801011006,3504,3605,7109 -801011007,2690,2723,5413 -801011008,2482,2559,5041 -801011009,1790,1765,3555 -801011010,1076,1045,2121 -801011011,1656,1648,3304 -801011012,0,0,0 -801011013,1449,1429,2878 -801011014,1542,1549,3091 -801011015,2281,2533,4814 -801011016,3712,3602,7314 -801011017,1789,1814,3603 -801011018,0,0,0 -801011019,2722,2784,5506 -801011020,1260,1296,2556 -801011021,1367,1431,2798 -801011022,1571,1629,3200 -801011023,1309,1571,2880 -801011024,1418,1396,2814 -801011025,1268,1292,2560 -801011026,1270,1338,2608 -801021027,264,225,489 -801021028,11,16,27 -801021029,20,13,33 -801031030,566,349,915 -801031031,289,19,308 -801031032,21,13,34 -801031033,132,117,249 -801041034,2683,2886,5569 -801041035,734,760,1494 -801041036,736,756,1492 -801041037,266,297,563 -801041038,1159,1165,2324 -801041039,1942,1862,3804 -801041040,2828,2789,5617 -801041041,27,9,36 -801041042,0,3,3 -801041043,153,178,331 -801041044,2192,2249,4441 -801041045,4,3,7 -801041046,4386,4595,8981 -801041047,3453,3499,6952 -801041048,2770,2909,5679 -801051049,1013,953,1966 -801051050,2397,2703,5100 -801051051,2420,2138,4558 -801051052,2905,2025,4930 -801051053,1466,1357,2823 -801051054,1075,1064,2139 -801051055,1755,1800,3555 -801051056,1381,1533,2914 -801051057,2148,2337,4485 -801051058,2538,2713,5251 -801051059,816,767,1583 -801051060,1857,1738,3595 -801051061,2537,2586,5123 -801061062,1243,1540,2783 -801061063,740,726,1466 -801061064,2014,1886,3900 -801061065,2040,2122,4162 -801061066,0,0,0 -801061067,2712,2959,5671 -801061068,3,0,3 -801061069,1653,1596,3249 -801061070,1408,1514,2922 -801071071,2449,2611,5060 -801071072,1862,1976,3838 -801071073,2835,2998,5833 -801071074,2587,2651,5238 -801071075,2625,2688,5313 -801071076,1531,1552,3083 -801071077,1424,1419,2843 -801071078,3753,4013,7766 -801071079,1499,1573,3072 -801071080,704,750,1454 -801071081,2120,2195,4315 -801071082,7674,7775,15449 -801071083,772,688,1460 -801071084,2648,2775,5423 -801071085,4,0,4 -801071086,882,903,1785 -801071087,1541,1592,3133 -801071088,2010,2010,4020 -801071089,19,13,32 -801071090,3863,3922,7785 -801081091,1348,1375,2723 -801081092,1598,1643,3241 -801081093,1445,1570,3015 -801081094,1347,1364,2711 -801081095,1488,1633,3121 -801081096,1034,1051,2085 -801081097,1285,1312,2597 -801081098,1560,1695,3255 -801091099,1259,1230,2489 -801091100,2465,2710,5175 -801091101,1628,1729,3357 -801091102,1535,1663,3198 -801091103,1364,1592,2956 -801091104,1120,1232,2352 -801091105,1401,1332,2733 -801091106,1454,1466,2920 -801091107,434,439,873 -801091108,1265,1278,2543 -801091109,1011,1071,2082 -801091110,1139,1146,2285 -897979799,0,0,0 -899999499,327,304,631 -901011001,1465,607,2072 -901021002,284,266,550 -901031003,212,166,378 -997979799,0,3,3 -999999499,7,19,26 diff --git a/wwwroot/data/2011Census_TOT_SA3.csv b/wwwroot/data/2011Census_TOT_SA3.csv deleted file mode 100644 index 7f58b17f9c..0000000000 --- a/wwwroot/data/2011Census_TOT_SA3.csv +++ /dev/null @@ -1,352 +0,0 @@ -SA3,Tot_P_M,Tot_P_F,Tot_P_P -10101,33658,33841,67499 -10102,26852,26660,53512 -10103,9737,9193,18930 -10104,33368,34513,67881 -10201,78677,84434,163111 -10202,72026,77051,149077 -10301,21985,21569,43554 -10302,27254,27541,54795 -10303,22299,21620,43919 -10304,26788,27682,54470 -10401,24276,24962,49238 -10402,39513,41849,81362 -10501,13064,12229,25293 -10502,10454,10749,21203 -10503,32992,34106,67098 -10601,41157,40830,81987 -10602,31454,32753,64207 -10603,33256,34247,67503 -10604,15031,14516,29547 -10701,35457,36461,71918 -10702,6,6,12 -10703,40920,42612,83532 -10704,59798,60726,120524 -10801,14566,15282,29848 -10802,23227,23601,46828 -10803,175,185,360 -10804,34944,37767,72711 -10805,25054,26305,51359 -10901,27926,29512,57438 -10902,6402,6022,12424 -10903,20221,20236,40457 -11001,17401,18544,35945 -11002,18695,19066,37761 -11003,13011,12676,25687 -11004,37798,39007,76805 -11101,56951,59917,116868 -11102,34288,35717,70005 -11103,76686,79051,155737 -11201,35526,37702,73228 -11202,34052,35234,69286 -11203,41012,44093,85105 -11301,23395,23199,46594 -11302,7331,6996,14327 -11303,44144,45050,89194 -11401,45609,47012,92621 -11402,21271,23115,44386 -11501,65453,68369,133822 -11502,12560,12776,25336 -11503,12232,11842,24074 -11504,13771,13410,27181 -11601,61989,63033,125022 -11602,37656,37121,74777 -11603,51099,52629,103728 -11701,19492,19865,39357 -11702,25275,25338,50613 -11703,92089,82483,174572 -11801,58239,62318,120557 -11802,63368,65622,128990 -11901,78234,80838,159072 -11902,63067,62359,125426 -11903,56553,60050,116603 -11904,60465,62035,122500 -12001,35938,38218,74156 -12002,24726,27471,52197 -12003,67285,69922,137207 -12101,48381,51817,100198 -12102,37550,38986,76536 -12103,52396,57182,109578 -12104,41791,46564,88355 -12201,19408,20339,39747 -12202,27912,29243,57155 -12203,69112,71629,140741 -12301,25477,26756,52233 -12302,71984,75180,147164 -12303,18187,18215,36402 -12401,36573,39124,75697 -12402,3,6,9 -12403,61179,63494,124673 -12404,17715,18035,35750 -12405,25872,26193,52065 -12501,38568,35853,74421 -12502,29380,30217,59597 -12503,67635,68278,135913 -12504,62717,62058,124775 -12601,20843,22163,43006 -12602,58370,61470,119840 -12701,39912,40429,80341 -12702,86534,89103,175637 -12703,51682,52507,104189 -12801,50720,53648,104368 -12802,52130,53770,105900 -19797,57,55,112 -19999,7592,5326,12918 -20101,45973,49610,95583 -20102,13291,13474,26765 -20103,12063,11826,23889 -20201,41430,44649,86079 -20202,21470,21959,43429 -20203,5685,5502,11187 -20301,8366,8250,16616 -20302,84413,89039,173452 -20303,29424,31160,60584 -20401,25018,24894,49912 -20402,21495,22737,44232 -20403,32271,32875,65146 -20501,21061,21924,42985 -20502,20849,21447,42296 -20503,28024,28995,57019 -20504,35273,36944,72217 -20505,20730,20605,41335 -20601,38453,40443,78896 -20602,23312,25247,48559 -20603,29395,31535,60930 -20604,46771,46846,93617 -20605,45324,46058,91382 -20606,25960,27821,53781 -20607,36499,38334,74833 -20701,76499,82685,159184 -20702,41488,44419,85907 -20703,45540,49374,94914 -20801,43842,47972,91814 -20802,67191,70875,138066 -20803,52819,56152,108971 -20804,18823,20544,39367 -20901,57426,60880,118306 -20902,43143,44773,87916 -20903,31736,32183,63919 -20904,82838,84068,166906 -21001,26767,28059,54826 -21002,13218,13420,26638 -21003,33334,34276,67610 -21004,18090,18762,36852 -21005,65913,66646,132559 -21101,73432,75908,149340 -21102,12613,12891,25504 -21103,50182,53230,103412 -21104,27623,29510,57133 -21105,71077,72631,143708 -21201,36788,37549,74337 -21202,61434,62586,124020 -21203,64022,64339,128361 -21204,85336,83731,169067 -21205,80185,82044,162229 -21301,87243,87179,174422 -21302,39285,40128,79413 -21303,36394,35241,71635 -21304,61703,62859,124562 -21305,82911,83110,166021 -21401,61851,64607,126458 -21402,70042,74566,144608 -21501,29486,29763,59249 -21502,24975,26004,50979 -21503,18678,18524,37202 -21601,18098,18451,36549 -21602,13984,14139,28123 -21603,29767,30456,60223 -21701,17837,18156,35993 -21702,41747,42921,84668 -29797,36,0,36 -29999,4672,3636,8308 -30101,34493,35450,69943 -30102,37217,39242,76459 -30103,31812,33215,65027 -30201,18284,19480,37764 -30202,31712,34182,65894 -30203,17353,17215,34568 -30204,25568,27256,52824 -30301,22725,24285,47010 -30302,32318,32868,65186 -30303,32031,33631,65662 -30304,18167,18350,36517 -30305,26517,27124,53641 -30306,22808,23259,46067 -30401,15653,16410,32063 -30402,21312,22310,43622 -30403,23133,24163,47296 -30404,23309,24063,47372 -30501,30073,27510,57583 -30502,18836,18739,37575 -30503,37077,38196,75273 -30504,26221,27321,53542 -30601,23161,24058,47219 -30602,47083,47648,94731 -30603,17231,16233,33464 -30604,5532,5255,10787 -30605,18868,19367,38235 -30701,22326,21085,43411 -30702,20471,19892,40363 -30703,18884,19616,38500 -30801,15840,13822,29662 -30802,37572,34771,72343 -30803,54750,54586,109336 -30901,28167,29753,57920 -30902,24473,25626,50099 -30903,28569,31036,59605 -30904,8470,8665,17135 -30905,15161,15915,31076 -30906,30638,32035,62673 -30907,46565,47492,94057 -30908,21494,23697,45191 -30909,26555,27993,54548 -30910,17940,17388,35328 -31001,31954,31619,63573 -31002,28900,28049,56949 -31003,46844,48067,94911 -31004,33056,33304,66360 -31101,6076,6304,12380 -31102,18618,19140,37758 -31103,36146,36566,72712 -31104,18940,18403,37343 -31105,26922,27960,54882 -31106,37354,38001,75355 -31201,19390,16090,35480 -31202,58237,54561,112798 -31203,9703,8830,18533 -31301,14826,15708,30534 -31302,28886,30166,59052 -31303,5942,5349,11291 -31304,28854,29736,58590 -31305,26972,29018,55990 -31401,40050,40463,80513 -31402,25116,26454,51570 -31403,17482,17870,35352 -31501,15963,13917,29880 -31502,17771,15361,33132 -31503,10104,9808,19912 -31601,21644,24096,45740 -31602,33743,36297,70040 -31603,24746,26339,51085 -31604,28531,29330,57861 -31605,17242,18654,35896 -31606,22742,23556,46298 -31701,67840,72381,140221 -31801,21905,21466,43371 -31802,87143,87386,174529 -31901,41597,43142,84739 -31902,23790,23682,47472 -31903,22698,22990,45688 -31904,25324,27514,52838 -31905,21370,21152,42522 -39797,277,194,471 -39999,7151,5394,12545 -40101,10148,9492,19640 -40102,33657,34400,68057 -40103,19921,22272,42193 -40104,23379,25122,48501 -40105,16719,18168,34887 -40106,13297,13656,26953 -40107,17333,19507,36840 -40201,15478,16162,31640 -40202,39625,40245,79870 -40203,30551,30385,60936 -40204,63511,64151,127662 -40205,44872,46666,91538 -40301,15723,17345,33068 -40302,40654,43671,84325 -40303,29803,31854,61657 -40304,79036,81782,160818 -40401,50021,52209,102230 -40402,28015,28586,56601 -40403,28268,29555,57823 -40501,16619,16580,33199 -40502,11104,10950,22054 -40503,13573,13690,27263 -40504,12002,11996,23998 -40601,28511,27885,56396 -40602,15147,13075,28222 -40701,22542,23808,46350 -40702,31644,31433,63077 -40703,34281,33417,67698 -49797,5,0,5 -49999,1779,1289,3068 -50101,20644,21402,42046 -50102,47408,46978,94386 -50103,10900,10772,21672 -50201,40871,42423,83294 -50301,30981,33153,64134 -50302,46750,45467,92217 -50401,38236,38105,76341 -50402,20733,19680,40413 -50403,51336,51802,103138 -50501,75375,77046,152421 -50502,87635,90795,178430 -50503,75236,76867,152103 -50601,31044,31253,62297 -50602,32599,31205,63804 -50603,44141,44622,88763 -50604,53754,52831,106585 -50605,26533,27030,53563 -50606,9051,8754,17805 -50607,19942,20866,40808 -50701,43553,43860,87413 -50702,16417,17210,33627 -50703,14872,14355,29227 -50704,47387,50983,98370 -50705,51853,52252,104105 -50801,7919,7689,15608 -50802,4845,4446,9291 -50803,22549,19263,41812 -50804,18510,16284,34794 -50805,27644,26013,53657 -50806,36882,23012,59894 -50901,27569,27788,55357 -50902,27478,25893,53371 -50903,10859,9852,20711 -59797,383,33,416 -59999,4287,3011,7298 -60101,7763,8250,16013 -60102,24223,25420,49643 -60103,24751,26500,51251 -60104,14981,16112,31093 -60105,23827,24977,48804 -60106,7339,7510,14849 -60201,38090,40956,79046 -60202,10819,11186,22005 -60203,18363,18149,36512 -60301,5900,5439,11339 -60302,9091,8850,17941 -60303,3322,3196,6518 -60401,23154,24814,47968 -60402,21088,22136,43224 -60403,9269,8687,17956 -69797,81,35,116 -69999,613,460,1073 -70101,12271,10500,22771 -70102,26610,24964,51574 -70103,10127,8493,18620 -70104,13887,13731,27618 -70201,18245,17821,36066 -70202,2876,2846,5722 -70203,8226,7525,15751 -70204,7206,6814,14020 -70205,8962,8861,17823 -79797,89,19,108 -79999,1018,852,1870 -80101,45670,46774,92444 -80102,295,254,549 -80103,1009,494,1503 -80104,23346,23957,47303 -80105,24311,23719,48030 -80106,11812,12342,24154 -80107,42802,44098,86900 -80108,11100,11646,22746 -80109,16070,16888,32958 -89797,0,0,0 -89999,327,304,631 -90101,1465,607,2072 -90102,284,266,550 -90103,212,166,378 -99797,0,3,3 -99999,7,19,26 diff --git a/wwwroot/data/2011Census_TOT_SA4.csv b/wwwroot/data/2011Census_TOT_SA4.csv deleted file mode 100644 index bf7b8963c9..0000000000 --- a/wwwroot/data/2011Census_TOT_SA4.csv +++ /dev/null @@ -1,107 +0,0 @@ -SA4,Tot_P_M,Tot_P_F,Tot_P_P -101,103616,104206,207822 -102,150702,161482,312184 -103,98325,98417,196742 -104,63794,66810,130604 -105,56508,57083,113591 -106,120897,122349,243246 -107,136180,139803,275983 -108,97970,103140,201110 -109,54552,55765,110317 -110,86906,89288,176194 -111,167926,174679,342605 -112,110592,117027,227619 -113,74870,75250,150120 -114,66877,70130,137007 -115,104018,106395,210413 -116,150742,152786,303528 -117,136858,127686,264544 -118,121601,127945,249546 -119,258320,265288,523608 -120,127950,135610,263560 -121,180121,194544,374665 -122,116427,121213,237640 -123,115649,120155,235804 -124,141340,146848,288188 -125,198298,196410,394708 -126,79213,83632,162845 -127,178129,182037,360166 -128,102848,107419,210267 -197,56,56,112 -199,7592,5326,12918 -201,71327,74908,146235 -202,68587,72109,140696 -203,122200,128451,250651 -204,78782,80512,159294 -205,125947,129911,255858 -206,245710,256280,501990 -207,163528,176477,340005 -208,182675,195540,378215 -209,215142,221904,437046 -210,157321,161162,318483 -211,234932,244171,479103 -212,327767,330249,658016 -213,307531,308527,616058 -214,131896,139168,271064 -215,73135,74293,147428 -216,61841,63053,124894 -217,59586,61073,120659 -297,36,0,36 -299,4673,3635,8308 -301,103529,107904,211433 -302,92918,98129,191047 -303,154572,159513,314085 -304,83413,86940,170353 -305,112201,111775,223976 -306,111878,112558,224436 -307,61683,60590,122273 -308,108165,103179,211344 -309,248043,259599,507642 -310,140752,141038,281790 -311,144049,146381,290430 -312,87329,79482,166811 -313,105477,109977,215454 -314,82642,84788,167430 -315,43833,39090,82923 -316,148643,158266,306909 -317,67839,72381,140220 -318,109043,108854,217897 -319,134783,138484,273267 -397,277,195,472 -399,7151,5394,12545 -401,134455,142609,277064 -402,194038,197605,391643 -403,165215,174659,339874 -404,106304,110351,216655 -405,53303,53216,106519 -406,43654,40965,84619 -407,88465,88657,177122 -497,5,0,5 -499,1779,1289,3068 -501,78957,79147,158104 -502,40870,42424,83294 -503,77732,78619,156351 -504,110307,109589,219896 -505,238246,244709,482955 -506,217063,216563,433626 -507,174088,178659,352747 -508,118341,96707,215048 -509,65907,63531,129438 -597,381,34,415 -599,4286,3011,7297 -601,102882,108774,211656 -602,67270,70288,137558 -603,18313,17484,35797 -604,53511,55641,109152 -697,82,33,115 -699,615,458,1073 -701,62897,57689,120586 -702,45508,43869,89377 -797,93,17,110 -799,1019,851,1870 -801,176415,180171,356586 -897,0,0,0 -899,328,304,632 -901,1960,1041,3001 -997,0,3,3 -999,7,18,25 diff --git a/wwwroot/data/2011Census_TOT_SED.csv b/wwwroot/data/2011Census_TOT_SED.csv deleted file mode 100644 index 8ee181dcd5..0000000000 --- a/wwwroot/data/2011Census_TOT_SED.csv +++ /dev/null @@ -1,447 +0,0 @@ -SED,Tot_P_M,Tot_P_F,Tot_P_P -10001,35306,36690,71996 -10002,47273,44756,92029 -10003,31874,34155,66029 -10004,36032,39393,75425 -10005,39947,40747,80694 -10006,34284,33188,67472 -10007,36953,36105,73058 -10008,35551,36945,72496 -10009,32914,34099,67013 -10010,39215,39823,79038 -10011,32633,35006,67639 -10012,33146,33753,66899 -10013,37337,38921,76258 -10014,38938,40291,79229 -10015,34163,35345,69508 -10016,38472,40298,78770 -10017,36031,37788,73819 -10018,36830,37489,74319 -10019,31145,32977,64122 -10020,35391,36248,71639 -10021,34223,36329,70552 -10022,39557,41984,81541 -10023,32460,33993,66453 -10024,33148,35556,68704 -10025,39574,41416,80990 -10026,34928,36646,71574 -10027,33152,34542,67694 -10028,34138,36364,70502 -10029,41532,42692,84224 -10030,33964,36653,70617 -10031,34354,35823,70177 -10032,44494,43854,88348 -10033,37997,37663,75660 -10034,32770,33521,66291 -10035,44722,41881,86603 -10036,36316,37035,73351 -10037,33251,34598,67849 -10038,33787,35306,69093 -10039,37695,39086,76781 -10040,35235,38740,73975 -10041,33057,34260,67317 -10042,43142,42411,85553 -10043,33180,35453,68633 -10044,36029,37165,73194 -10045,41335,42046,83381 -10046,37040,37316,74356 -10047,42257,43893,86150 -10048,37054,38640,75694 -10049,37170,38352,75522 -10050,38472,38960,77432 -10051,38534,39200,77734 -10052,35390,35795,71185 -10053,31432,33522,64954 -10054,36797,36082,72879 -10055,42079,43272,85351 -10056,38028,38791,76819 -10057,32744,32525,65269 -10058,35557,34885,70442 -10059,32852,34938,67790 -10060,33756,34164,67920 -10061,37026,40880,77906 -10062,35430,36962,72392 -10063,35417,37894,73311 -10064,36422,36784,73206 -10065,34113,34946,69059 -10066,46513,45938,92451 -10067,33383,35515,68898 -10068,33184,34759,67943 -10069,31896,34411,66307 -10070,34336,35331,69667 -10071,48322,48126,96448 -10072,37000,37886,74886 -10073,36875,38800,75675 -10074,33549,34767,68316 -10075,37089,37593,74682 -10076,34274,35111,69385 -10077,40723,41839,82562 -10078,32820,34171,66991 -10079,56691,50436,107127 -10080,35066,36309,71375 -10081,31877,34165,66042 -10082,34224,37139,71363 -10083,36995,37731,74726 -10084,33869,36535,70404 -10085,36862,35601,72463 -10086,36741,39345,76086 -10087,36058,37381,73439 -10088,36043,37700,73743 -10089,33531,35284,68815 -10090,36997,40054,77051 -10091,37664,38658,76322 -10092,36923,36795,73718 -10093,36681,39180,75861 -19494,7592,5326,12918 -19797,56,56,112 -20106,37575,38025,75600 -20207,48286,47325,95611 -20308,28083,29350,57433 -20408,30149,33205,63354 -20502,38431,39670,78101 -20601,25389,26402,51791 -20708,28939,31050,59989 -20804,24494,24823,49317 -20904,26539,27088,53627 -21004,27799,29502,57301 -21104,28065,29556,57621 -21206,27052,28395,55447 -21301,27990,30481,58471 -21406,26299,28965,55264 -21503,31807,31967,63774 -21603,30328,32180,62508 -21701,22672,24068,46740 -21803,26175,27612,53787 -21906,28508,30922,59430 -22005,29484,30886,60370 -22106,27305,29045,56350 -22205,30558,29312,59870 -22305,40941,41855,82796 -22405,30619,29612,60231 -22507,34893,34801,69694 -22601,23703,25671,49374 -22701,25109,26611,51720 -22807,27416,28970,56386 -22902,27989,28452,56441 -23001,31570,32322,63892 -23107,35320,33680,69000 -23201,24498,26221,50719 -23305,25475,27151,52626 -23408,26568,28375,54943 -23502,31484,32266,63750 -23602,27833,28602,56435 -23702,26903,26942,53845 -23802,32807,33303,66110 -23906,27854,29713,57567 -24003,26430,27911,54341 -24107,41182,41624,82806 -24206,25002,27093,52095 -24301,28040,29951,57991 -24407,35694,35786,71480 -24508,34900,35555,70455 -24608,25302,26040,51342 -24705,34856,34895,69751 -24804,33748,34961,68709 -24906,26199,28824,55023 -25003,45604,46826,92430 -25108,35192,35857,71049 -25204,27815,28736,56551 -25303,29800,30597,60397 -25401,25849,27467,53316 -25502,26347,26540,52887 -25605,28873,30398,59271 -25702,26998,29726,56724 -25802,27513,28662,56175 -25905,26722,28167,54889 -26005,26220,26181,52401 -26104,25578,26702,52280 -26202,29140,30543,59683 -26305,29836,30388,60224 -26405,46027,46402,92429 -26502,24236,25852,50088 -26607,24090,25492,49582 -26703,28268,30169,58437 -26806,28298,29093,57391 -26907,30835,32018,62853 -27008,28640,28587,57227 -27106,29639,30549,60188 -27203,29554,30574,60128 -27303,29487,30706,60193 -27408,25475,24941,50416 -27504,24829,25056,49885 -27606,24656,26916,51572 -27701,25474,26548,52022 -27804,29747,29833,59580 -27904,28106,28782,56888 -28008,33837,35761,69598 -28108,29630,30867,60497 -28204,22372,22216,44588 -28307,39698,41038,80736 -28403,26918,27214,54132 -28501,28425,29685,58110 -28607,28294,28966,57260 -28703,45229,45778,91007 -28807,40396,40937,81333 -29494,4672,3636,8308 -29797,36,0,36 -30001,28286,29190,57476 -30002,25216,26118,51334 -30003,22268,22534,44802 -30004,20307,21792,42099 -30005,27080,28202,55282 -30006,24768,25041,49809 -30007,26842,24450,51292 -30008,22195,24157,46352 -30009,20204,21880,42084 -30010,23453,24210,47663 -30011,21369,23162,44531 -30012,30885,31127,62012 -30013,23975,22244,46219 -30014,23606,25287,48893 -30015,22414,21811,44225 -30016,28317,28239,56556 -30017,23122,22214,45336 -30018,21695,23236,44931 -30019,23020,23433,46453 -30020,23574,25079,48653 -30021,23002,24066,47068 -30022,23111,24657,47768 -30023,26176,25923,52099 -30024,24503,23069,47572 -30025,28692,29327,58019 -30026,22338,23376,45714 -30027,24482,23119,47601 -30028,22057,23003,45060 -30029,21607,22106,43713 -30030,27245,28435,55680 -30031,27140,25212,52352 -30032,24016,23740,47756 -30033,21823,22729,44552 -30034,22907,20748,43655 -30035,22720,23021,45741 -30036,23381,25523,48904 -30037,23911,22372,46283 -30038,26917,25871,52788 -30039,22641,23585,46226 -30040,23682,24623,48305 -30041,24809,24551,49360 -30042,23151,24004,47155 -30043,22761,24952,47713 -30044,24948,24645,49593 -30045,24329,24322,48651 -30046,23742,23517,47259 -30047,23079,24239,47318 -30048,23784,22932,46716 -30049,21096,22067,43163 -30050,23055,24590,47645 -30051,24407,24223,48630 -30052,24324,25984,50308 -30053,28213,24295,52508 -30054,22479,23442,45921 -30055,25023,25765,50788 -30056,21402,22421,43823 -30057,19578,16858,36436 -30058,21733,22798,44531 -30059,24474,25977,50451 -30060,24623,24926,49549 -30061,22409,23432,45841 -30062,27522,29237,56759 -30063,23975,23810,47785 -30064,21636,22710,44346 -30065,22866,24174,47040 -30066,24981,25494,50475 -30067,23359,23656,47015 -30068,24567,26221,50788 -30069,22595,24110,46705 -30070,22795,23662,46457 -30071,23611,24639,48250 -30072,22049,23629,45678 -30073,25097,23818,48915 -30074,23527,24142,47669 -30075,26503,27979,54482 -30076,23628,24160,47788 -30077,21387,22992,44379 -30078,26274,27142,53416 -30079,24378,24994,49372 -30080,25951,25686,51637 -30081,24587,25774,50361 -30082,23605,25224,48829 -30083,22743,25512,48255 -30084,24503,23782,48285 -30085,21448,20054,41502 -30086,28466,29540,58006 -30087,27756,25725,53481 -30088,29184,29539,58723 -30089,23433,23674,47107 -39494,7151,5393,12544 -39797,276,195,471 -40001,19481,19045,38526 -40002,16696,17767,34463 -40003,14704,16368,31072 -40004,15572,16575,32147 -40005,15892,15936,31828 -40006,16791,17488,34279 -40007,15473,16270,31743 -40008,16687,16782,33469 -40009,15232,15955,31187 -40010,16159,17431,33590 -40011,19319,19354,38673 -40012,15023,15688,30711 -40013,16231,16774,33005 -40014,16571,16283,32854 -40015,15103,15989,31092 -40016,16194,16347,32541 -40017,18852,17130,35982 -40018,15485,15315,30800 -40019,17306,17301,34607 -40020,15425,17382,32807 -40021,16394,16850,33244 -40022,18956,19696,38652 -40023,16604,17357,33961 -40024,15438,16373,31811 -40025,18173,19012,37185 -40026,17610,17888,35498 -40027,15736,15160,30896 -40028,17360,18095,35455 -40029,16860,17997,34857 -40030,15827,16315,32142 -40031,14882,16388,31270 -40032,17278,17571,34849 -40033,19443,19723,39166 -40034,15410,15441,30851 -40035,16769,17699,34468 -40036,17116,16990,34106 -40037,19378,19400,38778 -40038,17159,17514,34673 -40039,15617,16134,31751 -40040,16320,16222,32542 -40041,17293,16164,33457 -40042,21297,21116,42413 -40043,17471,18153,35624 -40044,15036,17165,32201 -40045,15379,16493,31872 -40046,16142,16756,32898 -40047,16290,17211,33501 -49494,1779,1288,3067 -49797,5,0,5 -50106,16579,17073,33652 -50205,16161,17804,33965 -50302,20313,20629,40942 -50404,17721,18431,36152 -50502,17120,16996,34116 -50605,16437,17365,33802 -50702,19259,18692,37951 -50806,15002,14802,29804 -50906,15595,15753,31348 -51005,21392,20471,41863 -51104,15790,16477,32267 -51201,15461,14944,30405 -51304,17887,18164,36051 -51405,21455,21455,42910 -51506,21056,20476,41532 -51604,16937,18468,35405 -51702,23261,22811,46072 -51806,17544,18338,35882 -51903,16417,14771,31188 -52002,19486,19495,38981 -52105,17049,17846,34895 -52201,18154,18441,36595 -52304,18259,18399,36658 -52402,17849,17886,35735 -52504,16563,16721,33284 -52605,19975,20257,40232 -52704,17440,17727,35167 -52802,17057,17351,34408 -52903,15920,13206,29126 -53003,18510,16285,34795 -53104,15676,16359,32035 -53205,24116,23812,47928 -53306,17500,18357,35857 -53402,18180,18076,36256 -53502,18451,18493,36944 -53604,27557,28317,55874 -53701,17940,16380,34320 -53802,16530,16988,33518 -53902,16615,17528,34143 -54006,19634,19450,39084 -54104,17700,18694,36394 -54202,19441,19790,39231 -54303,22031,15346,37377 -54404,18780,19011,37791 -54504,24210,21857,46067 -54603,21377,13240,34617 -54705,16643,17042,33685 -54805,16755,16733,33488 -54904,17953,18687,36640 -55005,18392,19413,37805 -55105,25053,24910,49963 -55202,25050,24335,49385 -55306,19499,20251,39750 -55405,23046,22409,45455 -55501,15862,14703,30565 -55604,28804,29509,58313 -55705,25857,26061,51918 -55802,18868,19134,38002 -55905,16339,17531,33870 -59494,4286,3011,7297 -59797,382,34,416 -60101,5403,5265,10668 -60106,15285,16770,32055 -60112,10978,11755,22733 -60115,16542,17246,33788 -60207,15431,16653,32084 -60208,15569,16436,32005 -60209,16642,16867,33509 -60214,278,270,548 -60302,4572,4755,9327 -60303,16717,18294,35011 -60304,15898,16841,32739 -60305,121,127,248 -60310,10647,10989,21636 -60402,1286,1398,2684 -60405,16341,16592,32933 -60410,4894,5388,10282 -60411,16020,17183,33203 -60413,9267,9339,18606 -60501,10195,9835,20030 -60502,11931,12088,24019 -60512,4758,4857,9615 -60513,7770,7824,15594 -60514,15434,15412,30846 -69494,614,459,1073 -69797,81,34,115 -70001,4582,4225,8807 -70002,4373,4357,8730 -70003,3986,3906,7892 -70004,4253,4141,8394 -70005,4815,4873,9688 -70006,4209,4233,8442 -70007,4883,4797,9680 -70008,3838,3704,7542 -70009,4967,4477,9444 -70010,4215,4120,8335 -70011,3899,3564,7463 -70012,5349,3932,9281 -70013,4605,4280,8885 -70014,3976,4036,8012 -70015,4085,3920,8005 -70016,4061,4112,8173 -70017,4675,4534,9209 -70018,4360,3982,8342 -70019,4184,3038,7222 -70020,4244,4016,8260 -70021,4058,3911,7969 -70022,5233,4116,9349 -70023,3765,3659,7424 -70024,3423,3308,6731 -70025,4373,4314,8687 -79494,1018,851,1869 -79797,89,19,108 -80001,48377,49717,98094 -80002,49289,50465,99754 -80003,78751,79987,158738 -89494,327,305,632 -89797,0,0,0 -99191,1960,1041,3001 -99494,7,18,25 -99797,0,3,3 diff --git a/wwwroot/data/2011Census_TOT_STE.csv b/wwwroot/data/2011Census_TOT_STE.csv deleted file mode 100644 index a4d52b9600..0000000000 --- a/wwwroot/data/2011Census_TOT_STE.csv +++ /dev/null @@ -1,10 +0,0 @@ -STE,Tot_P_M,Tot_P_F,Tot_P_P -1,3408878,3508780,6917658 -2,2632619,2721423,5354042 -3,2148221,2184518,4332739 -4,787218,809354,1596572 -5,1126178,1112992,2239170 -6,242675,252679,495354 -7,109517,102428,211945 -8,176746,180476,357222 -9,1970,1063,3033 diff --git a/wwwroot/data/abs_names.json b/wwwroot/data/abs_names.json deleted file mode 100644 index 5c940f0fc1..0000000000 --- a/wwwroot/data/abs_names.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "AGE" : "Age", - "ANCP" : "Ancestry", - "BPLP" : "Country of Birth", - "BPPP" : "Birthplace of Parents", - "FPENG" : "Proficiency in English/Female Parent", - "MPENG" : "Proficiency in English/Male Parent", - "ENGLP" : "Proficiency in Spoken English/Language", - "LANP" : "Language Spoken at Home", - "INCP" : "Total Personal Income (weekly)", - "INGP" : "Indigenous Status", - "MDCP" : "Social Marital Status", - "MSTP" : "Registered Marital Status", - "RELP" : "Religious Affiliation", - "SEX" : "Sex", - "YARRP" : "Year of Arrival in Australia (ranges)", - "SPC" : "Selected Person Characteristics", - "HSCP" : "Highest Year of School Completed", - "TYPP" : "Type of Educational Institution Attending", - "INDP" : "Industry of Employment", - "OCCP" : "Occupation", - "LFSP" : "Labour Force Status", - "QALLP" : "Non:School Qualification: Level of Education", - "ASSNP" : "Core Activity Need for Assistance", - "DOMP" : "Unpaid Domestic Work: Number of Hours", - "UNCAREP" : "Unpaid Assistance to a Person with a Disability", - "VOLWP" : "Voluntary Work for an Organisation or Group", - "MTWP" : "Method of Travel to Work", - "POUR" : "Place of Usual Residence", - "TISP" : "Number of Children Born", - "FINF" : "Total Family Income (weekly)", - "FMCF" : "Family Composition", - "NPRD" : "Number of Persons Usually Resident in Dwelling", - "NEDD" : "Type of Internet Connection", - "HIND" : "Household Income (weekly)", - "STRD" : "Dwelling Structure", - "MRERD" : "Mortgage Repayments (monthly) Ranges", - "RNTRD" : "Rent (weekly) Ranges", - "BEDRD" : "Number of Bedrooms in Private Dwelling (ranges)", - "UAICP" : "Usual Address Indicator Census Night", - "UAI1P" : "Usual Address One Year Ago Indicator", - "UAI5PA" : "Usual Address Five Years Ago Indicator", - "FPD" : "Subject", - "REGIONTYPE" : "Region Type", - "MEASURE" : { - "Persons" : "Sex", - "85 years and over" : "Age", - "*" : "Measure" - } -} diff --git a/wwwroot/favicon.ico b/wwwroot/favicon.ico index e11bd176a7..4b23bc64a4 100644 Binary files a/wwwroot/favicon.ico and b/wwwroot/favicon.ico differ diff --git a/wwwroot/favicons/manifest.json b/wwwroot/favicons/manifest.json index 55f6e76fd8..4d6cb43d66 100644 --- a/wwwroot/favicons/manifest.json +++ b/wwwroot/favicons/manifest.json @@ -1,43 +1,43 @@ { - "name": "NationalMap", - "start_url": "index.html", - "display": "standalone", - "icons": [ - { - "src": "\/android-icon-36x36.png", - "sizes": "36x36", - "type": "image\/png", - "density": "0.75" - }, - { - "src": "\/android-icon-48x48.png", - "sizes": "48x48", - "type": "image\/png", - "density": "1.0" - }, - { - "src": "\/android-icon-72x72.png", - "sizes": "72x72", - "type": "image\/png", - "density": "1.5" - }, - { - "src": "\/android-icon-96x96.png", - "sizes": "96x96", - "type": "image\/png", - "density": "2.0" - }, - { - "src": "\/android-icon-144x144.png", - "sizes": "144x144", - "type": "image\/png", - "density": "3.0" - }, - { - "src": "\/android-icon-192x192.png", - "sizes": "192x192", - "type": "image\/png", - "density": "4.0" - } - ] -} \ No newline at end of file + "name": "TerriaJS", + "start_url": "/", + "display": "standalone", + "icons": [ + { + "src": "/android-icon-36x36.png", + "sizes": "36x36", + "type": "image/png", + "density": "0.75" + }, + { + "src": "/android-icon-48x48.png", + "sizes": "48x48", + "type": "image/png", + "density": "1.0" + }, + { + "src": "/android-icon-72x72.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, + { + "src": "/android-icon-96x96.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, + { + "src": "/android-icon-144x144.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, + { + "src": "/android-icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + } + ] +} diff --git a/wwwroot/help/css/bootstrap-theme.css b/wwwroot/help/css/bootstrap-theme.css deleted file mode 100644 index ebe57fbf64..0000000000 --- a/wwwroot/help/css/bootstrap-theme.css +++ /dev/null @@ -1,587 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -.btn-default, -.btn-primary, -.btn-success, -.btn-info, -.btn-warning, -.btn-danger { - text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); -} -.btn-default:active, -.btn-primary:active, -.btn-success:active, -.btn-info:active, -.btn-warning:active, -.btn-danger:active, -.btn-default.active, -.btn-primary.active, -.btn-success.active, -.btn-info.active, -.btn-warning.active, -.btn-danger.active { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-default.disabled, -.btn-primary.disabled, -.btn-success.disabled, -.btn-info.disabled, -.btn-warning.disabled, -.btn-danger.disabled, -.btn-default[disabled], -.btn-primary[disabled], -.btn-success[disabled], -.btn-info[disabled], -.btn-warning[disabled], -.btn-danger[disabled], -fieldset[disabled] .btn-default, -fieldset[disabled] .btn-primary, -fieldset[disabled] .btn-success, -fieldset[disabled] .btn-info, -fieldset[disabled] .btn-warning, -fieldset[disabled] .btn-danger { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default .badge, -.btn-primary .badge, -.btn-success .badge, -.btn-info .badge, -.btn-warning .badge, -.btn-danger .badge { - text-shadow: none; -} -.btn:active, -.btn.active { - background-image: none; -} -.btn-default { - text-shadow: 0 1px 0 #fff; - background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); - background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); - background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #dbdbdb; - border-color: #ccc; -} -.btn-default:hover, -.btn-default:focus { - background-color: #e0e0e0; - background-position: 0 -15px; -} -.btn-default:active, -.btn-default.active { - background-color: #e0e0e0; - border-color: #dbdbdb; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #e0e0e0; - background-image: none; -} -.btn-primary { - background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); - background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #245580; -} -.btn-primary:hover, -.btn-primary:focus { - background-color: #265a88; - background-position: 0 -15px; -} -.btn-primary:active, -.btn-primary.active { - background-color: #265a88; - border-color: #245580; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #265a88; - background-image: none; -} -.btn-success { - background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); - background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); - background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #3e8f3e; -} -.btn-success:hover, -.btn-success:focus { - background-color: #419641; - background-position: 0 -15px; -} -.btn-success:active, -.btn-success.active { - background-color: #419641; - border-color: #3e8f3e; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #419641; - background-image: none; -} -.btn-info { - background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); - background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); - background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #28a4c9; -} -.btn-info:hover, -.btn-info:focus { - background-color: #2aabd2; - background-position: 0 -15px; -} -.btn-info:active, -.btn-info.active { - background-color: #2aabd2; - border-color: #28a4c9; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #2aabd2; - background-image: none; -} -.btn-warning { - background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); - background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); - background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #e38d13; -} -.btn-warning:hover, -.btn-warning:focus { - background-color: #eb9316; - background-position: 0 -15px; -} -.btn-warning:active, -.btn-warning.active { - background-color: #eb9316; - border-color: #e38d13; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #eb9316; - background-image: none; -} -.btn-danger { - background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); - background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); - background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #b92c28; -} -.btn-danger:hover, -.btn-danger:focus { - background-color: #c12e2a; - background-position: 0 -15px; -} -.btn-danger:active, -.btn-danger.active { - background-color: #c12e2a; - border-color: #b92c28; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #c12e2a; - background-image: none; -} -.thumbnail, -.img-thumbnail { - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); - box-shadow: 0 1px 2px rgba(0, 0, 0, .075); -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - background-color: #e8e8e8; - background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); - background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); - background-repeat: repeat-x; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - background-color: #2e6da4; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); - background-repeat: repeat-x; -} -.navbar-default { - background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); - background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); - background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); - background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); - background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); - background-repeat: repeat-x; - -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); - box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); -} -.navbar-brand, -.navbar-nav > li > a { - text-shadow: 0 1px 0 rgba(255, 255, 255, .25); -} -.navbar-inverse { - background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); - background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); - background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-radius: 4px; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); - background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); - background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); - background-repeat: repeat-x; - -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); - box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); -} -.navbar-inverse .navbar-brand, -.navbar-inverse .navbar-nav > li > a { - text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); -} -.navbar-static-top, -.navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; -} -@media (max-width: 767px) { - .navbar .navbar-nav .open .dropdown-menu > .active > a, - .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); - background-repeat: repeat-x; - } -} -.alert { - text-shadow: 0 1px 0 rgba(255, 255, 255, .2); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); -} -.alert-success { - background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); - background-repeat: repeat-x; - border-color: #b2dba1; -} -.alert-info { - background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); - background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); - background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); - background-repeat: repeat-x; - border-color: #9acfea; -} -.alert-warning { - background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); - background-repeat: repeat-x; - border-color: #f5e79e; -} -.alert-danger { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); - background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); - background-repeat: repeat-x; - border-color: #dca7a7; -} -.progress { - background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); - background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); - background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar { - background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); - background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-success { - background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); - background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); - background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-info { - background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); - background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); - background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-warning { - background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); - background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); - background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-danger { - background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); - background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); - background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.list-group { - border-radius: 4px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); - box-shadow: 0 1px 2px rgba(0, 0, 0, .075); -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - text-shadow: 0 -1px 0 #286090; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); - background-repeat: repeat-x; - border-color: #2b669a; -} -.list-group-item.active .badge, -.list-group-item.active:hover .badge, -.list-group-item.active:focus .badge { - text-shadow: none; -} -.panel { - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); - box-shadow: 0 1px 2px rgba(0, 0, 0, .05); -} -.panel-default > .panel-heading { - background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); - background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); - background-repeat: repeat-x; -} -.panel-primary > .panel-heading { - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); - background-repeat: repeat-x; -} -.panel-success > .panel-heading { - background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); - background-repeat: repeat-x; -} -.panel-info > .panel-heading { - background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); - background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); - background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); - background-repeat: repeat-x; -} -.panel-warning > .panel-heading { - background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); - background-repeat: repeat-x; -} -.panel-danger > .panel-heading { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); - background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); - background-repeat: repeat-x; -} -.well { - background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); - background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); - background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); - background-repeat: repeat-x; - border-color: #dcdcdc; - -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); -} -/*# sourceMappingURL=bootstrap-theme.css.map */ diff --git a/wwwroot/help/css/bootstrap-theme.css.map b/wwwroot/help/css/bootstrap-theme.css.map deleted file mode 100644 index 21e19101e1..0000000000 --- a/wwwroot/help/css/bootstrap-theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAAA;;;;GAIG;ACeH;;;;;;EAME,yCAAA;EC2CA,4FAAA;EACQ,oFAAA;CFvDT;ACgBC;;;;;;;;;;;;ECsCA,yDAAA;EACQ,iDAAA;CFxCT;ACMC;;;;;;;;;;;;;;;;;;ECiCA,yBAAA;EACQ,iBAAA;CFnBT;AC/BD;;;;;;EAuBI,kBAAA;CDgBH;ACyBC;;EAEE,uBAAA;CDvBH;AC4BD;EErEI,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;EAuC2C,0BAAA;EAA2B,mBAAA;CDjBvE;ACpBC;;EAEE,0BAAA;EACA,6BAAA;CDsBH;ACnBC;;EAEE,0BAAA;EACA,sBAAA;CDqBH;ACfG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6BL;ACbD;EEtEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8DD;AC5DC;;EAEE,0BAAA;EACA,6BAAA;CD8DH;AC3DC;;EAEE,0BAAA;EACA,sBAAA;CD6DH;ACvDG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqEL;ACpDD;EEvEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsGD;ACpGC;;EAEE,0BAAA;EACA,6BAAA;CDsGH;ACnGC;;EAEE,0BAAA;EACA,sBAAA;CDqGH;AC/FG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6GL;AC3FD;EExEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ID;AC5IC;;EAEE,0BAAA;EACA,6BAAA;CD8IH;AC3IC;;EAEE,0BAAA;EACA,sBAAA;CD6IH;ACvIG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqJL;AClID;EEzEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsLD;ACpLC;;EAEE,0BAAA;EACA,6BAAA;CDsLH;ACnLC;;EAEE,0BAAA;EACA,sBAAA;CDqLH;AC/KG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6LL;ACzKD;EE1EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ND;AC5NC;;EAEE,0BAAA;EACA,6BAAA;CD8NH;AC3NC;;EAEE,0BAAA;EACA,sBAAA;CD6NH;ACvNG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqOL;AC1MD;;EClCE,mDAAA;EACQ,2CAAA;CFgPT;ACrMD;;EE3FI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF0FF,0BAAA;CD2MD;ACzMD;;;EEhGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFgGF,0BAAA;CD+MD;ACtMD;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EH+HA,mBAAA;ECjEA,4FAAA;EACQ,oFAAA;CF8QT;ACjND;;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,yDAAA;EACQ,iDAAA;CFwRT;AC9MD;;EAEE,+CAAA;CDgND;AC5MD;EEhII,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EHkJA,mBAAA;CDkND;ACrND;;EEhII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,wDAAA;EACQ,gDAAA;CF+ST;AC/ND;;EAYI,0CAAA;CDuNH;AClND;;;EAGE,iBAAA;CDoND;AC/LD;EAfI;;;IAGE,YAAA;IE7JF,yEAAA;IACA,oEAAA;IACA,8FAAA;IAAA,uEAAA;IACA,4BAAA;IACA,uHAAA;GH+WD;CACF;AC3MD;EACE,8CAAA;EC3HA,2FAAA;EACQ,mFAAA;CFyUT;ACnMD;EEtLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+MD;AC1MD;EEvLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuND;ACjND;EExLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+ND;ACxND;EEzLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuOD;ACxND;EEjMI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH4ZH;ACrND;EE3MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHmaH;AC3ND;EE5MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH0aH;ACjOD;EE7MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHibH;ACvOD;EE9MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHwbH;AC7OD;EE/MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH+bH;AChPD;EElLI,8MAAA;EACA,yMAAA;EACA,sMAAA;CHqaH;AC5OD;EACE,mBAAA;EC9KA,mDAAA;EACQ,2CAAA;CF6ZT;AC7OD;;;EAGE,8BAAA;EEnOE,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFiOF,sBAAA;CDmPD;ACxPD;;;EAQI,kBAAA;CDqPH;AC3OD;ECnME,kDAAA;EACQ,0CAAA;CFibT;ACrOD;EE5PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHoeH;AC3OD;EE7PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH2eH;ACjPD;EE9PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHkfH;ACvPD;EE/PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHyfH;AC7PD;EEhQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHggBH;ACnQD;EEjQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHugBH;ACnQD;EExQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFsQF,sBAAA;EC3NA,0FAAA;EACQ,kFAAA;CFqeT","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} \ No newline at end of file diff --git a/wwwroot/help/css/bootstrap-theme.min.css b/wwwroot/help/css/bootstrap-theme.min.css deleted file mode 100644 index dc95d8e4e4..0000000000 --- a/wwwroot/help/css/bootstrap-theme.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} -/*# sourceMappingURL=bootstrap-theme.min.css.map */ \ No newline at end of file diff --git a/wwwroot/help/css/bootstrap-theme.min.css.map b/wwwroot/help/css/bootstrap-theme.min.css.map deleted file mode 100644 index 2c6b65afc0..0000000000 --- a/wwwroot/help/css/bootstrap-theme.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":";;;;AAmBA,YAAA,aAAA,UAAA,aAAA,aAAA,aAME,YAAA,EAAA,KAAA,EAAA,eC2CA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBDvCR,mBAAA,mBAAA,oBAAA,oBAAA,iBAAA,iBAAA,oBAAA,oBAAA,oBAAA,oBAAA,oBAAA,oBCsCA,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBDlCR,qBAAA,sBAAA,sBAAA,uBAAA,mBAAA,oBAAA,sBAAA,uBAAA,sBAAA,uBAAA,sBAAA,uBAAA,+BAAA,gCAAA,6BAAA,gCAAA,gCAAA,gCCiCA,mBAAA,KACQ,WAAA,KDlDV,mBAAA,oBAAA,iBAAA,oBAAA,oBAAA,oBAuBI,YAAA,KAyCF,YAAA,YAEE,iBAAA,KAKJ,aErEI,YAAA,EAAA,IAAA,EAAA,KACA,iBAAA,iDACA,iBAAA,4CAAA,iBAAA,qEAEA,iBAAA,+CCnBF,OAAA,+GH4CA,OAAA,0DACA,kBAAA,SAuC2C,aAAA,QAA2B,aAAA,KArCtE,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAgBN,aEtEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAiBN,aEvEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAkBN,UExEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,gBAAA,gBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,iBAAA,iBAEE,iBAAA,QACA,aAAA,QAMA,mBAAA,0BAAA,yBAAA,0BAAA,yBAAA,yBAAA,oBAAA,2BAAA,0BAAA,2BAAA,0BAAA,0BAAA,6BAAA,oCAAA,mCAAA,oCAAA,mCAAA,mCAME,iBAAA,QACA,iBAAA,KAmBN,aEzEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAoBN,YE1EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,kBAAA,kBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,mBAAA,mBAEE,iBAAA,QACA,aAAA,QAMA,qBAAA,4BAAA,2BAAA,4BAAA,2BAAA,2BAAA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,+BAAA,sCAAA,qCAAA,sCAAA,qCAAA,qCAME,iBAAA,QACA,iBAAA,KA2BN,eAAA,WClCE,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBD2CV,0BAAA,0BE3FI,iBAAA,QACA,iBAAA,oDACA,iBAAA,+CAAA,iBAAA,wEACA,iBAAA,kDACA,OAAA,+GF0FF,kBAAA,SAEF,yBAAA,+BAAA,+BEhGI,iBAAA,QACA,iBAAA,oDACA,iBAAA,+CAAA,iBAAA,wEACA,iBAAA,kDACA,OAAA,+GFgGF,kBAAA,SASF,gBE7GI,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,OAAA,0DCnBF,kBAAA,SH+HA,cAAA,ICjEA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBD6DV,sCAAA,oCE7GI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD2CF,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBD0EV,cAAA,iBAEE,YAAA,EAAA,IAAA,EAAA,sBAIF,gBEhII,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,OAAA,0DCnBF,kBAAA,SHkJA,cAAA,IAHF,sCAAA,oCEhII,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD2CF,mBAAA,MAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,gBDgFV,8BAAA,iCAYI,YAAA,EAAA,KAAA,EAAA,gBAKJ,qBAAA,kBAAA,mBAGE,cAAA,EAqBF,yBAfI,mDAAA,yDAAA,yDAGE,MAAA,KE7JF,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,UFqKJ,OACE,YAAA,EAAA,IAAA,EAAA,qBC3HA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,gBDsIV,eEtLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAKF,YEvLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAMF,eExLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAOF,cEzLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAeF,UEjMI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFuMJ,cE3MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFwMJ,sBE5MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFyMJ,mBE7MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF0MJ,sBE9MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF2MJ,qBE/MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF+MJ,sBElLI,iBAAA,yKACA,iBAAA,oKACA,iBAAA,iKFyLJ,YACE,cAAA,IC9KA,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBDgLV,wBAAA,8BAAA,8BAGE,YAAA,EAAA,KAAA,EAAA,QEnOE,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFiOF,aAAA,QALF,+BAAA,qCAAA,qCAQI,YAAA,KAUJ,OCnME,mBAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,EAAA,IAAA,IAAA,gBD4MV,8BE5PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFyPJ,8BE7PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF0PJ,8BE9PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF2PJ,2BE/PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF4PJ,8BEhQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF6PJ,6BEjQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoQJ,MExQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFsQF,aAAA,QC3NA,mBAAA,MAAA,EAAA,IAAA,IAAA,gBAAA,EAAA,IAAA,EAAA,qBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,gBAAA,EAAA,IAAA,EAAA"} \ No newline at end of file diff --git a/wwwroot/help/css/bootstrap.css b/wwwroot/help/css/bootstrap.css deleted file mode 100644 index 42c79d6e45..0000000000 --- a/wwwroot/help/css/bootstrap.css +++ /dev/null @@ -1,6760 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template { - display: none; -} -a { - background-color: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -h1 { - margin: .67em 0; - font-size: 2em; -} -mark { - color: #000; - background: #ff0; -} -small { - font-size: 80%; -} -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sup { - top: -.5em; -} -sub { - bottom: -.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 1em 40px; -} -hr { - height: 0; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; -} -pre { - overflow: auto; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -button, -input, -optgroup, -select, -textarea { - margin: 0; - font: inherit; - color: inherit; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - padding: 0; - border: 0; -} -input { - line-height: normal; -} -input[type="checkbox"], -input[type="radio"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} -input[type="search"] { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - -webkit-appearance: textfield; -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -fieldset { - padding: .35em .625em .75em; - margin: 0 2px; - border: 1px solid #c0c0c0; -} -legend { - padding: 0; - border: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-spacing: 0; - border-collapse: collapse; -} -td, -th { - padding: 0; -} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - color: #000 !important; - text-shadow: none !important; - background: transparent !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - a, - a:visited { - text-decoration: underline; - } - a[href]:after { - content: " (" attr(href) ")"; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - pre, - blockquote { - border: 1px solid #999; - - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - img { - max-width: 100% !important; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - .navbar { - display: none; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\002a"; -} -.glyphicon-plus:before { - content: "\002b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333; - background-color: #fff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: 4px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -[role="button"] { - cursor: pointer; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover, -a.text-info:focus { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - margin-left: -5px; - list-style: none; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - text-align: right; - border-right: 5px solid #eee; - border-left: 0; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - -webkit-box-shadow: none; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - color: #333; - word-break: break-all; - word-wrap: break-word; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.row { - margin-right: -15px; - margin-left: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - display: table-column; - float: none; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - display: table-cell; - float: none; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - min-height: .01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - background-color: #eee; - opacity: 1; -} -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm, - .input-group-sm input[type="date"], - .input-group-sm input[type="time"], - .input-group-sm input[type="datetime-local"], - .input-group-sm input[type="month"] { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg, - .input-group-lg input[type="date"], - .input-group-lg input[type="time"], - .input-group-lg input[type="datetime-local"], - .input-group-lg input[type="month"] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-top: 4px \9; - margin-left: -20px; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - vertical-align: middle; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-right: 0; - padding-left: 0; -} -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} -.input-lg { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-lg { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - padding-top: 7px; - margin-bottom: 0; - text-align: right; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} -.btn { - display: inline-block; - padding: 6px 12px; - margin-bottom: 0; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, -.btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; - opacity: .65; -} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; -} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, -.btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, -.btn-default.active:hover, -.open > .dropdown-toggle.btn-default:hover, -.btn-default:active:focus, -.btn-default.active:focus, -.open > .dropdown-toggle.btn-default:focus, -.btn-default:active.focus, -.btn-default.active.focus, -.open > .dropdown-toggle.btn-default.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, -.btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active:hover, -.btn-primary.active:hover, -.open > .dropdown-toggle.btn-primary:hover, -.btn-primary:active:focus, -.btn-primary.active:focus, -.open > .dropdown-toggle.btn-primary:focus, -.btn-primary:active.focus, -.btn-primary.active.focus, -.open > .dropdown-toggle.btn-primary.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, -.btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active:hover, -.btn-success.active:hover, -.open > .dropdown-toggle.btn-success:hover, -.btn-success:active:focus, -.btn-success.active:focus, -.open > .dropdown-toggle.btn-success:focus, -.btn-success:active.focus, -.btn-success.active.focus, -.open > .dropdown-toggle.btn-success.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, -.btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active:hover, -.btn-info.active:hover, -.open > .dropdown-toggle.btn-info:hover, -.btn-info:active:focus, -.btn-info.active:focus, -.open > .dropdown-toggle.btn-info:focus, -.btn-info:active.focus, -.btn-info.active.focus, -.open > .dropdown-toggle.btn-info.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, -.btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active:hover, -.btn-warning.active:hover, -.open > .dropdown-toggle.btn-warning:hover, -.btn-warning:active:focus, -.btn-warning.active:focus, -.open > .dropdown-toggle.btn-warning:focus, -.btn-warning:active.focus, -.btn-warning.active.focus, -.open > .dropdown-toggle.btn-warning.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active:hover, -.btn-danger.active:hover, -.open > .dropdown-toggle.btn-danger:hover, -.btn-danger:active:focus, -.btn-danger.active:focus, -.open > .dropdown-toggle.btn-danger:focus, -.btn-danger:active.focus, -.btn-danger.active.focus, -.open > .dropdown-toggle.btn-danger.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} -.btn-link { - font-weight: normal; - color: #337ab7; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height, visibility; - -o-transition-property: height, visibility; - transition-property: height, visibility; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropup, -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - text-align: left; - list-style: none; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); - box-shadow: 0 6px 12px rgba(0, 0, 0, .175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857143; - color: #333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #777; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - cursor: not-allowed; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - right: 0; - left: auto; -} -.dropdown-menu-left { - right: auto; - left: 0; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857143; - color: #777; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - content: ""; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - right: auto; - left: 0; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-right: 8px; - padding-left: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - display: table-cell; - float: none; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-right: 0; - padding-left: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #eee; -} -.nav > li.disabled > a { - color: #777; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #eee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - -webkit-overflow-scrolling: touch; - border-top: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - padding: 9px 10px; - margin-top: 8px; - margin-right: 15px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} -.navbar-form { - padding: 10px 15px; - margin-top: 8px; - margin-right: -15px; - margin-bottom: 8px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - padding-top: 0; - padding-bottom: 0; - margin-right: 0; - margin-left: 0; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - color: #555; - background-color: #e7e7e7; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} -.navbar-inverse { - background-color: #222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #080808; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - color: #fff; - background-color: #080808; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: "/\00a0"; -} -.breadcrumb > .active { - color: #777; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - z-index: 2; - color: #23527c; - background-color: #eee; - border-color: #ddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; -} -.pager { - padding-left: 0; - margin: 20px 0; - text-align: center; - list-style: none; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777; - cursor: not-allowed; - background-color: #fff; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, -.container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; - transition: border .2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-right: auto; - margin-left: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} -.thumbnail .caption { - padding: 9px; - color: #333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@-o-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - height: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; - transition: width .6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - -webkit-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -} -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media, -.media-body { - overflow: hidden; - zoom: 1; -} -.media-body { - width: 10000px; -} -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - padding-left: 0; - margin-bottom: 20px; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, -button.list-group-item:hover, -a.list-group-item:focus, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} -button.list-group-item { - width: 100%; - text-align: left; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - color: #777; - cursor: not-allowed; - background-color: #eee; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #777; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -button.list-group-item-success:hover, -a.list-group-item-success:focus, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -button.list-group-item-success.active, -a.list-group-item-success.active:hover, -button.list-group-item-success.active:hover, -a.list-group-item-success.active:focus, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -button.list-group-item-info:hover, -a.list-group-item-info:focus, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -button.list-group-item-info.active, -a.list-group-item-info.active:hover, -button.list-group-item-info.active:hover, -a.list-group-item-info.active:focus, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -button.list-group-item-warning:hover, -a.list-group-item-warning:focus, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -button.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -button.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -button.list-group-item-danger:hover, -a.list-group-item-danger:focus, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -button.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -button.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: 0 1px 1px rgba(0, 0, 0, .05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - margin-bottom: 0; - border: 0; -} -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, .15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: .2; -} -.close:hover, -.close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: .5; -} -button.close { - -webkit-appearance: none; - padding: 0; - cursor: pointer; - background: transparent; - border: 0; -} -.modal-open { - overflow: hidden; -} -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - outline: 0; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); - box-shadow: 0 3px 9px rgba(0, 0, 0, .5); -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - filter: alpha(opacity=0); - opacity: 0; -} -.modal-backdrop.in { - filter: alpha(opacity=50); - opacity: .5; -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.42857143; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - box-shadow: 0 5px 15px rgba(0, 0, 0, .5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - filter: alpha(opacity=0); - opacity: 0; - - line-break: auto; -} -.tooltip.in { - filter: alpha(opacity=90); - opacity: .9; -} -.tooltip.top { - padding: 5px 0; - margin-top: -3px; -} -.tooltip.right { - padding: 0 5px; - margin-left: 3px; -} -.tooltip.bottom { - padding: 5px 0; - margin-top: 3px; -} -.tooltip.left { - padding: 0 5px; - margin-left: -3px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - - line-break: auto; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - padding: 8px 14px; - margin: 0; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - content: ""; - border-width: 10px; -} -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, .25); - border-bottom-width: 0; -} -.popover.top > .arrow:after { - bottom: 1px; - margin-left: -10px; - content: " "; - border-top-color: #fff; - border-bottom-width: 0; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, .25); - border-left-width: 0; -} -.popover.right > .arrow:after { - bottom: -10px; - left: 1px; - content: " "; - border-right-color: #fff; - border-left-width: 0; -} -.popover.bottom > .arrow { - top: -11px; - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, .25); -} -.popover.bottom > .arrow:after { - top: 1px; - margin-left: -10px; - content: " "; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, .25); -} -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: " "; - border-right-width: 0; - border-left-color: #fff; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: .5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control:hover, -.carousel-control:focus { - color: #fff; - text-decoration: none; - filter: alpha(opacity=90); - outline: 0; - opacity: .9; -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - font-family: serif; - line-height: 1; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - padding-left: 0; - margin-left: -30%; - text-align: center; - list-style: none; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); - border: 1px solid #fff; - border-radius: 10px; -} -.carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; - background-color: #fff; -} -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; - } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-header:before, -.modal-header:after, -.modal-footer:before, -.modal-footer:after { - display: table; - content: " "; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-header:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table !important; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table !important; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table !important; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table !important; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table !important; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} -/*# sourceMappingURL=bootstrap.css.map */ diff --git a/wwwroot/help/css/bootstrap.css.map b/wwwroot/help/css/bootstrap.css.map deleted file mode 100644 index 09f8cda78a..0000000000 --- a/wwwroot/help/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,4EAA4E;ACG5E;EACE,wBAAA;EACA,2BAAA;EACA,+BAAA;CDDD;ACQD;EACE,UAAA;CDND;ACmBD;;;;;;;;;;;;;EAaE,eAAA;CDjBD;ACyBD;;;;EAIE,sBAAA;EACA,yBAAA;CDvBD;AC+BD;EACE,cAAA;EACA,UAAA;CD7BD;ACqCD;;EAEE,cAAA;CDnCD;AC6CD;EACE,8BAAA;CD3CD;ACmDD;;EAEE,WAAA;CDjDD;AC2DD;EACE,0BAAA;CDzDD;ACgED;;EAEE,kBAAA;CD9DD;ACqED;EACE,mBAAA;CDnED;AC2ED;EACE,eAAA;EACA,iBAAA;CDzED;ACgFD;EACE,iBAAA;EACA,YAAA;CD9ED;ACqFD;EACE,eAAA;CDnFD;AC0FD;;EAEE,eAAA;EACA,eAAA;EACA,mBAAA;EACA,yBAAA;CDxFD;AC2FD;EACE,YAAA;CDzFD;AC4FD;EACE,gBAAA;CD1FD;ACoGD;EACE,UAAA;CDlGD;ACyGD;EACE,iBAAA;CDvGD;ACiHD;EACE,iBAAA;CD/GD;ACsHD;EACE,gCAAA;KAAA,6BAAA;UAAA,wBAAA;EACA,UAAA;CDpHD;AC2HD;EACE,eAAA;CDzHD;ACgID;;;;EAIE,kCAAA;EACA,eAAA;CD9HD;ACgJD;;;;;EAKE,eAAA;EACA,cAAA;EACA,UAAA;CD9ID;ACqJD;EACE,kBAAA;CDnJD;AC6JD;;EAEE,qBAAA;CD3JD;ACsKD;;;;EAIE,2BAAA;EACA,gBAAA;CDpKD;AC2KD;;EAEE,gBAAA;CDzKD;ACgLD;;EAEE,UAAA;EACA,WAAA;CD9KD;ACsLD;EACE,oBAAA;CDpLD;AC+LD;;EAEE,+BAAA;KAAA,4BAAA;UAAA,uBAAA;EACA,WAAA;CD7LD;ACsMD;;EAEE,aAAA;CDpMD;AC4MD;EACE,8BAAA;EACA,gCAAA;KAAA,6BAAA;UAAA,wBAAA;CD1MD;ACmND;;EAEE,yBAAA;CDjND;ACwND;EACE,0BAAA;EACA,cAAA;EACA,+BAAA;CDtND;AC8ND;EACE,UAAA;EACA,WAAA;CD5ND;ACmOD;EACE,eAAA;CDjOD;ACyOD;EACE,kBAAA;CDvOD;ACiPD;EACE,0BAAA;EACA,kBAAA;CD/OD;ACkPD;;EAEE,WAAA;CDhPD;AACD,qFAAqF;AElFrF;EA7FI;;;IAGI,mCAAA;IACA,uBAAA;IACA,oCAAA;YAAA,4BAAA;IACA,6BAAA;GFkLL;EE/KC;;IAEI,2BAAA;GFiLL;EE9KC;IACI,6BAAA;GFgLL;EE7KC;IACI,8BAAA;GF+KL;EE1KC;;IAEI,YAAA;GF4KL;EEzKC;;IAEI,uBAAA;IACA,yBAAA;GF2KL;EExKC;IACI,4BAAA;GF0KL;EEvKC;;IAEI,yBAAA;GFyKL;EEtKC;IACI,2BAAA;GFwKL;EErKC;;;IAGI,WAAA;IACA,UAAA;GFuKL;EEpKC;;IAEI,wBAAA;GFsKL;EEhKC;IACI,cAAA;GFkKL;EEhKC;;IAGQ,kCAAA;GFiKT;EE9JC;IACI,uBAAA;GFgKL;EE7JC;IACI,qCAAA;GF+JL;EEhKC;;IAKQ,kCAAA;GF+JT;EE5JC;;IAGQ,kCAAA;GF6JT;CACF;AGnPD;EACE,oCAAA;EACA,sDAAA;EACA,gYAAA;CHqPD;AG7OD;EACE,mBAAA;EACA,SAAA;EACA,sBAAA;EACA,oCAAA;EACA,mBAAA;EACA,oBAAA;EACA,eAAA;EACA,oCAAA;EACA,mCAAA;CH+OD;AG3OmC;EAAW,iBAAA;CH8O9C;AG7OmC;EAAW,iBAAA;CHgP9C;AG9OmC;;EAAW,iBAAA;CHkP9C;AGjPmC;EAAW,iBAAA;CHoP9C;AGnPmC;EAAW,iBAAA;CHsP9C;AGrPmC;EAAW,iBAAA;CHwP9C;AGvPmC;EAAW,iBAAA;CH0P9C;AGzPmC;EAAW,iBAAA;CH4P9C;AG3PmC;EAAW,iBAAA;CH8P9C;AG7PmC;EAAW,iBAAA;CHgQ9C;AG/PmC;EAAW,iBAAA;CHkQ9C;AGjQmC;EAAW,iBAAA;CHoQ9C;AGnQmC;EAAW,iBAAA;CHsQ9C;AGrQmC;EAAW,iBAAA;CHwQ9C;AGvQmC;EAAW,iBAAA;CH0Q9C;AGzQmC;EAAW,iBAAA;CH4Q9C;AG3QmC;EAAW,iBAAA;CH8Q9C;AG7QmC;EAAW,iBAAA;CHgR9C;AG/QmC;EAAW,iBAAA;CHkR9C;AGjRmC;EAAW,iBAAA;CHoR9C;AGnRmC;EAAW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;CHwtB9C;AGvtBmC;EAAW,iBAAA;CH0tB9C;AGztBmC;EAAW,iBAAA;CH4tB9C;AG3tBmC;EAAW,iBAAA;CH8tB9C;AG7tBmC;EAAW,iBAAA;CHguB9C;AG/tBmC;EAAW,iBAAA;CHkuB9C;AGjuBmC;EAAW,iBAAA;CHouB9C;AGnuBmC;EAAW,iBAAA;CHsuB9C;AGruBmC;EAAW,iBAAA;CHwuB9C;AGvuBmC;EAAW,iBAAA;CH0uB9C;AGzuBmC;EAAW,iBAAA;CH4uB9C;AG3uBmC;EAAW,iBAAA;CH8uB9C;AG7uBmC;EAAW,iBAAA;CHgvB9C;AIthCD;ECgEE,+BAAA;EACG,4BAAA;EACK,uBAAA;CLy9BT;AIxhCD;;EC6DE,+BAAA;EACG,4BAAA;EACK,uBAAA;CL+9BT;AIthCD;EACE,gBAAA;EACA,8CAAA;CJwhCD;AIrhCD;EACE,4DAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;CJuhCD;AInhCD;;;;EAIE,qBAAA;EACA,mBAAA;EACA,qBAAA;CJqhCD;AI/gCD;EACE,eAAA;EACA,sBAAA;CJihCD;AI/gCC;;EAEE,eAAA;EACA,2BAAA;CJihCH;AI9gCC;EErDA,qBAAA;EAEA,2CAAA;EACA,qBAAA;CNqkCD;AIxgCD;EACE,UAAA;CJ0gCD;AIpgCD;EACE,uBAAA;CJsgCD;AIlgCD;;;;;EGvEE,eAAA;EACA,gBAAA;EACA,aAAA;CPglCD;AItgCD;EACE,mBAAA;CJwgCD;AIlgCD;EACE,aAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;EC6FA,yCAAA;EACK,oCAAA;EACG,iCAAA;EEvLR,sBAAA;EACA,gBAAA;EACA,aAAA;CPgmCD;AIlgCD;EACE,mBAAA;CJogCD;AI9/BD;EACE,iBAAA;EACA,oBAAA;EACA,UAAA;EACA,8BAAA;CJggCD;AIx/BD;EACE,mBAAA;EACA,WAAA;EACA,YAAA;EACA,aAAA;EACA,WAAA;EACA,iBAAA;EACA,uBAAA;EACA,UAAA;CJ0/BD;AIl/BC;;EAEE,iBAAA;EACA,YAAA;EACA,aAAA;EACA,UAAA;EACA,kBAAA;EACA,WAAA;CJo/BH;AIz+BD;EACE,gBAAA;CJ2+BD;AQloCD;;;;;;;;;;;;EAEE,qBAAA;EACA,iBAAA;EACA,iBAAA;EACA,eAAA;CR8oCD;AQnpCD;;;;;;;;;;;;;;;;;;;;;;;;EASI,oBAAA;EACA,eAAA;EACA,eAAA;CRoqCH;AQhqCD;;;;;;EAGE,iBAAA;EACA,oBAAA;CRqqCD;AQzqCD;;;;;;;;;;;;EAQI,eAAA;CR+qCH;AQ5qCD;;;;;;EAGE,iBAAA;EACA,oBAAA;CRirCD;AQrrCD;;;;;;;;;;;;EAQI,eAAA;CR2rCH;AQvrCD;;EAAU,gBAAA;CR2rCT;AQ1rCD;;EAAU,gBAAA;CR8rCT;AQ7rCD;;EAAU,gBAAA;CRisCT;AQhsCD;;EAAU,gBAAA;CRosCT;AQnsCD;;EAAU,gBAAA;CRusCT;AQtsCD;;EAAU,gBAAA;CR0sCT;AQpsCD;EACE,iBAAA;CRssCD;AQnsCD;EACE,oBAAA;EACA,gBAAA;EACA,iBAAA;EACA,iBAAA;CRqsCD;AQhsCD;EAwOA;IA1OI,gBAAA;GRssCD;CACF;AQ9rCD;;EAEE,eAAA;CRgsCD;AQ7rCD;;EAEE,0BAAA;EACA,cAAA;CR+rCD;AQ3rCD;EAAuB,iBAAA;CR8rCtB;AQ7rCD;EAAuB,kBAAA;CRgsCtB;AQ/rCD;EAAuB,mBAAA;CRksCtB;AQjsCD;EAAuB,oBAAA;CRosCtB;AQnsCD;EAAuB,oBAAA;CRssCtB;AQnsCD;EAAuB,0BAAA;CRssCtB;AQrsCD;EAAuB,0BAAA;CRwsCtB;AQvsCD;EAAuB,2BAAA;CR0sCtB;AQvsCD;EACE,eAAA;CRysCD;AQvsCD;ECrGE,eAAA;CT+yCD;AS9yCC;;EAEE,eAAA;CTgzCH;AQ3sCD;ECxGE,eAAA;CTszCD;ASrzCC;;EAEE,eAAA;CTuzCH;AQ/sCD;EC3GE,eAAA;CT6zCD;AS5zCC;;EAEE,eAAA;CT8zCH;AQntCD;EC9GE,eAAA;CTo0CD;ASn0CC;;EAEE,eAAA;CTq0CH;AQvtCD;ECjHE,eAAA;CT20CD;AS10CC;;EAEE,eAAA;CT40CH;AQvtCD;EAGE,YAAA;EE3HA,0BAAA;CVm1CD;AUl1CC;;EAEE,0BAAA;CVo1CH;AQztCD;EE9HE,0BAAA;CV01CD;AUz1CC;;EAEE,0BAAA;CV21CH;AQ7tCD;EEjIE,0BAAA;CVi2CD;AUh2CC;;EAEE,0BAAA;CVk2CH;AQjuCD;EEpIE,0BAAA;CVw2CD;AUv2CC;;EAEE,0BAAA;CVy2CH;AQruCD;EEvIE,0BAAA;CV+2CD;AU92CC;;EAEE,0BAAA;CVg3CH;AQpuCD;EACE,oBAAA;EACA,oBAAA;EACA,iCAAA;CRsuCD;AQ9tCD;;EAEE,cAAA;EACA,oBAAA;CRguCD;AQnuCD;;;;EAMI,iBAAA;CRmuCH;AQ5tCD;EACE,gBAAA;EACA,iBAAA;CR8tCD;AQ1tCD;EALE,gBAAA;EACA,iBAAA;EAMA,kBAAA;CR6tCD;AQ/tCD;EAKI,sBAAA;EACA,kBAAA;EACA,mBAAA;CR6tCH;AQxtCD;EACE,cAAA;EACA,oBAAA;CR0tCD;AQxtCD;;EAEE,wBAAA;CR0tCD;AQxtCD;EACE,kBAAA;CR0tCD;AQxtCD;EACE,eAAA;CR0tCD;AQjsCD;EA6EA;IAvFM,YAAA;IACA,aAAA;IACA,YAAA;IACA,kBAAA;IGtNJ,iBAAA;IACA,wBAAA;IACA,oBAAA;GXs6CC;EQ9nCH;IAhFM,mBAAA;GRitCH;CACF;AQxsCD;;EAGE,aAAA;EACA,kCAAA;CRysCD;AQvsCD;EACE,eAAA;EA9IqB,0BAAA;CRw1CtB;AQrsCD;EACE,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,+BAAA;CRusCD;AQlsCG;;;EACE,iBAAA;CRssCL;AQhtCD;;;EAmBI,eAAA;EACA,eAAA;EACA,wBAAA;EACA,eAAA;CRksCH;AQhsCG;;;EACE,uBAAA;CRosCL;AQ5rCD;;EAEE,oBAAA;EACA,gBAAA;EACA,gCAAA;EACA,eAAA;EACA,kBAAA;CR8rCD;AQxrCG;;;;;;EAAW,YAAA;CRgsCd;AQ/rCG;;;;;;EACE,uBAAA;CRssCL;AQhsCD;EACE,oBAAA;EACA,mBAAA;EACA,wBAAA;CRksCD;AYx+CD;;;;EAIE,+DAAA;CZ0+CD;AYt+CD;EACE,iBAAA;EACA,eAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CZw+CD;AYp+CD;EACE,iBAAA;EACA,eAAA;EACA,YAAA;EACA,uBAAA;EACA,mBAAA;EACA,uDAAA;UAAA,+CAAA;CZs+CD;AY5+CD;EASI,WAAA;EACA,gBAAA;EACA,kBAAA;EACA,yBAAA;UAAA,iBAAA;CZs+CH;AYj+CD;EACE,eAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,sBAAA;EACA,sBAAA;EACA,eAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;CZm+CD;AY9+CD;EAeI,WAAA;EACA,mBAAA;EACA,eAAA;EACA,sBAAA;EACA,8BAAA;EACA,iBAAA;CZk+CH;AY79CD;EACE,kBAAA;EACA,mBAAA;CZ+9CD;AazhDD;ECHE,mBAAA;EACA,kBAAA;EACA,mBAAA;EACA,oBAAA;Cd+hDD;AazhDC;EAqEF;IAvEI,aAAA;Gb+hDD;CACF;Aa3hDC;EAkEF;IApEI,aAAA;GbiiDD;CACF;Aa7hDD;EA+DA;IAjEI,cAAA;GbmiDD;CACF;Aa1hDD;ECvBE,mBAAA;EACA,kBAAA;EACA,mBAAA;EACA,oBAAA;CdojDD;AavhDD;ECvBE,mBAAA;EACA,oBAAA;CdijDD;AejjDG;EACE,mBAAA;EAEA,gBAAA;EAEA,mBAAA;EACA,oBAAA;CfijDL;AejiDG;EACE,YAAA;CfmiDL;Ae5hDC;EACE,YAAA;Cf8hDH;Ae/hDC;EACE,oBAAA;CfiiDH;AeliDC;EACE,oBAAA;CfoiDH;AeriDC;EACE,WAAA;CfuiDH;AexiDC;EACE,oBAAA;Cf0iDH;Ae3iDC;EACE,oBAAA;Cf6iDH;Ae9iDC;EACE,WAAA;CfgjDH;AejjDC;EACE,oBAAA;CfmjDH;AepjDC;EACE,oBAAA;CfsjDH;AevjDC;EACE,WAAA;CfyjDH;Ae1jDC;EACE,oBAAA;Cf4jDH;Ae7jDC;EACE,mBAAA;Cf+jDH;AejjDC;EACE,YAAA;CfmjDH;AepjDC;EACE,oBAAA;CfsjDH;AevjDC;EACE,oBAAA;CfyjDH;Ae1jDC;EACE,WAAA;Cf4jDH;Ae7jDC;EACE,oBAAA;Cf+jDH;AehkDC;EACE,oBAAA;CfkkDH;AenkDC;EACE,WAAA;CfqkDH;AetkDC;EACE,oBAAA;CfwkDH;AezkDC;EACE,oBAAA;Cf2kDH;Ae5kDC;EACE,WAAA;Cf8kDH;Ae/kDC;EACE,oBAAA;CfilDH;AellDC;EACE,mBAAA;CfolDH;AehlDC;EACE,YAAA;CfklDH;AelmDC;EACE,WAAA;CfomDH;AermDC;EACE,mBAAA;CfumDH;AexmDC;EACE,mBAAA;Cf0mDH;Ae3mDC;EACE,UAAA;Cf6mDH;Ae9mDC;EACE,mBAAA;CfgnDH;AejnDC;EACE,mBAAA;CfmnDH;AepnDC;EACE,UAAA;CfsnDH;AevnDC;EACE,mBAAA;CfynDH;Ae1nDC;EACE,mBAAA;Cf4nDH;Ae7nDC;EACE,UAAA;Cf+nDH;AehoDC;EACE,mBAAA;CfkoDH;AenoDC;EACE,kBAAA;CfqoDH;AejoDC;EACE,WAAA;CfmoDH;AernDC;EACE,kBAAA;CfunDH;AexnDC;EACE,0BAAA;Cf0nDH;Ae3nDC;EACE,0BAAA;Cf6nDH;Ae9nDC;EACE,iBAAA;CfgoDH;AejoDC;EACE,0BAAA;CfmoDH;AepoDC;EACE,0BAAA;CfsoDH;AevoDC;EACE,iBAAA;CfyoDH;Ae1oDC;EACE,0BAAA;Cf4oDH;Ae7oDC;EACE,0BAAA;Cf+oDH;AehpDC;EACE,iBAAA;CfkpDH;AenpDC;EACE,0BAAA;CfqpDH;AetpDC;EACE,yBAAA;CfwpDH;AezpDC;EACE,gBAAA;Cf2pDH;Aa3pDD;EElCI;IACE,YAAA;GfgsDH;EezrDD;IACE,YAAA;Gf2rDD;Ee5rDD;IACE,oBAAA;Gf8rDD;Ee/rDD;IACE,oBAAA;GfisDD;EelsDD;IACE,WAAA;GfosDD;EersDD;IACE,oBAAA;GfusDD;EexsDD;IACE,oBAAA;Gf0sDD;Ee3sDD;IACE,WAAA;Gf6sDD;Ee9sDD;IACE,oBAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,WAAA;GfstDD;EevtDD;IACE,oBAAA;GfytDD;Ee1tDD;IACE,mBAAA;Gf4tDD;Ee9sDD;IACE,YAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,oBAAA;GfstDD;EevtDD;IACE,WAAA;GfytDD;Ee1tDD;IACE,oBAAA;Gf4tDD;Ee7tDD;IACE,oBAAA;Gf+tDD;EehuDD;IACE,WAAA;GfkuDD;EenuDD;IACE,oBAAA;GfquDD;EetuDD;IACE,oBAAA;GfwuDD;EezuDD;IACE,WAAA;Gf2uDD;Ee5uDD;IACE,oBAAA;Gf8uDD;Ee/uDD;IACE,mBAAA;GfivDD;Ee7uDD;IACE,YAAA;Gf+uDD;Ee/vDD;IACE,WAAA;GfiwDD;EelwDD;IACE,mBAAA;GfowDD;EerwDD;IACE,mBAAA;GfuwDD;EexwDD;IACE,UAAA;Gf0wDD;Ee3wDD;IACE,mBAAA;Gf6wDD;Ee9wDD;IACE,mBAAA;GfgxDD;EejxDD;IACE,UAAA;GfmxDD;EepxDD;IACE,mBAAA;GfsxDD;EevxDD;IACE,mBAAA;GfyxDD;Ee1xDD;IACE,UAAA;Gf4xDD;Ee7xDD;IACE,mBAAA;Gf+xDD;EehyDD;IACE,kBAAA;GfkyDD;Ee9xDD;IACE,WAAA;GfgyDD;EelxDD;IACE,kBAAA;GfoxDD;EerxDD;IACE,0BAAA;GfuxDD;EexxDD;IACE,0BAAA;Gf0xDD;Ee3xDD;IACE,iBAAA;Gf6xDD;Ee9xDD;IACE,0BAAA;GfgyDD;EejyDD;IACE,0BAAA;GfmyDD;EepyDD;IACE,iBAAA;GfsyDD;EevyDD;IACE,0BAAA;GfyyDD;Ee1yDD;IACE,0BAAA;Gf4yDD;Ee7yDD;IACE,iBAAA;Gf+yDD;EehzDD;IACE,0BAAA;GfkzDD;EenzDD;IACE,yBAAA;GfqzDD;EetzDD;IACE,gBAAA;GfwzDD;CACF;AahzDD;EE3CI;IACE,YAAA;Gf81DH;Eev1DD;IACE,YAAA;Gfy1DD;Ee11DD;IACE,oBAAA;Gf41DD;Ee71DD;IACE,oBAAA;Gf+1DD;Eeh2DD;IACE,WAAA;Gfk2DD;Een2DD;IACE,oBAAA;Gfq2DD;Eet2DD;IACE,oBAAA;Gfw2DD;Eez2DD;IACE,WAAA;Gf22DD;Ee52DD;IACE,oBAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,WAAA;Gfo3DD;Eer3DD;IACE,oBAAA;Gfu3DD;Eex3DD;IACE,mBAAA;Gf03DD;Ee52DD;IACE,YAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,oBAAA;Gfo3DD;Eer3DD;IACE,WAAA;Gfu3DD;Eex3DD;IACE,oBAAA;Gf03DD;Ee33DD;IACE,oBAAA;Gf63DD;Ee93DD;IACE,WAAA;Gfg4DD;Eej4DD;IACE,oBAAA;Gfm4DD;Eep4DD;IACE,oBAAA;Gfs4DD;Eev4DD;IACE,WAAA;Gfy4DD;Ee14DD;IACE,oBAAA;Gf44DD;Ee74DD;IACE,mBAAA;Gf+4DD;Ee34DD;IACE,YAAA;Gf64DD;Ee75DD;IACE,WAAA;Gf+5DD;Eeh6DD;IACE,mBAAA;Gfk6DD;Een6DD;IACE,mBAAA;Gfq6DD;Eet6DD;IACE,UAAA;Gfw6DD;Eez6DD;IACE,mBAAA;Gf26DD;Ee56DD;IACE,mBAAA;Gf86DD;Ee/6DD;IACE,UAAA;Gfi7DD;Eel7DD;IACE,mBAAA;Gfo7DD;Eer7DD;IACE,mBAAA;Gfu7DD;Eex7DD;IACE,UAAA;Gf07DD;Ee37DD;IACE,mBAAA;Gf67DD;Ee97DD;IACE,kBAAA;Gfg8DD;Ee57DD;IACE,WAAA;Gf87DD;Eeh7DD;IACE,kBAAA;Gfk7DD;Een7DD;IACE,0BAAA;Gfq7DD;Eet7DD;IACE,0BAAA;Gfw7DD;Eez7DD;IACE,iBAAA;Gf27DD;Ee57DD;IACE,0BAAA;Gf87DD;Ee/7DD;IACE,0BAAA;Gfi8DD;Eel8DD;IACE,iBAAA;Gfo8DD;Eer8DD;IACE,0BAAA;Gfu8DD;Eex8DD;IACE,0BAAA;Gf08DD;Ee38DD;IACE,iBAAA;Gf68DD;Ee98DD;IACE,0BAAA;Gfg9DD;Eej9DD;IACE,yBAAA;Gfm9DD;Eep9DD;IACE,gBAAA;Gfs9DD;CACF;Aa38DD;EE9CI;IACE,YAAA;Gf4/DH;Eer/DD;IACE,YAAA;Gfu/DD;Eex/DD;IACE,oBAAA;Gf0/DD;Ee3/DD;IACE,oBAAA;Gf6/DD;Ee9/DD;IACE,WAAA;GfggED;EejgED;IACE,oBAAA;GfmgED;EepgED;IACE,oBAAA;GfsgED;EevgED;IACE,WAAA;GfygED;Ee1gED;IACE,oBAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,WAAA;GfkhED;EenhED;IACE,oBAAA;GfqhED;EethED;IACE,mBAAA;GfwhED;Ee1gED;IACE,YAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,oBAAA;GfkhED;EenhED;IACE,WAAA;GfqhED;EethED;IACE,oBAAA;GfwhED;EezhED;IACE,oBAAA;Gf2hED;Ee5hED;IACE,WAAA;Gf8hED;Ee/hED;IACE,oBAAA;GfiiED;EeliED;IACE,oBAAA;GfoiED;EeriED;IACE,WAAA;GfuiED;EexiED;IACE,oBAAA;Gf0iED;Ee3iED;IACE,mBAAA;Gf6iED;EeziED;IACE,YAAA;Gf2iED;Ee3jED;IACE,WAAA;Gf6jED;Ee9jED;IACE,mBAAA;GfgkED;EejkED;IACE,mBAAA;GfmkED;EepkED;IACE,UAAA;GfskED;EevkED;IACE,mBAAA;GfykED;Ee1kED;IACE,mBAAA;Gf4kED;Ee7kED;IACE,UAAA;Gf+kED;EehlED;IACE,mBAAA;GfklED;EenlED;IACE,mBAAA;GfqlED;EetlED;IACE,UAAA;GfwlED;EezlED;IACE,mBAAA;Gf2lED;Ee5lED;IACE,kBAAA;Gf8lED;Ee1lED;IACE,WAAA;Gf4lED;Ee9kED;IACE,kBAAA;GfglED;EejlED;IACE,0BAAA;GfmlED;EeplED;IACE,0BAAA;GfslED;EevlED;IACE,iBAAA;GfylED;Ee1lED;IACE,0BAAA;Gf4lED;Ee7lED;IACE,0BAAA;Gf+lED;EehmED;IACE,iBAAA;GfkmED;EenmED;IACE,0BAAA;GfqmED;EetmED;IACE,0BAAA;GfwmED;EezmED;IACE,iBAAA;Gf2mED;Ee5mED;IACE,0BAAA;Gf8mED;Ee/mED;IACE,yBAAA;GfinED;EelnED;IACE,gBAAA;GfonED;CACF;AgBxrED;EACE,8BAAA;ChB0rED;AgBxrED;EACE,iBAAA;EACA,oBAAA;EACA,eAAA;EACA,iBAAA;ChB0rED;AgBxrED;EACE,iBAAA;ChB0rED;AgBprED;EACE,YAAA;EACA,gBAAA;EACA,oBAAA;ChBsrED;AgBzrED;;;;;;EAWQ,aAAA;EACA,wBAAA;EACA,oBAAA;EACA,2BAAA;ChBsrEP;AgBpsED;EAoBI,uBAAA;EACA,8BAAA;ChBmrEH;AgBxsED;;;;;;EA8BQ,cAAA;ChBkrEP;AgBhtED;EAoCI,2BAAA;ChB+qEH;AgBntED;EAyCI,uBAAA;ChB6qEH;AgBtqED;;;;;;EAOQ,aAAA;ChBuqEP;AgB5pED;EACE,uBAAA;ChB8pED;AgB/pED;;;;;;EAQQ,uBAAA;ChB+pEP;AgBvqED;;EAeM,yBAAA;ChB4pEL;AgBlpED;EAEI,0BAAA;ChBmpEH;AgB1oED;EAEI,0BAAA;ChB2oEH;AgBloED;EACE,iBAAA;EACA,YAAA;EACA,sBAAA;ChBooED;AgB/nEG;;EACE,iBAAA;EACA,YAAA;EACA,oBAAA;ChBkoEL;AiB9wEC;;;;;;;;;;;;EAOI,0BAAA;CjBqxEL;AiB/wEC;;;;;EAMI,0BAAA;CjBgxEL;AiBnyEC;;;;;;;;;;;;EAOI,0BAAA;CjB0yEL;AiBpyEC;;;;;EAMI,0BAAA;CjBqyEL;AiBxzEC;;;;;;;;;;;;EAOI,0BAAA;CjB+zEL;AiBzzEC;;;;;EAMI,0BAAA;CjB0zEL;AiB70EC;;;;;;;;;;;;EAOI,0BAAA;CjBo1EL;AiB90EC;;;;;EAMI,0BAAA;CjB+0EL;AiBl2EC;;;;;;;;;;;;EAOI,0BAAA;CjBy2EL;AiBn2EC;;;;;EAMI,0BAAA;CjBo2EL;AgBltED;EACE,iBAAA;EACA,kBAAA;ChBotED;AgBvpED;EACA;IA3DI,YAAA;IACA,oBAAA;IACA,mBAAA;IACA,6CAAA;IACA,uBAAA;GhBqtED;EgB9pEH;IAnDM,iBAAA;GhBotEH;EgBjqEH;;;;;;IA1CY,oBAAA;GhBmtET;EgBzqEH;IAlCM,UAAA;GhB8sEH;EgB5qEH;;;;;;IAzBY,eAAA;GhB6sET;EgBprEH;;;;;;IArBY,gBAAA;GhBitET;EgB5rEH;;;;IARY,iBAAA;GhB0sET;CACF;AkBp6ED;EACE,WAAA;EACA,UAAA;EACA,UAAA;EAIA,aAAA;ClBm6ED;AkBh6ED;EACE,eAAA;EACA,YAAA;EACA,WAAA;EACA,oBAAA;EACA,gBAAA;EACA,qBAAA;EACA,eAAA;EACA,UAAA;EACA,iCAAA;ClBk6ED;AkB/5ED;EACE,sBAAA;EACA,gBAAA;EACA,mBAAA;EACA,kBAAA;ClBi6ED;AkBt5ED;Eb4BE,+BAAA;EACG,4BAAA;EACK,uBAAA;CL63ET;AkBt5ED;;EAEE,gBAAA;EACA,mBAAA;EACA,oBAAA;ClBw5ED;AkBr5ED;EACE,eAAA;ClBu5ED;AkBn5ED;EACE,eAAA;EACA,YAAA;ClBq5ED;AkBj5ED;;EAEE,aAAA;ClBm5ED;AkB/4ED;;;EZvEE,qBAAA;EAEA,2CAAA;EACA,qBAAA;CN09ED;AkB/4ED;EACE,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;ClBi5ED;AkBv3ED;EACE,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;EbxDA,yDAAA;EACQ,iDAAA;EAyHR,uFAAA;EACK,0EAAA;EACG,uEAAA;CL0zET;AmBl8EC;EACE,sBAAA;EACA,WAAA;EdUF,uFAAA;EACQ,+EAAA;CL27ET;AK15EC;EACE,YAAA;EACA,WAAA;CL45EH;AK15EC;EAA0B,YAAA;CL65E3B;AK55EC;EAAgC,YAAA;CL+5EjC;AkBn4EC;EACE,UAAA;EACA,8BAAA;ClBq4EH;AkB73EC;;;EAGE,0BAAA;EACA,WAAA;ClB+3EH;AkB53EC;;EAEE,oBAAA;ClB83EH;AkB13EC;EACE,aAAA;ClB43EH;AkBh3ED;EACE,yBAAA;ClBk3ED;AkB10ED;EAtBI;;;;IACE,kBAAA;GlBs2EH;EkBn2EC;;;;;;;;IAEE,kBAAA;GlB22EH;EkBx2EC;;;;;;;;IAEE,kBAAA;GlBg3EH;CACF;AkBt2ED;EACE,oBAAA;ClBw2ED;AkBh2ED;;EAEE,mBAAA;EACA,eAAA;EACA,iBAAA;EACA,oBAAA;ClBk2ED;AkBv2ED;;EAQI,iBAAA;EACA,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,gBAAA;ClBm2EH;AkBh2ED;;;;EAIE,mBAAA;EACA,mBAAA;EACA,mBAAA;ClBk2ED;AkB/1ED;;EAEE,iBAAA;ClBi2ED;AkB71ED;;EAEE,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,iBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;ClB+1ED;AkB71ED;;EAEE,cAAA;EACA,kBAAA;ClB+1ED;AkBt1EC;;;;;;EAGE,oBAAA;ClB21EH;AkBr1EC;;;;EAEE,oBAAA;ClBy1EH;AkBn1EC;;;;EAGI,oBAAA;ClBs1EL;AkB30ED;EAEE,iBAAA;EACA,oBAAA;EAEA,iBAAA;EACA,iBAAA;ClB20ED;AkBz0EC;;EAEE,gBAAA;EACA,iBAAA;ClB20EH;AkB9zED;ECnQE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBokFD;AmBlkFC;EACE,aAAA;EACA,kBAAA;CnBokFH;AmBjkFC;;EAEE,aAAA;CnBmkFH;AkB10ED;EAEI,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;ClB20EH;AkBj1ED;EASI,aAAA;EACA,kBAAA;ClB20EH;AkBr1ED;;EAcI,aAAA;ClB20EH;AkBz1ED;EAiBI,aAAA;EACA,iBAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;ClB20EH;AkBv0ED;EC/RE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnBymFD;AmBvmFC;EACE,aAAA;EACA,kBAAA;CnBymFH;AmBtmFC;;EAEE,aAAA;CnBwmFH;AkBn1ED;EAEI,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;ClBo1EH;AkB11ED;EASI,aAAA;EACA,kBAAA;ClBo1EH;AkB91ED;;EAcI,aAAA;ClBo1EH;AkBl2ED;EAiBI,aAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;ClBo1EH;AkB30ED;EAEE,mBAAA;ClB40ED;AkB90ED;EAMI,sBAAA;ClB20EH;AkBv0ED;EACE,mBAAA;EACA,OAAA;EACA,SAAA;EACA,WAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,mBAAA;EACA,qBAAA;ClBy0ED;AkBv0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBy0ED;AkBv0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBy0ED;AkBr0ED;;;;;;;;;;EC1ZI,eAAA;CnB2uFH;AkBj1ED;ECtZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CL4rFT;AmB1uFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CLisFT;AkB31ED;EC5YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnB0uFH;AkBh2ED;ECtYI,eAAA;CnByuFH;AkBh2ED;;;;;;;;;;EC7ZI,eAAA;CnBywFH;AkB52ED;ECzZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CL0tFT;AmBxwFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL+tFT;AkBt3ED;EC/YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBwwFH;AkB33ED;ECzYI,eAAA;CnBuwFH;AkB33ED;;;;;;;;;;EChaI,eAAA;CnBuyFH;AkBv4ED;EC5ZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CLwvFT;AmBtyFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL6vFT;AkBj5ED;EClZI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBsyFH;AkBt5ED;EC5YI,eAAA;CnBqyFH;AkBl5EC;EACE,UAAA;ClBo5EH;AkBl5EC;EACE,OAAA;ClBo5EH;AkB14ED;EACE,eAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;ClB44ED;AkBzzED;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlB23EH;EkBvvEH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlBy3EH;EkB5vEH;IAxHM,sBAAA;GlBu3EH;EkB/vEH;IApHM,sBAAA;IACA,uBAAA;GlBs3EH;EkBnwEH;;;IA9GQ,YAAA;GlBs3EL;EkBxwEH;IAxGM,YAAA;GlBm3EH;EkB3wEH;IApGM,iBAAA;IACA,uBAAA;GlBk3EH;EkB/wEH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB+2EH;EkBtxEH;;IAtFQ,gBAAA;GlBg3EL;EkB1xEH;;IAjFM,mBAAA;IACA,eAAA;GlB+2EH;EkB/xEH;IA3EM,OAAA;GlB62EH;CACF;AkBn2ED;;;;EASI,cAAA;EACA,iBAAA;EACA,iBAAA;ClBg2EH;AkB32ED;;EAiBI,iBAAA;ClB81EH;AkB/2ED;EJthBE,mBAAA;EACA,oBAAA;Cdw4FD;AkB50EC;EAyBF;IAnCM,kBAAA;IACA,iBAAA;IACA,iBAAA;GlB01EH;CACF;AkB13ED;EAwCI,YAAA;ClBq1EH;AkBv0EC;EAUF;IAdQ,kBAAA;IACA,gBAAA;GlB+0EL;CACF;AkBr0EC;EAEF;IANQ,iBAAA;IACA,gBAAA;GlB60EL;CACF;AoBt6FD;EACE,sBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,uBAAA;EACA,+BAAA;MAAA,2BAAA;EACA,gBAAA;EACA,uBAAA;EACA,8BAAA;EACA,oBAAA;EC0CA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,mBAAA;EhB+JA,0BAAA;EACG,uBAAA;EACC,sBAAA;EACI,kBAAA;CLiuFT;AoBz6FG;;;;;;EdrBF,qBAAA;EAEA,2CAAA;EACA,qBAAA;CNq8FD;AoB76FC;;;EAGE,YAAA;EACA,sBAAA;CpB+6FH;AoB56FC;;EAEE,WAAA;EACA,uBAAA;Ef2BF,yDAAA;EACQ,iDAAA;CLo5FT;AoB56FC;;;EAGE,oBAAA;EE7CF,cAAA;EAGA,0BAAA;EjB8DA,yBAAA;EACQ,iBAAA;CL65FT;AoB56FG;;EAEE,qBAAA;CpB86FL;AoBr6FD;EC3DE,YAAA;EACA,uBAAA;EACA,mBAAA;CrBm+FD;AqBj+FC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBy+FT;AqBt+FC;;;EAGE,uBAAA;CrBw+FH;AqBn+FG;;;;;;;;;EAGE,uBAAA;EACI,mBAAA;CrB2+FT;AoB19FD;ECZI,YAAA;EACA,uBAAA;CrBy+FH;AoB39FD;EC9DE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB4hGD;AqB1hGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBkiGT;AqB/hGC;;;EAGE,uBAAA;CrBiiGH;AqB5hGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBoiGT;AoBhhGD;ECfI,eAAA;EACA,uBAAA;CrBkiGH;AoBhhGD;EClEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBqlGD;AqBnlGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB2lGT;AqBxlGC;;;EAGE,uBAAA;CrB0lGH;AqBrlGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB6lGT;AoBrkGD;ECnBI,eAAA;EACA,uBAAA;CrB2lGH;AoBrkGD;ECtEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB8oGD;AqB5oGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBopGT;AqBjpGC;;;EAGE,uBAAA;CrBmpGH;AqB9oGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBspGT;AoB1nGD;ECvBI,eAAA;EACA,uBAAA;CrBopGH;AoB1nGD;EC1EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBusGD;AqBrsGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB6sGT;AqB1sGC;;;EAGE,uBAAA;CrB4sGH;AqBvsGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB+sGT;AoB/qGD;EC3BI,eAAA;EACA,uBAAA;CrB6sGH;AoB/qGD;EC9EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBgwGD;AqB9vGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBswGT;AqBnwGC;;;EAGE,uBAAA;CrBqwGH;AqBhwGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBwwGT;AoBpuGD;EC/BI,eAAA;EACA,uBAAA;CrBswGH;AoB/tGD;EACE,eAAA;EACA,oBAAA;EACA,iBAAA;CpBiuGD;AoB/tGC;;;;;EAKE,8BAAA;EfnCF,yBAAA;EACQ,iBAAA;CLqwGT;AoBhuGC;;;;EAIE,0BAAA;CpBkuGH;AoBhuGC;;EAEE,eAAA;EACA,2BAAA;EACA,8BAAA;CpBkuGH;AoB9tGG;;;;EAEE,eAAA;EACA,sBAAA;CpBkuGL;AoBztGD;;ECxEE,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CrBqyGD;AoB5tGD;;EC5EE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrB4yGD;AoB/tGD;;EChFE,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrBmzGD;AoB9tGD;EACE,eAAA;EACA,YAAA;CpBguGD;AoB5tGD;EACE,gBAAA;CpB8tGD;AoBvtGC;;;EACE,YAAA;CpB2tGH;AuBr3GD;EACE,WAAA;ElBoLA,yCAAA;EACK,oCAAA;EACG,iCAAA;CLosGT;AuBx3GC;EACE,WAAA;CvB03GH;AuBt3GD;EACE,cAAA;CvBw3GD;AuBt3GC;EAAY,eAAA;CvBy3Gb;AuBx3GC;EAAY,mBAAA;CvB23Gb;AuB13GC;EAAY,yBAAA;CvB63Gb;AuB13GD;EACE,mBAAA;EACA,UAAA;EACA,iBAAA;ElBuKA,gDAAA;EACQ,2CAAA;KAAA,wCAAA;EAOR,mCAAA;EACQ,8BAAA;KAAA,2BAAA;EAGR,yCAAA;EACQ,oCAAA;KAAA,iCAAA;CL8sGT;AwBx5GD;EACE,sBAAA;EACA,SAAA;EACA,UAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,yBAAA;EACA,oCAAA;EACA,mCAAA;CxB05GD;AwBt5GD;;EAEE,mBAAA;CxBw5GD;AwBp5GD;EACE,WAAA;CxBs5GD;AwBl5GD;EACE,mBAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,sCAAA;EACA,mBAAA;EnBsBA,oDAAA;EACQ,4CAAA;EmBrBR,qCAAA;UAAA,6BAAA;CxBq5GD;AwBh5GC;EACE,SAAA;EACA,WAAA;CxBk5GH;AwB36GD;ECzBE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBu8GD;AwBj7GD;EAmCI,eAAA;EACA,kBAAA;EACA,YAAA;EACA,oBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxBi5GH;AwB34GC;;EAEE,sBAAA;EACA,eAAA;EACA,0BAAA;CxB64GH;AwBv4GC;;;EAGE,YAAA;EACA,sBAAA;EACA,WAAA;EACA,0BAAA;CxBy4GH;AwBh4GC;;;EAGE,eAAA;CxBk4GH;AwB93GC;;EAEE,sBAAA;EACA,8BAAA;EACA,uBAAA;EE3GF,oEAAA;EF6GE,oBAAA;CxBg4GH;AwB33GD;EAGI,eAAA;CxB23GH;AwB93GD;EAQI,WAAA;CxBy3GH;AwBj3GD;EACE,WAAA;EACA,SAAA;CxBm3GD;AwB32GD;EACE,QAAA;EACA,YAAA;CxB62GD;AwBz2GD;EACE,eAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxB22GD;AwBv2GD;EACE,gBAAA;EACA,QAAA;EACA,SAAA;EACA,UAAA;EACA,OAAA;EACA,aAAA;CxBy2GD;AwBr2GD;EACE,SAAA;EACA,WAAA;CxBu2GD;AwB/1GD;;EAII,cAAA;EACA,0BAAA;EACA,4BAAA;EACA,YAAA;CxB+1GH;AwBt2GD;;EAWI,UAAA;EACA,aAAA;EACA,mBAAA;CxB+1GH;AwB10GD;EAXE;IApEA,WAAA;IACA,SAAA;GxB65GC;EwB11GD;IA1DA,QAAA;IACA,YAAA;GxBu5GC;CACF;A2BviHD;;EAEE,mBAAA;EACA,sBAAA;EACA,uBAAA;C3ByiHD;A2B7iHD;;EAMI,mBAAA;EACA,YAAA;C3B2iHH;A2BziHG;;;;;;;;EAIE,WAAA;C3B+iHL;A2BziHD;;;;EAKI,kBAAA;C3B0iHH;A2BriHD;EACE,kBAAA;C3BuiHD;A2BxiHD;;;EAOI,YAAA;C3BsiHH;A2B7iHD;;;EAYI,iBAAA;C3BsiHH;A2BliHD;EACE,iBAAA;C3BoiHD;A2BhiHD;EACE,eAAA;C3BkiHD;A2BjiHC;EClDA,8BAAA;EACG,2BAAA;C5BslHJ;A2BhiHD;;EC/CE,6BAAA;EACG,0BAAA;C5BmlHJ;A2B/hHD;EACE,YAAA;C3BiiHD;A2B/hHD;EACE,iBAAA;C3BiiHD;A2B/hHD;;ECnEE,8BAAA;EACG,2BAAA;C5BsmHJ;A2B9hHD;ECjEE,6BAAA;EACG,0BAAA;C5BkmHJ;A2B7hHD;;EAEE,WAAA;C3B+hHD;A2B9gHD;EACE,kBAAA;EACA,mBAAA;C3BghHD;A2B9gHD;EACE,mBAAA;EACA,oBAAA;C3BghHD;A2B3gHD;EtB/CE,yDAAA;EACQ,iDAAA;CL6jHT;A2B3gHC;EtBnDA,yBAAA;EACQ,iBAAA;CLikHT;A2BxgHD;EACE,eAAA;C3B0gHD;A2BvgHD;EACE,wBAAA;EACA,uBAAA;C3BygHD;A2BtgHD;EACE,wBAAA;C3BwgHD;A2BjgHD;;;EAII,eAAA;EACA,YAAA;EACA,YAAA;EACA,gBAAA;C3BkgHH;A2BzgHD;EAcM,YAAA;C3B8/GL;A2B5gHD;;;;EAsBI,iBAAA;EACA,eAAA;C3B4/GH;A2Bv/GC;EACE,iBAAA;C3By/GH;A2Bv/GC;EC3KA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5B+pHF;A2Bz/GC;EC/KA,2BAAA;EACC,0BAAA;EAOD,gCAAA;EACC,+BAAA;C5BqqHF;A2B1/GD;EACE,iBAAA;C3B4/GD;A2B1/GD;;EC/KE,8BAAA;EACC,6BAAA;C5B6qHF;A2Bz/GD;EC7LE,2BAAA;EACC,0BAAA;C5ByrHF;A2Br/GD;EACE,eAAA;EACA,YAAA;EACA,oBAAA;EACA,0BAAA;C3Bu/GD;A2B3/GD;;EAOI,YAAA;EACA,oBAAA;EACA,UAAA;C3Bw/GH;A2BjgHD;EAYI,YAAA;C3Bw/GH;A2BpgHD;EAgBI,WAAA;C3Bu/GH;A2Bt+GD;;;;EAKM,mBAAA;EACA,uBAAA;EACA,qBAAA;C3Bu+GL;A6BjtHD;EACE,mBAAA;EACA,eAAA;EACA,0BAAA;C7BmtHD;A6BhtHC;EACE,YAAA;EACA,gBAAA;EACA,iBAAA;C7BktHH;A6B3tHD;EAeI,mBAAA;EACA,WAAA;EAKA,YAAA;EAEA,YAAA;EACA,iBAAA;C7B0sHH;A6BxsHG;EACE,WAAA;C7B0sHL;A6BhsHD;;;EV0BE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnB2qHD;AmBzqHC;;;EACE,aAAA;EACA,kBAAA;CnB6qHH;AmB1qHC;;;;;;EAEE,aAAA;CnBgrHH;A6BltHD;;;EVqBE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBksHD;AmBhsHC;;;EACE,aAAA;EACA,kBAAA;CnBosHH;AmBjsHC;;;;;;EAEE,aAAA;CnBusHH;A6BhuHD;;;EAGE,oBAAA;C7BkuHD;A6BhuHC;;;EACE,iBAAA;C7BouHH;A6BhuHD;;EAEE,UAAA;EACA,oBAAA;EACA,uBAAA;C7BkuHD;A6B7tHD;EACE,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;EACA,eAAA;EACA,mBAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;C7B+tHD;A6B5tHC;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;C7B8tHH;A6B5tHC;EACE,mBAAA;EACA,gBAAA;EACA,mBAAA;C7B8tHH;A6BlvHD;;EA0BI,cAAA;C7B4tHH;A6BvtHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;C5Bo0HJ;A6BxtHD;EACE,gBAAA;C7B0tHD;A6BxtHD;;;;;;;EDxGE,6BAAA;EACG,0BAAA;C5By0HJ;A6BztHD;EACE,eAAA;C7B2tHD;A6BttHD;EACE,mBAAA;EAGA,aAAA;EACA,oBAAA;C7BstHD;A6B3tHD;EAUI,mBAAA;C7BotHH;A6B9tHD;EAYM,kBAAA;C7BqtHL;A6BltHG;;;EAGE,WAAA;C7BotHL;A6B/sHC;;EAGI,mBAAA;C7BgtHL;A6B7sHC;;EAGI,WAAA;EACA,kBAAA;C7B8sHL;A8B72HD;EACE,iBAAA;EACA,gBAAA;EACA,iBAAA;C9B+2HD;A8Bl3HD;EAOI,mBAAA;EACA,eAAA;C9B82HH;A8Bt3HD;EAWM,mBAAA;EACA,eAAA;EACA,mBAAA;C9B82HL;A8B72HK;;EAEE,sBAAA;EACA,0BAAA;C9B+2HP;A8B12HG;EACE,eAAA;C9B42HL;A8B12HK;;EAEE,eAAA;EACA,sBAAA;EACA,8BAAA;EACA,oBAAA;C9B42HP;A8Br2HG;;;EAGE,0BAAA;EACA,sBAAA;C9Bu2HL;A8Bh5HD;ELHE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBs5HD;A8Bt5HD;EA0DI,gBAAA;C9B+1HH;A8Bt1HD;EACE,8BAAA;C9Bw1HD;A8Bz1HD;EAGI,YAAA;EAEA,oBAAA;C9Bw1HH;A8B71HD;EASM,kBAAA;EACA,wBAAA;EACA,8BAAA;EACA,2BAAA;C9Bu1HL;A8Bt1HK;EACE,mCAAA;C9Bw1HP;A8Bl1HK;;;EAGE,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,iCAAA;EACA,gBAAA;C9Bo1HP;A8B/0HC;EAqDA,YAAA;EA8BA,iBAAA;C9BgwHD;A8Bn1HC;EAwDE,YAAA;C9B8xHH;A8Bt1HC;EA0DI,mBAAA;EACA,mBAAA;C9B+xHL;A8B11HC;EAgEE,UAAA;EACA,WAAA;C9B6xHH;A8BjxHD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9B4xHH;E8B5tHH;IA9DQ,iBAAA;G9B6xHL;CACF;A8Bv2HC;EAuFE,gBAAA;EACA,mBAAA;C9BmxHH;A8B32HC;;;EA8FE,uBAAA;C9BkxHH;A8BpwHD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9BixHH;E8B9uHH;;;IA9BM,0BAAA;G9BixHH;CACF;A8Bl3HD;EAEI,YAAA;C9Bm3HH;A8Br3HD;EAMM,mBAAA;C9Bk3HL;A8Bx3HD;EASM,iBAAA;C9Bk3HL;A8B72HK;;;EAGE,YAAA;EACA,0BAAA;C9B+2HP;A8Bv2HD;EAEI,YAAA;C9Bw2HH;A8B12HD;EAIM,gBAAA;EACA,eAAA;C9By2HL;A8B71HD;EACE,YAAA;C9B+1HD;A8Bh2HD;EAII,YAAA;C9B+1HH;A8Bn2HD;EAMM,mBAAA;EACA,mBAAA;C9Bg2HL;A8Bv2HD;EAYI,UAAA;EACA,WAAA;C9B81HH;A8Bl1HD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9B61HH;E8B7xHH;IA9DQ,iBAAA;G9B81HL;CACF;A8Bt1HD;EACE,iBAAA;C9Bw1HD;A8Bz1HD;EAKI,gBAAA;EACA,mBAAA;C9Bu1HH;A8B71HD;;;EAYI,uBAAA;C9Bs1HH;A8Bx0HD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9Bq1HH;E8BlzHH;;;IA9BM,0BAAA;G9Bq1HH;CACF;A8B50HD;EAEI,cAAA;C9B60HH;A8B/0HD;EAKI,eAAA;C9B60HH;A8Bp0HD;EAEE,iBAAA;EF3OA,2BAAA;EACC,0BAAA;C5BijIF;A+B3iID;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,8BAAA;C/B6iID;A+BriID;EA8nBA;IAhoBI,mBAAA;G/B2iID;CACF;A+B5hID;EAgnBA;IAlnBI,YAAA;G/BkiID;CACF;A+BphID;EACE,oBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,2DAAA;UAAA,mDAAA;EAEA,kCAAA;C/BqhID;A+BnhIC;EACE,iBAAA;C/BqhIH;A+Bz/HD;EA6jBA;IArlBI,YAAA;IACA,cAAA;IACA,yBAAA;YAAA,iBAAA;G/BqhID;E+BnhIC;IACE,0BAAA;IACA,wBAAA;IACA,kBAAA;IACA,6BAAA;G/BqhIH;E+BlhIC;IACE,oBAAA;G/BohIH;E+B/gIC;;;IAGE,gBAAA;IACA,iBAAA;G/BihIH;CACF;A+B7gID;;EAGI,kBAAA;C/B8gIH;A+BzgIC;EAmjBF;;IArjBM,kBAAA;G/BghIH;CACF;A+BvgID;;;;EAII,oBAAA;EACA,mBAAA;C/BygIH;A+BngIC;EAgiBF;;;;IAniBM,gBAAA;IACA,eAAA;G/B6gIH;CACF;A+BjgID;EACE,cAAA;EACA,sBAAA;C/BmgID;A+B9/HD;EA8gBA;IAhhBI,iBAAA;G/BogID;CACF;A+BhgID;;EAEE,gBAAA;EACA,SAAA;EACA,QAAA;EACA,cAAA;C/BkgID;A+B5/HD;EAggBA;;IAlgBI,iBAAA;G/BmgID;CACF;A+BjgID;EACE,OAAA;EACA,sBAAA;C/BmgID;A+BjgID;EACE,UAAA;EACA,iBAAA;EACA,sBAAA;C/BmgID;A+B7/HD;EACE,YAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;EACA,aAAA;C/B+/HD;A+B7/HC;;EAEE,sBAAA;C/B+/HH;A+BxgID;EAaI,eAAA;C/B8/HH;A+Br/HD;EALI;;IAEE,mBAAA;G/B6/HH;CACF;A+Bn/HD;EACE,mBAAA;EACA,aAAA;EACA,mBAAA;EACA,kBAAA;EC9LA,gBAAA;EACA,mBAAA;ED+LA,8BAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;C/Bs/HD;A+Bl/HC;EACE,WAAA;C/Bo/HH;A+BlgID;EAmBI,eAAA;EACA,YAAA;EACA,YAAA;EACA,mBAAA;C/Bk/HH;A+BxgID;EAyBI,gBAAA;C/Bk/HH;A+B5+HD;EAqbA;IAvbI,cAAA;G/Bk/HD;CACF;A+Bz+HD;EACE,oBAAA;C/B2+HD;A+B5+HD;EAII,kBAAA;EACA,qBAAA;EACA,kBAAA;C/B2+HH;A+B/8HC;EA2YF;IAjaM,iBAAA;IACA,YAAA;IACA,YAAA;IACA,cAAA;IACA,8BAAA;IACA,UAAA;IACA,yBAAA;YAAA,iBAAA;G/By+HH;E+B9kHH;;IAxZQ,2BAAA;G/B0+HL;E+BllHH;IArZQ,kBAAA;G/B0+HL;E+Bz+HK;;IAEE,uBAAA;G/B2+HP;CACF;A+Bz9HD;EA+XA;IA1YI,YAAA;IACA,UAAA;G/Bw+HD;E+B/lHH;IAtYM,YAAA;G/Bw+HH;E+BlmHH;IApYQ,kBAAA;IACA,qBAAA;G/By+HL;CACF;A+B99HD;EACE,mBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,qCAAA;E1B9NA,6FAAA;EACQ,qFAAA;E2B/DR,gBAAA;EACA,mBAAA;ChC+vID;AkBzuHD;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlB2yHH;EkBvqHH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlByyHH;EkB5qHH;IAxHM,sBAAA;GlBuyHH;EkB/qHH;IApHM,sBAAA;IACA,uBAAA;GlBsyHH;EkBnrHH;;;IA9GQ,YAAA;GlBsyHL;EkBxrHH;IAxGM,YAAA;GlBmyHH;EkB3rHH;IApGM,iBAAA;IACA,uBAAA;GlBkyHH;EkB/rHH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB+xHH;EkBtsHH;;IAtFQ,gBAAA;GlBgyHL;EkB1sHH;;IAjFM,mBAAA;IACA,eAAA;GlB+xHH;EkB/sHH;IA3EM,OAAA;GlB6xHH;CACF;A+BvgIC;EAmWF;IAzWM,mBAAA;G/BihIH;E+B/gIG;IACE,iBAAA;G/BihIL;CACF;A+BhgID;EAoVA;IA5VI,YAAA;IACA,UAAA;IACA,eAAA;IACA,gBAAA;IACA,eAAA;IACA,kBAAA;I1BzPF,yBAAA;IACQ,iBAAA;GLswIP;CACF;A+BtgID;EACE,cAAA;EHpUA,2BAAA;EACC,0BAAA;C5B60IF;A+BtgID;EACE,iBAAA;EHzUA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5B40IF;A+BlgID;EChVE,gBAAA;EACA,mBAAA;ChCq1ID;A+BngIC;ECnVA,iBAAA;EACA,oBAAA;ChCy1ID;A+BpgIC;ECtVA,iBAAA;EACA,oBAAA;ChC61ID;A+B9/HD;EChWE,iBAAA;EACA,oBAAA;ChCi2ID;A+B1/HD;EAsSA;IA1SI,YAAA;IACA,kBAAA;IACA,mBAAA;G/BkgID;CACF;A+Br+HD;EAhBE;IExWA,uBAAA;GjCi2IC;E+Bx/HD;IE5WA,wBAAA;IF8WE,oBAAA;G/B0/HD;E+B5/HD;IAKI,gBAAA;G/B0/HH;CACF;A+Bj/HD;EACE,0BAAA;EACA,sBAAA;C/Bm/HD;A+Br/HD;EAKI,YAAA;C/Bm/HH;A+Bl/HG;;EAEE,eAAA;EACA,8BAAA;C/Bo/HL;A+B7/HD;EAcI,YAAA;C/Bk/HH;A+BhgID;EAmBM,YAAA;C/Bg/HL;A+B9+HK;;EAEE,YAAA;EACA,8BAAA;C/Bg/HP;A+B5+HK;;;EAGE,YAAA;EACA,0BAAA;C/B8+HP;A+B1+HK;;;EAGE,YAAA;EACA,8BAAA;C/B4+HP;A+BphID;EA8CI,mBAAA;C/By+HH;A+Bx+HG;;EAEE,uBAAA;C/B0+HL;A+B3hID;EAoDM,uBAAA;C/B0+HL;A+B9hID;;EA0DI,sBAAA;C/Bw+HH;A+Bj+HK;;;EAGE,0BAAA;EACA,YAAA;C/Bm+HP;A+Bl8HC;EAoKF;IA7LU,YAAA;G/B+9HP;E+B99HO;;IAEE,YAAA;IACA,8BAAA;G/Bg+HT;E+B59HO;;;IAGE,YAAA;IACA,0BAAA;G/B89HT;E+B19HO;;;IAGE,YAAA;IACA,8BAAA;G/B49HT;CACF;A+B9jID;EA8GI,YAAA;C/Bm9HH;A+Bl9HG;EACE,YAAA;C/Bo9HL;A+BpkID;EAqHI,YAAA;C/Bk9HH;A+Bj9HG;;EAEE,YAAA;C/Bm9HL;A+B/8HK;;;;EAEE,YAAA;C/Bm9HP;A+B38HD;EACE,uBAAA;EACA,sBAAA;C/B68HD;A+B/8HD;EAKI,eAAA;C/B68HH;A+B58HG;;EAEE,YAAA;EACA,8BAAA;C/B88HL;A+Bv9HD;EAcI,eAAA;C/B48HH;A+B19HD;EAmBM,eAAA;C/B08HL;A+Bx8HK;;EAEE,YAAA;EACA,8BAAA;C/B08HP;A+Bt8HK;;;EAGE,YAAA;EACA,0BAAA;C/Bw8HP;A+Bp8HK;;;EAGE,YAAA;EACA,8BAAA;C/Bs8HP;A+B9+HD;EA+CI,mBAAA;C/Bk8HH;A+Bj8HG;;EAEE,uBAAA;C/Bm8HL;A+Br/HD;EAqDM,uBAAA;C/Bm8HL;A+Bx/HD;;EA2DI,sBAAA;C/Bi8HH;A+B37HK;;;EAGE,0BAAA;EACA,YAAA;C/B67HP;A+Bt5HC;EAwBF;IAvDU,sBAAA;G/By7HP;E+Bl4HH;IApDU,0BAAA;G/By7HP;E+Br4HH;IAjDU,eAAA;G/By7HP;E+Bx7HO;;IAEE,YAAA;IACA,8BAAA;G/B07HT;E+Bt7HO;;;IAGE,YAAA;IACA,0BAAA;G/Bw7HT;E+Bp7HO;;;IAGE,YAAA;IACA,8BAAA;G/Bs7HT;CACF;A+B9hID;EA+GI,eAAA;C/Bk7HH;A+Bj7HG;EACE,YAAA;C/Bm7HL;A+BpiID;EAsHI,eAAA;C/Bi7HH;A+Bh7HG;;EAEE,YAAA;C/Bk7HL;A+B96HK;;;;EAEE,YAAA;C/Bk7HP;AkC5jJD;EACE,kBAAA;EACA,oBAAA;EACA,iBAAA;EACA,0BAAA;EACA,mBAAA;ClC8jJD;AkCnkJD;EAQI,sBAAA;ClC8jJH;AkCtkJD;EAWM,kBAAA;EACA,eAAA;EACA,YAAA;ClC8jJL;AkC3kJD;EAkBI,eAAA;ClC4jJH;AmChlJD;EACE,sBAAA;EACA,gBAAA;EACA,eAAA;EACA,mBAAA;CnCklJD;AmCtlJD;EAOI,gBAAA;CnCklJH;AmCzlJD;;EAUM,mBAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,sBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,kBAAA;CnCmlJL;AmCjlJG;;EAGI,eAAA;EPXN,+BAAA;EACG,4BAAA;C5B8lJJ;AmChlJG;;EPvBF,gCAAA;EACG,6BAAA;C5B2mJJ;AmC3kJG;;;;EAEE,WAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CnC+kJL;AmCzkJG;;;;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;EACA,gBAAA;CnC8kJL;AmCroJD;;;;;;EAkEM,eAAA;EACA,uBAAA;EACA,mBAAA;EACA,oBAAA;CnC2kJL;AmClkJD;;EC3EM,mBAAA;EACA,gBAAA;EACA,uBAAA;CpCipJL;AoC/oJG;;ERKF,+BAAA;EACG,4BAAA;C5B8oJJ;AoC9oJG;;ERTF,gCAAA;EACG,6BAAA;C5B2pJJ;AmC7kJD;;EChFM,kBAAA;EACA,gBAAA;EACA,iBAAA;CpCiqJL;AoC/pJG;;ERKF,+BAAA;EACG,4BAAA;C5B8pJJ;AoC9pJG;;ERTF,gCAAA;EACG,6BAAA;C5B2qJJ;AqC9qJD;EACE,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,mBAAA;CrCgrJD;AqCprJD;EAOI,gBAAA;CrCgrJH;AqCvrJD;;EAUM,sBAAA;EACA,kBAAA;EACA,uBAAA;EACA,uBAAA;EACA,oBAAA;CrCirJL;AqC/rJD;;EAmBM,sBAAA;EACA,0BAAA;CrCgrJL;AqCpsJD;;EA2BM,aAAA;CrC6qJL;AqCxsJD;;EAkCM,YAAA;CrC0qJL;AqC5sJD;;;;EA2CM,eAAA;EACA,uBAAA;EACA,oBAAA;CrCuqJL;AsCrtJD;EACE,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,oBAAA;EACA,yBAAA;EACA,qBAAA;CtCutJD;AsCntJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CtCqtJL;AsChtJC;EACE,cAAA;CtCktJH;AsC9sJC;EACE,mBAAA;EACA,UAAA;CtCgtJH;AsCzsJD;ECtCE,0BAAA;CvCkvJD;AuC/uJG;;EAEE,0BAAA;CvCivJL;AsC5sJD;EC1CE,0BAAA;CvCyvJD;AuCtvJG;;EAEE,0BAAA;CvCwvJL;AsC/sJD;EC9CE,0BAAA;CvCgwJD;AuC7vJG;;EAEE,0BAAA;CvC+vJL;AsCltJD;EClDE,0BAAA;CvCuwJD;AuCpwJG;;EAEE,0BAAA;CvCswJL;AsCrtJD;ECtDE,0BAAA;CvC8wJD;AuC3wJG;;EAEE,0BAAA;CvC6wJL;AsCxtJD;EC1DE,0BAAA;CvCqxJD;AuClxJG;;EAEE,0BAAA;CvCoxJL;AwCtxJD;EACE,sBAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,eAAA;EACA,uBAAA;EACA,oBAAA;EACA,mBAAA;EACA,0BAAA;EACA,oBAAA;CxCwxJD;AwCrxJC;EACE,cAAA;CxCuxJH;AwCnxJC;EACE,mBAAA;EACA,UAAA;CxCqxJH;AwClxJC;;EAEE,OAAA;EACA,iBAAA;CxCoxJH;AwC/wJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CxCixJL;AwC5wJC;;EAEE,eAAA;EACA,uBAAA;CxC8wJH;AwC3wJC;EACE,aAAA;CxC6wJH;AwC1wJC;EACE,kBAAA;CxC4wJH;AwCzwJC;EACE,iBAAA;CxC2wJH;AyCr0JD;EACE,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,eAAA;EACA,0BAAA;CzCu0JD;AyC50JD;;EASI,eAAA;CzCu0JH;AyCh1JD;EAaI,oBAAA;EACA,gBAAA;EACA,iBAAA;CzCs0JH;AyCr1JD;EAmBI,0BAAA;CzCq0JH;AyCl0JC;;EAEE,mBAAA;EACA,mBAAA;EACA,oBAAA;CzCo0JH;AyC91JD;EA8BI,gBAAA;CzCm0JH;AyCjzJD;EACA;IAfI,kBAAA;IACA,qBAAA;GzCm0JD;EyCj0JC;;IAEE,mBAAA;IACA,oBAAA;GzCm0JH;EyC1zJH;;IAJM,gBAAA;GzCk0JH;CACF;A0C/2JD;EACE,eAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;ErCiLA,4CAAA;EACK,uCAAA;EACG,oCAAA;CLisJT;A0C33JD;;EAaI,kBAAA;EACA,mBAAA;C1Ck3JH;A0C92JC;;;EAGE,sBAAA;C1Cg3JH;A0Cr4JD;EA0BI,aAAA;EACA,eAAA;C1C82JH;A2Cv4JD;EACE,cAAA;EACA,oBAAA;EACA,8BAAA;EACA,mBAAA;C3Cy4JD;A2C74JD;EAQI,cAAA;EAEA,eAAA;C3Cu4JH;A2Cj5JD;EAeI,kBAAA;C3Cq4JH;A2Cp5JD;;EAqBI,iBAAA;C3Cm4JH;A2Cx5JD;EAyBI,gBAAA;C3Ck4JH;A2C13JD;;EAEE,oBAAA;C3C43JD;A2C93JD;;EAMI,mBAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;C3C43JH;A2Cp3JD;ECvDE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C86JD;A2Cz3JD;EClDI,0BAAA;C5C86JH;A2C53JD;EC/CI,eAAA;C5C86JH;A2C33JD;EC3DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Cy7JD;A2Ch4JD;ECtDI,0BAAA;C5Cy7JH;A2Cn4JD;ECnDI,eAAA;C5Cy7JH;A2Cl4JD;EC/DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Co8JD;A2Cv4JD;EC1DI,0BAAA;C5Co8JH;A2C14JD;ECvDI,eAAA;C5Co8JH;A2Cz4JD;ECnEE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C+8JD;A2C94JD;EC9DI,0BAAA;C5C+8JH;A2Cj5JD;EC3DI,eAAA;C5C+8JH;A6Cj9JD;EACE;IAAQ,4BAAA;G7Co9JP;E6Cn9JD;IAAQ,yBAAA;G7Cs9JP;CACF;A6Cn9JD;EACE;IAAQ,4BAAA;G7Cs9JP;E6Cr9JD;IAAQ,yBAAA;G7Cw9JP;CACF;A6C39JD;EACE;IAAQ,4BAAA;G7Cs9JP;E6Cr9JD;IAAQ,yBAAA;G7Cw9JP;CACF;A6Cj9JD;EACE,iBAAA;EACA,aAAA;EACA,oBAAA;EACA,0BAAA;EACA,mBAAA;ExCsCA,uDAAA;EACQ,+CAAA;CL86JT;A6Ch9JD;EACE,YAAA;EACA,UAAA;EACA,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,mBAAA;EACA,0BAAA;ExCyBA,uDAAA;EACQ,+CAAA;EAyHR,oCAAA;EACK,+BAAA;EACG,4BAAA;CLk0JT;A6C78JD;;ECCI,8MAAA;EACA,yMAAA;EACA,sMAAA;EDAF,mCAAA;UAAA,2BAAA;C7Ci9JD;A6C18JD;;ExC5CE,2DAAA;EACK,sDAAA;EACG,mDAAA;CL0/JT;A6Cv8JD;EErEE,0BAAA;C/C+gKD;A+C5gKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C+9JH;A6C38JD;EEzEE,0BAAA;C/CuhKD;A+CphKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Cu+JH;A6C/8JD;EE7EE,0BAAA;C/C+hKD;A+C5hKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C++JH;A6Cn9JD;EEjFE,0BAAA;C/CuiKD;A+CpiKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Cu/JH;AgD/iKD;EAEE,iBAAA;ChDgjKD;AgD9iKC;EACE,cAAA;ChDgjKH;AgD5iKD;;EAEE,QAAA;EACA,iBAAA;ChD8iKD;AgD3iKD;EACE,eAAA;ChD6iKD;AgD1iKD;EACE,eAAA;ChD4iKD;AgDziKC;EACE,gBAAA;ChD2iKH;AgDviKD;;EAEE,mBAAA;ChDyiKD;AgDtiKD;;EAEE,oBAAA;ChDwiKD;AgDriKD;;;EAGE,oBAAA;EACA,oBAAA;ChDuiKD;AgDpiKD;EACE,uBAAA;ChDsiKD;AgDniKD;EACE,uBAAA;ChDqiKD;AgDjiKD;EACE,cAAA;EACA,mBAAA;ChDmiKD;AgD7hKD;EACE,gBAAA;EACA,iBAAA;ChD+hKD;AiDtlKD;EAEE,oBAAA;EACA,gBAAA;CjDulKD;AiD/kKD;EACE,mBAAA;EACA,eAAA;EACA,mBAAA;EAEA,oBAAA;EACA,uBAAA;EACA,uBAAA;CjDglKD;AiD7kKC;ErB3BA,6BAAA;EACC,4BAAA;C5B2mKF;AiD9kKC;EACE,iBAAA;ErBvBF,gCAAA;EACC,+BAAA;C5BwmKF;AiDvkKD;;EAEE,YAAA;CjDykKD;AiD3kKD;;EAKI,YAAA;CjD0kKH;AiDtkKC;;;;EAEE,sBAAA;EACA,YAAA;EACA,0BAAA;CjD0kKH;AiDtkKD;EACE,YAAA;EACA,iBAAA;CjDwkKD;AiDnkKC;;;EAGE,0BAAA;EACA,eAAA;EACA,oBAAA;CjDqkKH;AiD1kKC;;;EASI,eAAA;CjDskKL;AiD/kKC;;;EAYI,eAAA;CjDwkKL;AiDnkKC;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;CjDqkKH;AiD3kKC;;;;;;;;;EAYI,eAAA;CjD0kKL;AiDtlKC;;;EAeI,eAAA;CjD4kKL;AkD9qKC;EACE,eAAA;EACA,0BAAA;ClDgrKH;AkD9qKG;;EAEE,eAAA;ClDgrKL;AkDlrKG;;EAKI,eAAA;ClDirKP;AkD9qKK;;;;EAEE,eAAA;EACA,0BAAA;ClDkrKP;AkDhrKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDqrKP;AkD3sKC;EACE,eAAA;EACA,0BAAA;ClD6sKH;AkD3sKG;;EAEE,eAAA;ClD6sKL;AkD/sKG;;EAKI,eAAA;ClD8sKP;AkD3sKK;;;;EAEE,eAAA;EACA,0BAAA;ClD+sKP;AkD7sKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDktKP;AkDxuKC;EACE,eAAA;EACA,0BAAA;ClD0uKH;AkDxuKG;;EAEE,eAAA;ClD0uKL;AkD5uKG;;EAKI,eAAA;ClD2uKP;AkDxuKK;;;;EAEE,eAAA;EACA,0BAAA;ClD4uKP;AkD1uKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD+uKP;AkDrwKC;EACE,eAAA;EACA,0BAAA;ClDuwKH;AkDrwKG;;EAEE,eAAA;ClDuwKL;AkDzwKG;;EAKI,eAAA;ClDwwKP;AkDrwKK;;;;EAEE,eAAA;EACA,0BAAA;ClDywKP;AkDvwKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD4wKP;AiD3qKD;EACE,cAAA;EACA,mBAAA;CjD6qKD;AiD3qKD;EACE,iBAAA;EACA,iBAAA;CjD6qKD;AmDvyKD;EACE,oBAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;E9C0DA,kDAAA;EACQ,0CAAA;CLgvKT;AmDtyKD;EACE,cAAA;CnDwyKD;AmDnyKD;EACE,mBAAA;EACA,qCAAA;EvBpBA,6BAAA;EACC,4BAAA;C5B0zKF;AmDzyKD;EAMI,eAAA;CnDsyKH;AmDjyKD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,eAAA;CnDmyKD;AmDvyKD;;;;;EAWI,eAAA;CnDmyKH;AmD9xKD;EACE,mBAAA;EACA,0BAAA;EACA,2BAAA;EvBxCA,gCAAA;EACC,+BAAA;C5By0KF;AmDxxKD;;EAGI,iBAAA;CnDyxKH;AmD5xKD;;EAMM,oBAAA;EACA,iBAAA;CnD0xKL;AmDtxKG;;EAEI,cAAA;EvBvEN,6BAAA;EACC,4BAAA;C5Bg2KF;AmDpxKG;;EAEI,iBAAA;EvBvEN,gCAAA;EACC,+BAAA;C5B81KF;AmD7yKD;EvB1DE,2BAAA;EACC,0BAAA;C5B02KF;AmDhxKD;EAEI,oBAAA;CnDixKH;AmD9wKD;EACE,oBAAA;CnDgxKD;AmDxwKD;;;EAII,iBAAA;CnDywKH;AmD7wKD;;;EAOM,mBAAA;EACA,oBAAA;CnD2wKL;AmDnxKD;;EvBzGE,6BAAA;EACC,4BAAA;C5Bg4KF;AmDxxKD;;;;EAmBQ,4BAAA;EACA,6BAAA;CnD2wKP;AmD/xKD;;;;;;;;EAwBU,4BAAA;CnDixKT;AmDzyKD;;;;;;;;EA4BU,6BAAA;CnDuxKT;AmDnzKD;;EvBjGE,gCAAA;EACC,+BAAA;C5Bw5KF;AmDxzKD;;;;EAyCQ,+BAAA;EACA,gCAAA;CnDqxKP;AmD/zKD;;;;;;;;EA8CU,+BAAA;CnD2xKT;AmDz0KD;;;;;;;;EAkDU,gCAAA;CnDiyKT;AmDn1KD;;;;EA2DI,2BAAA;CnD8xKH;AmDz1KD;;EA+DI,cAAA;CnD8xKH;AmD71KD;;EAmEI,UAAA;CnD8xKH;AmDj2KD;;;;;;;;;;;;EA0EU,eAAA;CnDqyKT;AmD/2KD;;;;;;;;;;;;EA8EU,gBAAA;CnD+yKT;AmD73KD;;;;;;;;EAuFU,iBAAA;CnDgzKT;AmDv4KD;;;;;;;;EAgGU,iBAAA;CnDizKT;AmDj5KD;EAsGI,UAAA;EACA,iBAAA;CnD8yKH;AmDpyKD;EACE,oBAAA;CnDsyKD;AmDvyKD;EAKI,iBAAA;EACA,mBAAA;CnDqyKH;AmD3yKD;EASM,gBAAA;CnDqyKL;AmD9yKD;EAcI,iBAAA;CnDmyKH;AmDjzKD;;EAkBM,2BAAA;CnDmyKL;AmDrzKD;EAuBI,cAAA;CnDiyKH;AmDxzKD;EAyBM,8BAAA;CnDkyKL;AmD3xKD;EC1PE,mBAAA;CpDwhLD;AoDthLC;EACE,eAAA;EACA,0BAAA;EACA,mBAAA;CpDwhLH;AoD3hLC;EAMI,uBAAA;CpDwhLL;AoD9hLC;EASI,eAAA;EACA,0BAAA;CpDwhLL;AoDrhLC;EAEI,0BAAA;CpDshLL;AmD1yKD;EC7PE,sBAAA;CpD0iLD;AoDxiLC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CpD0iLH;AoD7iLC;EAMI,0BAAA;CpD0iLL;AoDhjLC;EASI,eAAA;EACA,uBAAA;CpD0iLL;AoDviLC;EAEI,6BAAA;CpDwiLL;AmDzzKD;EChQE,sBAAA;CpD4jLD;AoD1jLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD4jLH;AoD/jLC;EAMI,0BAAA;CpD4jLL;AoDlkLC;EASI,eAAA;EACA,0BAAA;CpD4jLL;AoDzjLC;EAEI,6BAAA;CpD0jLL;AmDx0KD;ECnQE,sBAAA;CpD8kLD;AoD5kLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD8kLH;AoDjlLC;EAMI,0BAAA;CpD8kLL;AoDplLC;EASI,eAAA;EACA,0BAAA;CpD8kLL;AoD3kLC;EAEI,6BAAA;CpD4kLL;AmDv1KD;ECtQE,sBAAA;CpDgmLD;AoD9lLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDgmLH;AoDnmLC;EAMI,0BAAA;CpDgmLL;AoDtmLC;EASI,eAAA;EACA,0BAAA;CpDgmLL;AoD7lLC;EAEI,6BAAA;CpD8lLL;AmDt2KD;ECzQE,sBAAA;CpDknLD;AoDhnLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDknLH;AoDrnLC;EAMI,0BAAA;CpDknLL;AoDxnLC;EASI,eAAA;EACA,0BAAA;CpDknLL;AoD/mLC;EAEI,6BAAA;CpDgnLL;AqDhoLD;EACE,mBAAA;EACA,eAAA;EACA,UAAA;EACA,WAAA;EACA,iBAAA;CrDkoLD;AqDvoLD;;;;;EAYI,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,aAAA;EACA,YAAA;EACA,UAAA;CrDkoLH;AqD7nLD;EACE,uBAAA;CrD+nLD;AqD3nLD;EACE,oBAAA;CrD6nLD;AsDxpLD;EACE,iBAAA;EACA,cAAA;EACA,oBAAA;EACA,0BAAA;EACA,0BAAA;EACA,mBAAA;EjDwDA,wDAAA;EACQ,gDAAA;CLmmLT;AsDlqLD;EASI,mBAAA;EACA,kCAAA;CtD4pLH;AsDvpLD;EACE,cAAA;EACA,mBAAA;CtDypLD;AsDvpLD;EACE,aAAA;EACA,mBAAA;CtDypLD;AuD/qLD;EACE,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,0BAAA;EjCRA,aAAA;EAGA,0BAAA;CtBwrLD;AuDhrLC;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;EjCfF,aAAA;EAGA,0BAAA;CtBgsLD;AuD5qLC;EACE,WAAA;EACA,gBAAA;EACA,wBAAA;EACA,UAAA;EACA,yBAAA;CvD8qLH;AwDnsLD;EACE,iBAAA;CxDqsLD;AwDjsLD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,kCAAA;EAIA,WAAA;CxDgsLD;AwD7rLC;EnD+GA,sCAAA;EACI,kCAAA;EACC,iCAAA;EACG,8BAAA;EAkER,oDAAA;EAEK,0CAAA;EACG,oCAAA;CLghLT;AwDnsLC;EnD2GA,mCAAA;EACI,+BAAA;EACC,8BAAA;EACG,2BAAA;CL2lLT;AwDvsLD;EACE,mBAAA;EACA,iBAAA;CxDysLD;AwDrsLD;EACE,mBAAA;EACA,YAAA;EACA,aAAA;CxDusLD;AwDnsLD;EACE,mBAAA;EACA,uBAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EnDaA,iDAAA;EACQ,yCAAA;EmDZR,qCAAA;UAAA,6BAAA;EAEA,WAAA;CxDqsLD;AwDjsLD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,uBAAA;CxDmsLD;AwDjsLC;ElCrEA,WAAA;EAGA,yBAAA;CtBuwLD;AwDpsLC;ElCtEA,aAAA;EAGA,0BAAA;CtB2wLD;AwDnsLD;EACE,cAAA;EACA,iCAAA;CxDqsLD;AwDjsLD;EACE,iBAAA;CxDmsLD;AwD/rLD;EACE,UAAA;EACA,wBAAA;CxDisLD;AwD5rLD;EACE,mBAAA;EACA,cAAA;CxD8rLD;AwD1rLD;EACE,cAAA;EACA,kBAAA;EACA,8BAAA;CxD4rLD;AwD/rLD;EAQI,iBAAA;EACA,iBAAA;CxD0rLH;AwDnsLD;EAaI,kBAAA;CxDyrLH;AwDtsLD;EAiBI,eAAA;CxDwrLH;AwDnrLD;EACE,mBAAA;EACA,aAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;CxDqrLD;AwDnqLD;EAZE;IACE,aAAA;IACA,kBAAA;GxDkrLD;EwDhrLD;InDvEA,kDAAA;IACQ,0CAAA;GL0vLP;EwD/qLD;IAAY,aAAA;GxDkrLX;CACF;AwD7qLD;EAFE;IAAY,aAAA;GxDmrLX;CACF;AyDl0LD;EACE,mBAAA;EACA,cAAA;EACA,eAAA;ECRA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;EDHA,gBAAA;EnCVA,WAAA;EAGA,yBAAA;CtBy1LD;AyD90LC;EnCdA,aAAA;EAGA,0BAAA;CtB61LD;AyDj1LC;EAAW,iBAAA;EAAmB,eAAA;CzDq1L/B;AyDp1LC;EAAW,iBAAA;EAAmB,eAAA;CzDw1L/B;AyDv1LC;EAAW,gBAAA;EAAmB,eAAA;CzD21L/B;AyD11LC;EAAW,kBAAA;EAAmB,eAAA;CzD81L/B;AyD11LD;EACE,iBAAA;EACA,iBAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,mBAAA;CzD41LD;AyDx1LD;EACE,mBAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;CzD01LD;AyDt1LC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,UAAA;EACA,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,UAAA;EACA,UAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,SAAA;EACA,QAAA;EACA,iBAAA;EACA,4BAAA;EACA,yBAAA;CzDw1LH;AyDt1LC;EACE,SAAA;EACA,SAAA;EACA,iBAAA;EACA,4BAAA;EACA,wBAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,WAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,UAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;A2Dr7LD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,iBAAA;EACA,aAAA;EDXA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;ECAA,gBAAA;EAEA,uBAAA;EACA,qCAAA;UAAA,6BAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EtD8CA,kDAAA;EACQ,0CAAA;CLq5LT;A2Dh8LC;EAAY,kBAAA;C3Dm8Lb;A2Dl8LC;EAAY,kBAAA;C3Dq8Lb;A2Dp8LC;EAAY,iBAAA;C3Du8Lb;A2Dt8LC;EAAY,mBAAA;C3Dy8Lb;A2Dt8LD;EACE,UAAA;EACA,kBAAA;EACA,gBAAA;EACA,0BAAA;EACA,iCAAA;EACA,2BAAA;C3Dw8LD;A2Dr8LD;EACE,kBAAA;C3Du8LD;A2D/7LC;;EAEE,mBAAA;EACA,eAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;C3Di8LH;A2D97LD;EACE,mBAAA;C3Dg8LD;A2D97LD;EACE,mBAAA;EACA,YAAA;C3Dg8LD;A2D57LC;EACE,UAAA;EACA,mBAAA;EACA,uBAAA;EACA,0BAAA;EACA,sCAAA;EACA,cAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,uBAAA;C3D+7LL;A2D57LC;EACE,SAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,4BAAA;EACA,wCAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,UAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;C3D+7LL;A2D57LC;EACE,UAAA;EACA,mBAAA;EACA,oBAAA;EACA,6BAAA;EACA,yCAAA;EACA,WAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,SAAA;EACA,mBAAA;EACA,oBAAA;EACA,0BAAA;C3D+7LL;A2D37LC;EACE,SAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,2BAAA;EACA,uCAAA;C3D67LH;A2D57LG;EACE,aAAA;EACA,WAAA;EACA,sBAAA;EACA,wBAAA;EACA,cAAA;C3D87LL;A4DvjMD;EACE,mBAAA;C5DyjMD;A4DtjMD;EACE,mBAAA;EACA,iBAAA;EACA,YAAA;C5DwjMD;A4D3jMD;EAMI,cAAA;EACA,mBAAA;EvD6KF,0CAAA;EACK,qCAAA;EACG,kCAAA;CL44LT;A4DlkMD;;EAcM,eAAA;C5DwjML;A4D9hMC;EA4NF;IvD3DE,uDAAA;IAEK,6CAAA;IACG,uCAAA;IA7JR,oCAAA;IAEQ,4BAAA;IA+GR,4BAAA;IAEQ,oBAAA;GLi7LP;E4D5jMG;;IvDmHJ,2CAAA;IACQ,mCAAA;IuDjHF,QAAA;G5D+jML;E4D7jMG;;IvD8GJ,4CAAA;IACQ,oCAAA;IuD5GF,QAAA;G5DgkML;E4D9jMG;;;IvDyGJ,wCAAA;IACQ,gCAAA;IuDtGF,QAAA;G5DikML;CACF;A4DvmMD;;;EA6CI,eAAA;C5D+jMH;A4D5mMD;EAiDI,QAAA;C5D8jMH;A4D/mMD;;EAsDI,mBAAA;EACA,OAAA;EACA,YAAA;C5D6jMH;A4DrnMD;EA4DI,WAAA;C5D4jMH;A4DxnMD;EA+DI,YAAA;C5D4jMH;A4D3nMD;;EAmEI,QAAA;C5D4jMH;A4D/nMD;EAuEI,YAAA;C5D2jMH;A4DloMD;EA0EI,WAAA;C5D2jMH;A4DnjMD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EtC9FA,aAAA;EAGA,0BAAA;EsC6FA,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;EACA,mCAAA;C5DsjMD;A4DjjMC;EdnGE,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9CupMH;A4DrjMC;EACE,WAAA;EACA,SAAA;EdxGA,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9CgqMH;A4DvjMC;;EAEE,WAAA;EACA,YAAA;EACA,sBAAA;EtCvHF,aAAA;EAGA,0BAAA;CtB+qMD;A4DzlMD;;;;EAuCI,mBAAA;EACA,SAAA;EACA,kBAAA;EACA,WAAA;EACA,sBAAA;C5DwjMH;A4DnmMD;;EA+CI,UAAA;EACA,mBAAA;C5DwjMH;A4DxmMD;;EAoDI,WAAA;EACA,oBAAA;C5DwjMH;A4D7mMD;;EAyDI,YAAA;EACA,aAAA;EACA,eAAA;EACA,mBAAA;C5DwjMH;A4DnjMG;EACE,iBAAA;C5DqjML;A4DjjMG;EACE,iBAAA;C5DmjML;A4DziMD;EACE,mBAAA;EACA,aAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;C5D2iMD;A4DpjMD;EAYI,sBAAA;EACA,YAAA;EACA,aAAA;EACA,YAAA;EACA,oBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;EAWA,0BAAA;EACA,mCAAA;C5DiiMH;A4DhkMD;EAkCI,UAAA;EACA,YAAA;EACA,aAAA;EACA,uBAAA;C5DiiMH;A4D1hMD;EACE,mBAAA;EACA,UAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;C5D4hMD;A4D3hMC;EACE,kBAAA;C5D6hMH;A4Dp/LD;EAhCE;;;;IAKI,YAAA;IACA,aAAA;IACA,kBAAA;IACA,gBAAA;G5DshMH;E4D9hMD;;IAYI,mBAAA;G5DshMH;E4DliMD;;IAgBI,oBAAA;G5DshMH;E4DjhMD;IACE,UAAA;IACA,WAAA;IACA,qBAAA;G5DmhMD;E4D/gMD;IACE,aAAA;G5DihMD;CACF;A6DhxMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,aAAA;EACA,eAAA;C7DgzMH;A6D9yMC;;;;;;;;;;;;;;;;EACE,YAAA;C7D+zMH;AiCv0MD;E6BRE,eAAA;EACA,kBAAA;EACA,mBAAA;C9Dk1MD;AiCz0MD;EACE,wBAAA;CjC20MD;AiCz0MD;EACE,uBAAA;CjC20MD;AiCn0MD;EACE,yBAAA;CjCq0MD;AiCn0MD;EACE,0BAAA;CjCq0MD;AiCn0MD;EACE,mBAAA;CjCq0MD;AiCn0MD;E8BzBE,YAAA;EACA,mBAAA;EACA,kBAAA;EACA,8BAAA;EACA,UAAA;C/D+1MD;AiCj0MD;EACE,yBAAA;CjCm0MD;AiC5zMD;EACE,gBAAA;CjC8zMD;AgE/1MD;EACE,oBAAA;ChEi2MD;AgE31MD;;;;ECdE,yBAAA;CjE+2MD;AgE11MD;;;;;;;;;;;;EAYE,yBAAA;ChE41MD;AgEr1MD;EA6IA;IC7LE,0BAAA;GjEy4MC;EiEx4MD;IAAU,0BAAA;GjE24MT;EiE14MD;IAAU,8BAAA;GjE64MT;EiE54MD;;IACU,+BAAA;GjE+4MT;CACF;AgE/1MD;EAwIA;IA1II,0BAAA;GhEq2MD;CACF;AgE/1MD;EAmIA;IArII,2BAAA;GhEq2MD;CACF;AgE/1MD;EA8HA;IAhII,iCAAA;GhEq2MD;CACF;AgE91MD;EAwHA;IC7LE,0BAAA;GjEu6MC;EiEt6MD;IAAU,0BAAA;GjEy6MT;EiEx6MD;IAAU,8BAAA;GjE26MT;EiE16MD;;IACU,+BAAA;GjE66MT;CACF;AgEx2MD;EAmHA;IArHI,0BAAA;GhE82MD;CACF;AgEx2MD;EA8GA;IAhHI,2BAAA;GhE82MD;CACF;AgEx2MD;EAyGA;IA3GI,iCAAA;GhE82MD;CACF;AgEv2MD;EAmGA;IC7LE,0BAAA;GjEq8MC;EiEp8MD;IAAU,0BAAA;GjEu8MT;EiEt8MD;IAAU,8BAAA;GjEy8MT;EiEx8MD;;IACU,+BAAA;GjE28MT;CACF;AgEj3MD;EA8FA;IAhGI,0BAAA;GhEu3MD;CACF;AgEj3MD;EAyFA;IA3FI,2BAAA;GhEu3MD;CACF;AgEj3MD;EAoFA;IAtFI,iCAAA;GhEu3MD;CACF;AgEh3MD;EA8EA;IC7LE,0BAAA;GjEm+MC;EiEl+MD;IAAU,0BAAA;GjEq+MT;EiEp+MD;IAAU,8BAAA;GjEu+MT;EiEt+MD;;IACU,+BAAA;GjEy+MT;CACF;AgE13MD;EAyEA;IA3EI,0BAAA;GhEg4MD;CACF;AgE13MD;EAoEA;IAtEI,2BAAA;GhEg4MD;CACF;AgE13MD;EA+DA;IAjEI,iCAAA;GhEg4MD;CACF;AgEz3MD;EAyDA;ICrLE,yBAAA;GjEy/MC;CACF;AgEz3MD;EAoDA;ICrLE,yBAAA;GjE8/MC;CACF;AgEz3MD;EA+CA;ICrLE,yBAAA;GjEmgNC;CACF;AgEz3MD;EA0CA;ICrLE,yBAAA;GjEwgNC;CACF;AgEt3MD;ECnJE,yBAAA;CjE4gND;AgEn3MD;EA4BA;IC7LE,0BAAA;GjEwhNC;EiEvhND;IAAU,0BAAA;GjE0hNT;EiEzhND;IAAU,8BAAA;GjE4hNT;EiE3hND;;IACU,+BAAA;GjE8hNT;CACF;AgEj4MD;EACE,yBAAA;ChEm4MD;AgE93MD;EAqBA;IAvBI,0BAAA;GhEo4MD;CACF;AgEl4MD;EACE,yBAAA;ChEo4MD;AgE/3MD;EAcA;IAhBI,2BAAA;GhEq4MD;CACF;AgEn4MD;EACE,yBAAA;ChEq4MD;AgEh4MD;EAOA;IATI,iCAAA;GhEs4MD;CACF;AgE/3MD;EACA;ICrLE,yBAAA;GjEujNC;CACF","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\002a\";\n}\n.glyphicon-plus:before {\n content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n.form-control::-ms-expand {\n border: 0;\n background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c;\n}\n.btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default .badge {\n color: #fff;\n background-color: #333;\n}\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #fff;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #fff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #ccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #fff;\n border: 1px solid #ddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #23527c;\n background-color: #eeeeee;\n border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #fff;\n border-color: #ddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #fff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #fff;\n line-height: 1;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #fff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n text-decoration: none;\n color: #555;\n background-color: #f5f5f5;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 12px;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #fff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #fff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #fff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #fff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: floor((@gutter / 2));\n padding-right: ceil((@gutter / 2));\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: ceil((@gutter / -2));\n margin-right: floor((@gutter / -2));\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: ceil((@grid-gutter-width / 2));\n padding-right: floor((@grid-gutter-width / 2));\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Unstyle the caret on `<select>`s in IE10+.\n &::-ms-expand {\n border: 0;\n background-color: transparent;\n }\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 8.3, iOS doesn't support `datetime` or `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n &.form-control {\n line-height: @input-height-base;\n }\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n min-height: (@line-height-computed + @font-size-base);\n\n &.input-lg,\n &.input-sm {\n padding-left: 0;\n padding-right: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n border-radius: @input-border-radius-small;\n }\n select.form-control {\n height: @input-height-small;\n line-height: @input-height-small;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-small;\n min-height: (@line-height-computed + @font-size-small);\n padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n border-radius: @input-border-radius-large;\n }\n select.form-control {\n height: @input-height-large;\n line-height: @input-height-large;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-large;\n min-height: (@line-height-computed + @font-size-large);\n padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: floor((@grid-gutter-width / 2));\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-large-vertical + 1);\n font-size: @font-size-large;\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n font-size: @font-size-small;\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n .opacity(.65);\n .box-shadow(none);\n }\n\n a& {\n &.disabled,\n fieldset[disabled] & {\n pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n }\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 25%);\n }\n &:hover {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n\n &:hover,\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 17%);\n border-color: darken(@border, 25%);\n }\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus,\n &.focus {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-top: @caret-width-base solid ~\"\\9\"; // IE8\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base dashed;\n border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn,\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n .border-top-radius(@btn-border-radius-base);\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n .border-top-radius(0);\n .border-bottom-radius(@btn-border-radius-base);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n \n &:focus {\n z-index: 3;\n }\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @input-border-radius;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @input-border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @input-border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n z-index: 2;\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 3;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding-top: @jumbotron-padding;\n padding-bottom: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: @jumbotron-heading-font-size;\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n\n // Fix collapse in webkit from max-width: 100% and display: table-cell.\n &.img-thumbnail {\n max-width: none;\n }\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a&,\n button& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n > .panel-heading + .panel-collapse > .list-group {\n .list-group-item:first-child {\n .border-top-radius(0);\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-small;\n\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n",".reset-text() {\n font-family: @font-family-base;\n // We deliberately do NOT reset font-size.\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: @line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-base;\n\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000px);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: (@carousel-control-font-size * 1.5);\n height: (@carousel-control-font-size * 1.5);\n margin-top: (@carousel-control-font-size / -2);\n font-size: (@carousel-control-font-size * 1.5);\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: (@carousel-control-font-size / -2);\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: (@carousel-control-font-size / -2);\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table !important; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]} \ No newline at end of file diff --git a/wwwroot/help/css/bootstrap.min.css b/wwwroot/help/css/bootstrap.min.css deleted file mode 100644 index 4cf729e434..0000000000 --- a/wwwroot/help/css/bootstrap.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/wwwroot/help/css/bootstrap.min.css.map b/wwwroot/help/css/bootstrap.min.css.map deleted file mode 100644 index 5f49bb3744..0000000000 --- a/wwwroot/help/css/bootstrap.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":";;;;4EAQA,KACE,YAAA,WACA,yBAAA,KACA,qBAAA,KAOF,KACE,OAAA,EAaF,QAAA,MAAA,QAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,KAAA,IAAA,QAAA,QAaE,QAAA,MAQF,MAAA,OAAA,SAAA,MAIE,QAAA,aACA,eAAA,SAQF,sBACE,QAAA,KACA,OAAA,EAQF,SAAA,SAEE,QAAA,KAUF,EACE,iBAAA,YAQF,SAAA,QAEE,QAAA,EAUF,YACE,cAAA,IAAA,OAOF,EAAA,OAEE,YAAA,IAOF,IACE,WAAA,OAQF,GACE,OAAA,MAAA,EACA,UAAA,IAOF,KACE,MAAA,KACA,WAAA,KAOF,MACE,UAAA,IAOF,IAAA,IAEE,SAAA,SACA,UAAA,IACA,YAAA,EACA,eAAA,SAGF,IACE,IAAA,MAGF,IACE,OAAA,OAUF,IACE,OAAA,EAOF,eACE,SAAA,OAUF,OACE,OAAA,IAAA,KAOF,GACE,OAAA,EAAA,mBAAA,YAAA,gBAAA,YACA,WAAA,YAOF,IACE,SAAA,KAOF,KAAA,IAAA,IAAA,KAIE,YAAA,UAAA,UACA,UAAA,IAkBF,OAAA,MAAA,SAAA,OAAA,SAKE,OAAA,EACA,KAAA,QACA,MAAA,QAOF,OACE,SAAA,QAUF,OAAA,OAEE,eAAA,KAWF,OAAA,wBAAA,kBAAA,mBAIE,mBAAA,OACA,OAAA,QAOF,iBAAA,qBAEE,OAAA,QAOF,yBAAA,wBAEE,QAAA,EACA,OAAA,EAQF,MACE,YAAA,OAWF,qBAAA,kBAEE,mBAAA,WAAA,gBAAA,WAAA,WAAA,WACA,QAAA,EASF,8CAAA,8CAEE,OAAA,KAQF,mBACE,mBAAA,YACA,gBAAA,YAAA,WAAA,YAAA,mBAAA,UASF,iDAAA,8CAEE,mBAAA,KAOF,SACE,QAAA,MAAA,OAAA,MACA,OAAA,EAAA,IACA,OAAA,IAAA,MAAA,OAQF,OACE,QAAA,EACA,OAAA,EAOF,SACE,SAAA,KAQF,SACE,YAAA,IAUF,MACE,eAAA,EACA,gBAAA,SAGF,GAAA,GAEE,QAAA,uFCjUF,aA7FI,EAAA,OAAA,QAGI,MAAA,eACA,YAAA,eACA,WAAA,cAAA,mBAAA,eACA,WAAA,eAGJ,EAAA,UAEI,gBAAA,UAGJ,cACI,QAAA,KAAA,WAAA,IAGJ,kBACI,QAAA,KAAA,YAAA,IAKJ,6BAAA,mBAEI,QAAA,GAGJ,WAAA,IAEI,OAAA,IAAA,MAAA,KC4KL,kBAAA,MDvKK,MC0KL,QAAA,mBDrKK,IE8KN,GDLC,kBAAA,MDrKK,ICwKL,UAAA,eCUD,GF5KM,GE2KN,EF1KM,QAAA,ECuKL,OAAA,ECSD,GF3KM,GCsKL,iBAAA,MD/JK,QCkKL,QAAA,KCSD,YFtKU,oBCiKT,iBAAA,eD7JK,OCgKL,OAAA,IAAA,MAAA,KD5JK,OC+JL,gBAAA,mBCSD,UFpKU,UC+JT,iBAAA,eDzJS,mBEkKV,mBDLC,OAAA,IAAA,MAAA,gBEjPD,WACA,YAAA,uBFsPD,IAAA,+CE7OC,IAAK,sDAAuD,4BAA6B,iDAAkD,gBAAiB,gDAAiD,eAAgB,+CAAgD,mBAAoB,2EAA4E,cAE7W,WACA,SAAA,SACA,IAAA,IACA,QAAA,aACA,YAAA,uBACA,WAAA,OACA,YAAA,IACA,YAAA,EAIkC,uBAAA,YAAW,wBAAA,UACX,2BAAW,QAAA,QAEX,uBDuPlC,QAAS,QCtPyB,sBFiPnC,uBEjP8C,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,qBAAW,QAAA,QACX,0BAAW,QAAA,QACX,qBAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,sBAAW,QAAA,QACX,yBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,+BAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,8BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,yBAAW,QAAA,QACX,8BAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,gCAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,iCAAW,QAAA,QACX,0BAAW,QAAA,QACX,6BAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,gCAAW,QAAA,QACX,gCAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,0BAAW,QAAA,QACX,+BAAW,QAAA,QACX,+BAAW,QAAA,QACX,wBAAW,QAAA,QACX,+BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,0BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,2BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,mCAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,+BAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,yBAAW,QAAA,QACX,6BAAW,QAAA,QACX,+BAAW,QAAA,QACX,0BAAW,QAAA,QACX,gCAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,kCAAW,QAAA,QACX,oCAAW,QAAA,QACX,sBAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,0BAAW,QAAA,QACX,4BAAW,QAAA,QACX,qCAAW,QAAA,QACX,oCAAW,QAAA,QACX,kCAAW,QAAA,QACX,oCAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,uBAAW,QAAA,QACX,mCAAW,QAAA,QACX,uCAAW,QAAA,QACX,gCAAW,QAAA,QACX,oCAAW,QAAA,QACX,qCAAW,QAAA,QACX,yCAAW,QAAA,QACX,4BAAW,QAAA,QACX,yBAAW,QAAA,QACX,gCAAW,QAAA,QACX,8BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,0BAAW,QAAA,QACX,6BAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,gCAAW,QAAA,QACX,8BAAW,QAAA,QACX,8BAAW,QAAA,QACX,8BAAW,QAAA,QACX,2BAAW,QAAA,QACX,0BAAW,QAAA,QACX,yBAAW,QAAA,QACX,6BAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,iCAAW,QAAA,QACX,oCAAW,QAAA,QACX,iCAAW,QAAA,QACX,+BAAW,QAAA,QACX,+BAAW,QAAA,QACX,iCAAW,QAAA,QACX,qBAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QASX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,yBAAW,QAAA,QACX,yBAAW,QAAA,QACX,+BAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,uBAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,2BAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,mCAAW,QAAA,QACX,4BAAW,QAAA,QACX,oCAAW,QAAA,QACX,kCAAW,QAAA,QACX,iCAAW,QAAA,QACX,+BAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,kCAAW,QAAA,QACX,mCAAW,QAAA,QACX,sCAAW,QAAA,QACX,0CAAW,QAAA,QACX,oCAAW,QAAA,QACX,wCAAW,QAAA,QACX,qCAAW,QAAA,QACX,iCAAW,QAAA,QACX,gCAAW,QAAA,QACX,kCAAW,QAAA,QACX,+BAAW,QAAA,QACX,0BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QCtS/C,0BCgEE,QAAA,QHi+BF,EDNC,mBAAA,WGxhCI,gBAAiB,WFiiCZ,WAAY,WGl+BZ,OADL,QJg+BJ,mBAAA,WGthCI,gBAAiB,WACpB,WAAA,WHyhCD,KGrhCC,UAAW,KAEX,4BAAA,cAEA,KACA,YAAA,iBAAA,UAAA,MAAA,WHuhCD,UAAA,KGnhCC,YAAa,WF4hCb,MAAO,KACP,iBAAkB,KExhClB,OADA,MAEA,OHqhCD,SG/gCC,YAAa,QACb,UAAA,QACA,YAAA,QAEA,EFwhCA,MAAO,QEthCL,gBAAA,KAIF,QH8gCD,QKnkCC,MAAA,QAEA,gBAAA,ULskCD,QGxgCC,QAAS,KAAK,OACd,QAAA,IAAA,KAAA,yBH0gCD,eAAA,KGngCC,OHsgCD,OAAA,ECSD,IACE,eAAgB,ODDjB,4BMhlCC,0BLmlCF,gBKplCE,iBADA,eH4EA,QAAS,MACT,UAAA,KHwgCD,OAAA,KGjgCC,aACA,cAAA,IAEA,eACA,QAAA,aC6FA,UAAA,KACK,OAAA,KACG,QAAA,IEvLR,YAAA,WACA,iBAAA,KACA,OAAA,IAAA,MAAA,KNgmCD,cAAA,IGlgCC,mBAAoB,IAAI,IAAI,YAC5B,cAAA,IAAA,IAAA,YHogCD,WAAA,IAAA,IAAA,YG7/BC,YACA,cAAA,IAEA,GHggCD,WAAA,KGx/BC,cAAe,KACf,OAAA,EACA,WAAA,IAAA,MAAA,KAEA,SACA,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EH0/BD,OAAA,KGl/BC,SAAA,OF2/BA,KAAM,cEz/BJ,OAAA,EAEA,0BACA,yBACA,SAAA,OACA,MAAA,KHo/BH,OAAA,KGz+BC,OAAQ,EACR,SAAA,QH2+BD,KAAA,KCSD,cACE,OAAQ,QAQV,IACA,IMnpCE,IACA,IACA,IACA,INyoCF,GACA,GACA,GACA,GACA,GACA,GDAC,YAAA,QOnpCC,YAAa,IN4pCb,YAAa,IACb,MAAO,QAoBT,WAZA,UAaA,WAZA,UM7pCI,WN8pCJ,UM7pCI,WN8pCJ,UM7pCI,WN8pCJ,UDMC,WCLD,UACA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SMrpCE,YAAa,INyqCb,YAAa,EACb,MAAO,KAGT,IMzqCE,IAJF,IN4qCA,GAEA,GDLC,GCSC,WAAY,KACZ,cAAe,KASjB,WANA,UDCC,WCCD,UM7qCA,WN+qCA,UACA,UANA,SM7qCI,UN+qCJ,SM5qCA,UN8qCA,SAQE,UAAW,IAGb,IMrrCE,IAJF,INwrCA,GAEA,GDLC,GCSC,WAAY,KACZ,cAAe,KASjB,WANA,UDCC,WCCD,UMxrCA,WN0rCA,UACA,UANA,SMzrCI,UN2rCJ,SMvrCA,UNyrCA,SMzrCU,UAAA,IACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KAOR,IADF,GPusCC,UAAA,KCSD,EM1sCE,OAAA,EAAA,EAAA,KAEA,MPqsCD,cAAA,KOhsCC,UAAW,KAwOX,YAAa,IA1OX,YAAA,IPusCH,yBO9rCC,MNusCE,UAAW,MMlsCf,OAAA,MAEE,UAAA,IAKF,MP2rCC,KO3rCsB,QAAA,KP8rCtB,iBAAA,QO7rCsB,WPgsCtB,WAAA,KO/rCsB,YPksCtB,WAAA,MOjsCsB,aPosCtB,WAAA,OOnsCsB,cPssCtB,WAAA,QOnsCsB,aPssCtB,YAAA,OOrsCsB,gBPwsCtB,eAAA,UOvsCsB,gBP0sCtB,eAAA,UOtsCC,iBPysCD,eAAA,WQ5yCC,YR+yCD,MAAA,KCSD,cOrzCI,MAAA,QAHF,qBDwGF,qBP8sCC,MAAA,QCSD,cO5zCI,MAAA,QAHF,qBD2GF,qBPktCC,MAAA,QCSD,WOn0CI,MAAA,QAHF,kBD8GF,kBPstCC,MAAA,QCSD,cO10CI,MAAA,QAHF,qBDiHF,qBP0tCC,MAAA,QCSD,aOj1CI,MAAA,QDwHF,oBAHF,oBExHE,MAAA,QACA,YR21CA,MAAO,KQz1CL,iBAAA,QAHF,mBF8HF,mBP4tCC,iBAAA,QCSD,YQh2CI,iBAAA,QAHF,mBFiIF,mBPguCC,iBAAA,QCSD,SQv2CI,iBAAA,QAHF,gBFoIF,gBPouCC,iBAAA,QCSD,YQ92CI,iBAAA,QAHF,mBFuIF,mBPwuCC,iBAAA,QCSD,WQr3CI,iBAAA,QF6IF,kBADF,kBAEE,iBAAA,QPuuCD,aO9tCC,eAAgB,INuuChB,OAAQ,KAAK,EAAE,KMruCf,cAAA,IAAA,MAAA,KAFF,GPmuCC,GCSC,WAAY,EACZ,cAAe,KM/tCf,MP2tCD,MO5tCD,MAPI,MASF,cAAA,EAIF,eALE,aAAA,EACA,WAAA,KPmuCD,aO/tCC,aAAc,EAKZ,YAAA,KACA,WAAA,KP8tCH,gBOxtCC,QAAS,aACT,cAAA,IACA,aAAA,IAEF,GNiuCE,WAAY,EM/tCZ,cAAA,KAGA,GADF,GP2tCC,YAAA,WOvtCC,GP0tCD,YAAA,IOpnCD,GAvFM,YAAA,EAEA,yBACA,kBGtNJ,MAAA,KACA,MAAA,MACA,SAAA,OVs6CC,MAAA,KO9nCC,WAAY,MAhFV,cAAA,SPitCH,YAAA,OOvsCD,kBNitCE,YAAa,OM3sCjB,0BPusCC,YOtsCC,OAAA,KA9IqB,cAAA,IAAA,OAAA,KAmJvB,YACE,UAAA,IACA,eAAA,UAEA,WPusCD,QAAA,KAAA,KOlsCG,OAAA,EAAA,EAAA,KN2sCF,UAAW,OACX,YAAa,IAAI,MAAM,KMrtCzB,yBPgtCC,wBOhtCD,yBN0tCE,cAAe,EMpsCb,kBAFA,kBACA,iBPmsCH,QAAA,MOhsCG,UAAA,INysCF,YAAa,WACb,MAAO,KMjsCT,yBP4rCC,yBO5rCD,wBAEE,QAAA,cAEA,oBACA,sBACA,cAAA,KP8rCD,aAAA,EOxrCG,WAAA,MNisCF,aAAc,IAAI,MAAM,KACxB,YAAa,EMjsCX,kCNmsCJ,kCMpsCe,iCACX,oCNosCJ,oCDLC,mCCUC,QAAS,GMlsCX,iCNosCA,iCM1sCM,gCAOJ,mCNosCF,mCDLC,kCO9rCC,QAAA,cPmsCD,QWx+CC,cAAe,KVi/Cf,WAAY,OACZ,YAAa,WU9+Cb,KX0+CD,IWt+CD,IACE,KACA,YAAA,MAAA,OAAA,SAAA,cAAA,UAEA,KACA,QAAA,IAAA,IXw+CD,UAAA,IWp+CC,MAAO,QACP,iBAAA,QACA,cAAA,IAEA,IACA,QAAA,IAAA,IACA,UAAA,IV6+CA,MU7+CA,KXs+CD,iBAAA,KW5+CC,cAAe,IASb,mBAAA,MAAA,EAAA,KAAA,EAAA,gBACA,WAAA,MAAA,EAAA,KAAA,EAAA,gBAEA,QV8+CF,QU9+CE,EXs+CH,UAAA,KWj+CC,YAAa,IACb,mBAAA,KACA,WAAA,KAEA,IACA,QAAA,MACA,QAAA,MACA,OAAA,EAAA,EAAA,KACA,UAAA,KACA,YAAA,WACA,MAAA,KACA,WAAA,UXm+CD,UAAA,WW9+CC,iBAAkB,QAehB,OAAA,IAAA,MAAA,KACA,cAAA,IAEA,SACA,QAAA,EACA,UAAA,QXk+CH,MAAA,QW79CC,YAAa,SACb,iBAAA,YACA,cAAA,EC1DF,gBCHE,WAAA,MACA,WAAA,OAEA,Wb+hDD,cAAA,KYzhDC,aAAA,KAqEA,aAAc,KAvEZ,YAAA,KZgiDH,yBY3hDC,WAkEE,MAAO,OZ89CV,yBY7hDC,WA+DE,MAAO,OZm+CV,0BY1hDC,WCvBA,MAAA,QAGA,iBbojDD,cAAA,KYvhDC,aAAc,KCvBd,aAAA,KACA,YAAA,KCAE,KACE,aAAA,MAEA,YAAA,MAGA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UdijDL,SAAA,ScjiDG,WAAA,IACE,cAAA,KdmiDL,aAAA,Kc3hDG,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud8hDH,MAAA,Kc9hDG,WdiiDH,MAAA,KcjiDG,WdoiDH,MAAA,acpiDG,WduiDH,MAAA,acviDG,Ud0iDH,MAAA,Ic1iDG,Ud6iDH,MAAA,ac7iDG,UdgjDH,MAAA,achjDG,UdmjDH,MAAA,IcnjDG,UdsjDH,MAAA,actjDG,UdyjDH,MAAA,aczjDG,Ud4jDH,MAAA,Ic5jDG,Ud+jDH,MAAA,achjDG,UdmjDH,MAAA,YcnjDG,gBdsjDH,MAAA,KctjDG,gBdyjDH,MAAA,aczjDG,gBd4jDH,MAAA,ac5jDG,ed+jDH,MAAA,Ic/jDG,edkkDH,MAAA,aclkDG,edqkDH,MAAA,acrkDG,edwkDH,MAAA,IcxkDG,ed2kDH,MAAA,ac3kDG,ed8kDH,MAAA,ac9kDG,edilDH,MAAA,IcjlDG,edolDH,MAAA,ac/kDG,edklDH,MAAA,YcjmDG,edomDH,MAAA,KcpmDG,gBdumDH,KAAA,KcvmDG,gBd0mDH,KAAA,ac1mDG,gBd6mDH,KAAA,ac7mDG,edgnDH,KAAA,IchnDG,edmnDH,KAAA,acnnDG,edsnDH,KAAA,actnDG,edynDH,KAAA,IcznDG,ed4nDH,KAAA,ac5nDG,ed+nDH,KAAA,ac/nDG,edkoDH,KAAA,IcloDG,edqoDH,KAAA,achoDG,edmoDH,KAAA,YcpnDG,edunDH,KAAA,KcvnDG,kBd0nDH,YAAA,Kc1nDG,kBd6nDH,YAAA,ac7nDG,kBdgoDH,YAAA,achoDG,iBdmoDH,YAAA,IcnoDG,iBdsoDH,YAAA,actoDG,iBdyoDH,YAAA,aczoDG,iBd4oDH,YAAA,Ic5oDG,iBd+oDH,YAAA,ac/oDG,iBdkpDH,YAAA,aclpDG,iBdqpDH,YAAA,IcrpDG,iBdwpDH,YAAA,acxpDG,iBd2pDH,YAAA,Yc7rDG,iBACE,YAAA,EAOJ,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud2rDD,MAAA,Kc3rDC,Wd8rDD,MAAA,Kc9rDC,WdisDD,MAAA,acjsDC,WdosDD,MAAA,acpsDC,UdusDD,MAAA,IcvsDC,Ud0sDD,MAAA,ac1sDC,Ud6sDD,MAAA,ac7sDC,UdgtDD,MAAA,IchtDC,UdmtDD,MAAA,acntDC,UdstDD,MAAA,acttDC,UdytDD,MAAA,IcztDC,Ud4tDD,MAAA,ac7sDC,UdgtDD,MAAA,YchtDC,gBdmtDD,MAAA,KcntDC,gBdstDD,MAAA,acttDC,gBdytDD,MAAA,acztDC,ed4tDD,MAAA,Ic5tDC,ed+tDD,MAAA,ac/tDC,edkuDD,MAAA,acluDC,edquDD,MAAA,IcruDC,edwuDD,MAAA,acxuDC,ed2uDD,MAAA,ac3uDC,ed8uDD,MAAA,Ic9uDC,edivDD,MAAA,ac5uDC,ed+uDD,MAAA,Yc9vDC,ediwDD,MAAA,KcjwDC,gBdowDD,KAAA,KcpwDC,gBduwDD,KAAA,acvwDC,gBd0wDD,KAAA,ac1wDC,ed6wDD,KAAA,Ic7wDC,edgxDD,KAAA,achxDC,edmxDD,KAAA,acnxDC,edsxDD,KAAA,IctxDC,edyxDD,KAAA,aczxDC,ed4xDD,KAAA,ac5xDC,ed+xDD,KAAA,Ic/xDC,edkyDD,KAAA,ac7xDC,edgyDD,KAAA,YcjxDC,edoxDD,KAAA,KcpxDC,kBduxDD,YAAA,KcvxDC,kBd0xDD,YAAA,ac1xDC,kBd6xDD,YAAA,ac7xDC,iBdgyDD,YAAA,IchyDC,iBdmyDD,YAAA,acnyDC,iBdsyDD,YAAA,actyDC,iBdyyDD,YAAA,IczyDC,iBd4yDD,YAAA,ac5yDC,iBd+yDD,YAAA,ac/yDC,iBdkzDD,YAAA,IclzDC,iBdqzDD,YAAA,acrzDC,iBdwzDD,YAAA,YY/yDD,iBE3CE,YAAA,GAQF,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udy1DD,MAAA,Kcz1DC,Wd41DD,MAAA,Kc51DC,Wd+1DD,MAAA,ac/1DC,Wdk2DD,MAAA,acl2DC,Udq2DD,MAAA,Icr2DC,Udw2DD,MAAA,acx2DC,Ud22DD,MAAA,ac32DC,Ud82DD,MAAA,Ic92DC,Udi3DD,MAAA,acj3DC,Udo3DD,MAAA,acp3DC,Udu3DD,MAAA,Icv3DC,Ud03DD,MAAA,ac32DC,Ud82DD,MAAA,Yc92DC,gBdi3DD,MAAA,Kcj3DC,gBdo3DD,MAAA,acp3DC,gBdu3DD,MAAA,acv3DC,ed03DD,MAAA,Ic13DC,ed63DD,MAAA,ac73DC,edg4DD,MAAA,ach4DC,edm4DD,MAAA,Icn4DC,eds4DD,MAAA,act4DC,edy4DD,MAAA,acz4DC,ed44DD,MAAA,Ic54DC,ed+4DD,MAAA,ac14DC,ed64DD,MAAA,Yc55DC,ed+5DD,MAAA,Kc/5DC,gBdk6DD,KAAA,Kcl6DC,gBdq6DD,KAAA,acr6DC,gBdw6DD,KAAA,acx6DC,ed26DD,KAAA,Ic36DC,ed86DD,KAAA,ac96DC,edi7DD,KAAA,acj7DC,edo7DD,KAAA,Icp7DC,edu7DD,KAAA,acv7DC,ed07DD,KAAA,ac17DC,ed67DD,KAAA,Ic77DC,edg8DD,KAAA,ac37DC,ed87DD,KAAA,Yc/6DC,edk7DD,KAAA,Kcl7DC,kBdq7DD,YAAA,Kcr7DC,kBdw7DD,YAAA,acx7DC,kBd27DD,YAAA,ac37DC,iBd87DD,YAAA,Ic97DC,iBdi8DD,YAAA,acj8DC,iBdo8DD,YAAA,acp8DC,iBdu8DD,YAAA,Icv8DC,iBd08DD,YAAA,ac18DC,iBd68DD,YAAA,ac78DC,iBdg9DD,YAAA,Ich9DC,iBdm9DD,YAAA,acn9DC,iBds9DD,YAAA,YY18DD,iBE9CE,YAAA,GAQF,0BACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udu/DD,MAAA,Kcv/DC,Wd0/DD,MAAA,Kc1/DC,Wd6/DD,MAAA,ac7/DC,WdggED,MAAA,achgEC,UdmgED,MAAA,IcngEC,UdsgED,MAAA,actgEC,UdygED,MAAA,aczgEC,Ud4gED,MAAA,Ic5gEC,Ud+gED,MAAA,ac/gEC,UdkhED,MAAA,aclhEC,UdqhED,MAAA,IcrhEC,UdwhED,MAAA,aczgEC,Ud4gED,MAAA,Yc5gEC,gBd+gED,MAAA,Kc/gEC,gBdkhED,MAAA,aclhEC,gBdqhED,MAAA,acrhEC,edwhED,MAAA,IcxhEC,ed2hED,MAAA,ac3hEC,ed8hED,MAAA,ac9hEC,ediiED,MAAA,IcjiEC,edoiED,MAAA,acpiEC,eduiED,MAAA,acviEC,ed0iED,MAAA,Ic1iEC,ed6iED,MAAA,acxiEC,ed2iED,MAAA,Yc1jEC,ed6jED,MAAA,Kc7jEC,gBdgkED,KAAA,KchkEC,gBdmkED,KAAA,acnkEC,gBdskED,KAAA,actkEC,edykED,KAAA,IczkEC,ed4kED,KAAA,ac5kEC,ed+kED,KAAA,ac/kEC,edklED,KAAA,IcllEC,edqlED,KAAA,acrlEC,edwlED,KAAA,acxlEC,ed2lED,KAAA,Ic3lEC,ed8lED,KAAA,aczlEC,ed4lED,KAAA,Yc7kEC,edglED,KAAA,KchlEC,kBdmlED,YAAA,KcnlEC,kBdslED,YAAA,actlEC,kBdylED,YAAA,aczlEC,iBd4lED,YAAA,Ic5lEC,iBd+lED,YAAA,ac/lEC,iBdkmED,YAAA,aclmEC,iBdqmED,YAAA,IcrmEC,iBdwmED,YAAA,acxmEC,iBd2mED,YAAA,ac3mEC,iBd8mED,YAAA,Ic9mEC,iBdinED,YAAA,acjnEC,iBdonED,YAAA,YevrED,iBACA,YAAA,GAGA,MACA,iBAAA,YAEA,Qf0rED,YAAA,IexrEC,eAAgB,IAChB,MAAA,Kf0rED,WAAA,KenrEC,GACA,WAAA,KfurED,OezrEC,MAAO,KdosEP,UAAW,KACX,cAAe,KcxrET,mBd2rER,mBc1rEQ,mBAHA,mBACA,mBd2rER,mBDHC,QAAA,IepsEC,YAAa,WAoBX,eAAA,IACA,WAAA,IAAA,MAAA,KArBJ,mBdmtEE,eAAgB,OAChB,cAAe,IAAI,MAAM,KDJ1B,uCCMD,uCcttEA,wCdutEA,wCcnrEI,2CANI,2CfqrEP,WAAA,Ee1qEG,mBf6qEH,WAAA,IAAA,MAAA,KCWD,cACE,iBAAkB,KchqEpB,6BdmqEA,6BclqEE,6BAZM,6BfuqEP,6BCMD,6BDHC,QAAA,ICWD,gBACE,OAAQ,IAAI,MAAM,Kc3qEpB,4Bd8qEA,4Bc9qEA,4BAQQ,4Bf+pEP,4BCMD,4Bc9pEM,OAAA,IAAA,MAAA,KAYF,4BAFJ,4BfqpEC,oBAAA,IexoEG,yCf2oEH,iBAAA,QejoEC,4BACA,iBAAA,QfqoED,uBe/nEG,SAAA,Od0oEF,QAAS,aczoEL,MAAA,KAEA,sBfkoEL,sBgB9wEC,SAAA,OfyxEA,QAAS,WACT,MAAO,KAST,0BetxEE,0BfgxEF,0BAGA,0BezxEM,0BAMJ,0BfixEF,0BAGA,0BACA,0BDNC,0BCAD,0BAGA,0BASE,iBAAkB,QDLnB,sCgBnyEC,sCAAA,oCf0yEF,sCevxEM,sCf4xEJ,iBAAkB,QASpB,2Be3yEE,2BfqyEF,2BAGA,2Be9yEM,2BAMJ,2BfsyEF,2BAGA,2BACA,2BDNC,2BCAD,2BAGA,2BASE,iBAAkB,QDLnB,uCgBxzEC,uCAAA,qCf+zEF,uCe5yEM,uCfizEJ,iBAAkB,QASpB,wBeh0EE,wBf0zEF,wBAGA,wBen0EM,wBAMJ,wBf2zEF,wBAGA,wBACA,wBDNC,wBCAD,wBAGA,wBASE,iBAAkB,QDLnB,oCgB70EC,oCAAA,kCfo1EF,oCej0EM,oCfs0EJ,iBAAkB,QASpB,2Ber1EE,2Bf+0EF,2BAGA,2Bex1EM,2BAMJ,2Bfg1EF,2BAGA,2BACA,2BDNC,2BCAD,2BAGA,2BASE,iBAAkB,QDLnB,uCgBl2EC,uCAAA,qCfy2EF,uCet1EM,uCf21EJ,iBAAkB,QASpB,0Be12EE,0Bfo2EF,0BAGA,0Be72EM,0BAMJ,0Bfq2EF,0BAGA,0BACA,0BDNC,0BCAD,0BAGA,0BASE,iBAAkB,QDLnB,sCejtEC,sCADF,oCdytEA,sCe32EM,sCDoJJ,iBAAA,QA6DF,kBACE,WAAY,KA3DV,WAAA,KAEA,oCACA,kBACA,MAAA,KfqtED,cAAA,Ke9pEC,WAAY,OAnDV,mBAAA,yBfotEH,OAAA,IAAA,MAAA,KCWD,yBACE,cAAe,Ec7qEjB,qCdgrEA,qCcltEI,qCARM,qCfmtET,qCCMD,qCDHC,YAAA,OCWD,kCACE,OAAQ,EcxrEV,0Dd2rEA,0Dc3rEA,0DAzBU,0Df6sET,0DCMD,0DAME,YAAa,EchsEf,yDdmsEA,yDcnsEA,yDArBU,yDfitET,yDCMD,yDAME,aAAc,EDLjB,yDe3sEW,yDEzNV,yDjBm6EC,yDiBl6ED,cAAA,GAMA,SjBm6ED,UAAA,EiBh6EC,QAAS,EACT,OAAA,EACA,OAAA,EAEA,OACA,QAAA,MACA,MAAA,KACA,QAAA,EACA,cAAA,KACA,UAAA,KjBk6ED,YAAA,QiB/5EC,MAAO,KACP,OAAA,EACA,cAAA,IAAA,MAAA,QAEA,MjBi6ED,QAAA,aiBt5EC,UAAW,Kb4BX,cAAA,IACG,YAAA,IJ83EJ,mBiBt5EC,mBAAoB,WhBi6EjB,gBAAiB,WgB/5EpB,WAAA,WjB05ED,qBiBx5EC,kBAGA,OAAQ,IAAI,EAAE,EACd,WAAA,MjBu5ED,YAAA,OiBl5EC,iBACA,QAAA,MAIF,kBhB45EE,QAAS,MgB15ET,MAAA,KAIF,iBAAA,ahB25EE,OAAQ,KIh+ER,uBL29ED,2BK19EC,wBY2EA,QAAS,KAAK,OACd,QAAA,IAAA,KAAA,yBACA,eAAA,KAEA,OACA,QAAA,MjBi5ED,YAAA,IiBv3EC,UAAW,KACX,YAAA,WACA,MAAA,KAEA,cACA,QAAA,MACA,MAAA,KACA,OAAA,KACA,QAAA,IAAA,KACA,UAAA,KACA,YAAA,WACA,MAAA,KbxDA,iBAAA,KACQ,iBAAA,KAyHR,OAAA,IAAA,MAAA,KACK,cAAA,IACG,mBAAA,MAAA,EAAA,IAAA,IAAA,iBJ0zET,WAAA,MAAA,EAAA,IAAA,IAAA,iBkBl8EC,mBAAA,aAAA,YAAA,KAAA,mBAAA,YAAA,KACE,cAAA,aAAA,YAAA,KAAA,WAAA,YAAA,KACA,WAAA,aAAA,YAAA,KAAA,WAAA,YAAA,KdWM,oBJ27ET,aAAA,QI15EC,QAAA,EACE,mBAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,qBACA,WAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,qBAEF,gCAA0B,MAAA,KJ65E3B,QAAA,EI55EiC,oCJ+5EjC,MAAA,KiBl4EG,yCACA,MAAA,KAQF,0BhBw4EA,iBAAkB,YAClB,OAAQ,EgBr4EN,wBjB+3EH,wBiB53EC,iChBu4EA,iBAAkB,KgBr4EhB,QAAA,EAIF,wBACE,iCjB43EH,OAAA,YiB/2EC,sBjBk3ED,OAAA,KiBh2EG,mBhB42EF,mBAAoB,KAEtB,qDgB72EM,8BjBs2EH,8BiBn2EC,wCAAA,+BhB+2EA,YAAa,KgB72EX,iCjB22EH,iCiBx2EC,2CAAA,kChB42EF,0BACA,0BACA,oCACA,2BAKE,YAAa,KgBl3EX,iCjBg3EH,iCACF,2CiBt2EC,kChBy2EA,0BACA,0BACA,oCACA,2BgB32EA,YAAA,MhBm3EF,YgBz2EE,cAAA,KAGA,UADA,OjBm2ED,SAAA,SiBv2EC,QAAS,MhBk3ET,WAAY,KgB12EV,cAAA,KAGA,gBADA,aAEA,WAAA,KjBm2EH,aAAA,KiBh2EC,cAAe,EhB22Ef,YAAa,IACb,OAAQ,QgBt2ER,+BjBk2ED,sCiBp2EC,yBACA,gCAIA,SAAU,ShB02EV,WAAY,MgBx2EZ,YAAA,MAIF,oBAAA,cAEE,WAAA,KAGA,iBADA,cAEA,SAAA,SACA,QAAA,aACA,aAAA,KjB+1ED,cAAA,EiB71EC,YAAa,IhBw2Eb,eAAgB,OgBt2EhB,OAAA,QAUA,kCjBs1ED,4BCWC,WAAY,EACZ,YAAa,KgBz1Eb,wCAAA,qCjBq1ED,8BCOD,+BgBl2EI,2BhBi2EJ,4BAME,OAAQ,YDNT,0BiBz1EG,uBAMF,oCAAA,iChB+1EA,OAAQ,YDNT,yBiBt1EK,sBAaJ,mCAFF,gCAGE,OAAA,YAGA,qBjB20ED,WAAA,KiBz0EC,YAAA,IhBo1EA,eAAgB,IgBl1Ed,cAAA,EjB40EH,8BiB9zED,8BCnQE,cAAA,EACA,aAAA,EAEA,UACA,OAAA,KlBokFD,QAAA,IAAA,KkBlkFC,UAAA,KACE,YAAA,IACA,cAAA,IAGF,gBjB4kFA,OAAQ,KiB1kFN,YAAA,KD2PA,0BAFJ,kBAGI,OAAA,KAEA,6BACA,OAAA,KjB20EH,QAAA,IAAA,KiBj1EC,UAAW,KAST,YAAA,IACA,cAAA,IAVJ,mChBg2EE,OAAQ,KgBl1EN,YAAA,KAGA,6CAjBJ,qCAkBI,OAAA,KAEA,oCACA,OAAA,KjB20EH,WAAA,KiBv0EC,QAAS,IAAI,KC/Rb,UAAA,KACA,YAAA,IAEA,UACA,OAAA,KlBymFD,QAAA,KAAA,KkBvmFC,UAAA,KACE,YAAA,UACA,cAAA,IAGF,gBjBinFA,OAAQ,KiB/mFN,YAAA,KDuRA,0BAFJ,kBAGI,OAAA,KAEA,6BACA,OAAA,KjBo1EH,QAAA,KAAA,KiB11EC,UAAW,KAST,YAAA,UACA,cAAA,IAVJ,mChBy2EE,OAAQ,KgB31EN,YAAA,KAGA,6CAjBJ,qCAkBI,OAAA,KAEA,oCACA,OAAA,KjBo1EH,WAAA,KiB30EC,QAAS,KAAK,KAEd,UAAA,KjB40ED,YAAA,UiBx0EG,cjB20EH,SAAA,SiBt0EC,4BACA,cAAA,OAEA,uBACA,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,MACA,MAAA,KjBy0ED,OAAA,KiBv0EC,YAAa,KhBk1Eb,WAAY,OACZ,eAAgB,KDLjB,oDiBz0EC,uCADA,iCAGA,MAAO,KhBk1EP,OAAQ,KACR,YAAa,KDLd,oDiBz0EC,uCADA,iCAKA,MAAO,KhBg1EP,OAAQ,KACR,YAAa,KAKf,uBAEA,8BAJA,4BADA,yBAEA,oBAEA,2BDNC,4BkBvuFG,mCAJA,yBD0ZJ,gCbvWE,MAAA,QJ6rFD,2BkB1uFG,aAAA,QACE,mBAAA,MAAA,EAAA,IAAA,IAAA,iBd4CJ,WAAA,MAAA,EAAA,IAAA,IAAA,iBJksFD,iCiB31EC,aAAc,QC5YZ,mBAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QACA,WAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QlB2uFH,gCiBh2EC,MAAO,QCtYL,iBAAA,QlByuFH,aAAA,QCWD,oCACE,MAAO,QAKT,uBAEA,8BAJA,4BADA,yBAEA,oBAEA,2BDNC,4BkBrwFG,mCAJA,yBD6ZJ,gCb1WE,MAAA,QJ2tFD,2BkBxwFG,aAAA,QACE,mBAAA,MAAA,EAAA,IAAA,IAAA,iBd4CJ,WAAA,MAAA,EAAA,IAAA,IAAA,iBJguFD,iCiBt3EC,aAAc,QC/YZ,mBAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QACA,WAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QlBywFH,gCiB33EC,MAAO,QCzYL,iBAAA,QlBuwFH,aAAA,QCWD,oCACE,MAAO,QAKT,qBAEA,4BAJA,0BADA,uBAEA,kBAEA,yBDNC,0BkBnyFG,iCAJA,uBDgaJ,8Bb7WE,MAAA,QJyvFD,yBkBtyFG,aAAA,QACE,mBAAA,MAAA,EAAA,IAAA,IAAA,iBd4CJ,WAAA,MAAA,EAAA,IAAA,IAAA,iBJ8vFD,+BiBj5EC,aAAc,QClZZ,mBAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QACA,WAAA,MAAA,EAAA,IAAA,IAAA,iBAAA,EAAA,EAAA,IAAA,QlBuyFH,8BiBt5EC,MAAO,QC5YL,iBAAA,QlBqyFH,aAAA,QiBj5EG,kCjBo5EH,MAAA,QiBj5EG,2CjBo5EH,IAAA,KiBz4EC,mDACA,IAAA,EAEA,YjB44ED,QAAA,MiBzzEC,WAAY,IAwEZ,cAAe,KAtIX,MAAA,QAEA,yBjB23EH,yBiBvvEC,QAAS,aA/HP,cAAA,EACA,eAAA,OjB03EH,2BiB5vEC,QAAS,aAxHP,MAAA,KjBu3EH,eAAA,OiBn3EG,kCACA,QAAA,aAmHJ,0BhB8wEE,QAAS,aACT,eAAgB,OgBv3Ed,wCjBg3EH,6CiBxwED,2CjB2wEC,MAAA,KiB/2EG,wCACA,MAAA,KAmGJ,4BhB0xEE,cAAe,EgBt3Eb,eAAA,OAGA,uBADA,oBjBg3EH,QAAA,aiBtxEC,WAAY,EhBiyEZ,cAAe,EgBv3EX,eAAA,OAsFN,6BAAA,0BAjFI,aAAA,EAiFJ,4CjB+xEC,sCiB12EG,SAAA,SjB62EH,YAAA,EiBl2ED,kDhB82EE,IAAK,GgBp2EL,2BjBi2EH,kCiBl2EG,wBAEA,+BAXF,YAAa,IhBs3Eb,WAAY,EgBr2EV,cAAA,EJviBF,2BIshBF,wBJrhBE,WAAA,KI4jBA,6BAyBA,aAAc,MAnCV,YAAA,MAEA,yBjB01EH,gCACF,YAAA,IiB13EG,cAAe,EAwCf,WAAA,OAwBJ,sDAdQ,MAAA,KjBg1EL,yBACF,+CiBr0EC,YAAA,KAEE,UAAW,MjBw0EZ,yBACF,+CmBt6FG,YAAa,IACf,UAAA,MAGA,KACA,QAAA,aACA,QAAA,IAAA,KAAA,cAAA,EACA,UAAA,KACA,YAAA,IACA,YAAA,WACA,WAAA,OC0CA,YAAA,OACA,eAAA,OACA,iBAAA,aACA,aAAA,ahB+JA,OAAA,QACG,oBAAA,KACC,iBAAA,KACI,gBAAA,KJiuFT,YAAA,KmBz6FG,iBAAA,KlBq7FF,OAAQ,IAAI,MAAM,YAClB,cAAe,IDHhB,kBKx8FC,kBAEA,WACA,kBJ28FF,kBADA,WkBl7FE,QAAA,KAAA,OlBy7FA,QAAS,IAAI,KAAK,yBAClB,eAAgB,KkBn7FhB,WnB46FD,WmB/6FG,WlB27FF,MAAO,KkBt7FL,gBAAA,Kf6BM,YADR,YJq5FD,iBAAA,KmB56FC,QAAA,ElBw7FA,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBAC5B,WAAY,MAAM,EAAE,IAAI,IAAI,iBoBn+FpC,cAGA,ejB8DA,wBACQ,OAAA,YJ65FT,OAAA,kBmB56FG,mBAAA,KlBw7FM,WAAY,KkBt7FhB,QAAA,IASN,eC3DE,yBACA,eAAA,KpBo+FD,aoBj+FC,MAAA,KnB6+FA,iBAAkB,KmB3+FhB,aAAA,KpBq+FH,mBoBn+FO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBo+FH,mBoBj+FC,MAAA,KnB6+FA,iBAAkB,QAClB,aAAc,QmBz+FR,oBADJ,oBpBo+FH,mCoBj+FG,MAAA,KnB6+FF,iBAAkB,QAClB,aAAc,QmBz+FN,0BnB++FV,0BAHA,0BmB7+FM,0BnB++FN,0BAHA,0BDFC,yCoB3+FK,yCnB++FN,yCmB1+FE,MAAA,KnBk/FA,iBAAkB,QAClB,aAAc,QmB3+FZ,oBpBm+FH,oBoBn+FG,mCnBg/FF,iBAAkB,KmB5+FV,4BnBi/FV,4BAHA,4BDHC,6BCOD,6BAHA,6BkB99FA,sCClBM,sCnBi/FN,sCmB3+FI,iBAAA,KACA,aAAA,KDcJ,oBC9DE,MAAA,KACA,iBAAA,KpB6hGD,aoB1hGC,MAAA,KnBsiGA,iBAAkB,QmBpiGhB,aAAA,QpB8hGH,mBoB5hGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB6hGH,mBoB1hGC,MAAA,KnBsiGA,iBAAkB,QAClB,aAAc,QmBliGR,oBADJ,oBpB6hGH,mCoB1hGG,MAAA,KnBsiGF,iBAAkB,QAClB,aAAc,QmBliGN,0BnBwiGV,0BAHA,0BmBtiGM,0BnBwiGN,0BAHA,0BDFC,yCoBpiGK,yCnBwiGN,yCmBniGE,MAAA,KnB2iGA,iBAAkB,QAClB,aAAc,QmBpiGZ,oBpB4hGH,oBoB5hGG,mCnByiGF,iBAAkB,KmBriGV,4BnB0iGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBphGA,sCCrBM,sCnB0iGN,sCmBpiGI,iBAAA,QACA,aAAA,QDkBJ,oBClEE,MAAA,QACA,iBAAA,KpBslGD,aoBnlGC,MAAA,KnB+lGA,iBAAkB,QmB7lGhB,aAAA,QpBulGH,mBoBrlGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBslGH,mBoBnlGC,MAAA,KnB+lGA,iBAAkB,QAClB,aAAc,QmB3lGR,oBADJ,oBpBslGH,mCoBnlGG,MAAA,KnB+lGF,iBAAkB,QAClB,aAAc,QmB3lGN,0BnBimGV,0BAHA,0BmB/lGM,0BnBimGN,0BAHA,0BDFC,yCoB7lGK,yCnBimGN,yCmB5lGE,MAAA,KnBomGA,iBAAkB,QAClB,aAAc,QmB7lGZ,oBpBqlGH,oBoBrlGG,mCnBkmGF,iBAAkB,KmB9lGV,4BnBmmGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBzkGA,sCCzBM,sCnBmmGN,sCmB7lGI,iBAAA,QACA,aAAA,QDsBJ,oBCtEE,MAAA,QACA,iBAAA,KpB+oGD,UoB5oGC,MAAA,KnBwpGA,iBAAkB,QmBtpGhB,aAAA,QpBgpGH,gBoB9oGO,gBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB+oGH,gBoB5oGC,MAAA,KnBwpGA,iBAAkB,QAClB,aAAc,QmBppGR,iBADJ,iBpB+oGH,gCoB5oGG,MAAA,KnBwpGF,iBAAkB,QAClB,aAAc,QmBppGN,uBnB0pGV,uBAHA,uBmBxpGM,uBnB0pGN,uBAHA,uBDFC,sCoBtpGK,sCnB0pGN,sCmBrpGE,MAAA,KnB6pGA,iBAAkB,QAClB,aAAc,QmBtpGZ,iBpB8oGH,iBoB9oGG,gCnB2pGF,iBAAkB,KmBvpGV,yBnB4pGV,yBAHA,yBDHC,0BCOD,0BAHA,0BkB9nGA,mCC7BM,mCnB4pGN,mCmBtpGI,iBAAA,QACA,aAAA,QD0BJ,iBC1EE,MAAA,QACA,iBAAA,KpBwsGD,aoBrsGC,MAAA,KnBitGA,iBAAkB,QmB/sGhB,aAAA,QpBysGH,mBoBvsGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBwsGH,mBoBrsGC,MAAA,KnBitGA,iBAAkB,QAClB,aAAc,QmB7sGR,oBADJ,oBpBwsGH,mCoBrsGG,MAAA,KnBitGF,iBAAkB,QAClB,aAAc,QmB7sGN,0BnBmtGV,0BAHA,0BmBjtGM,0BnBmtGN,0BAHA,0BDFC,yCoB/sGK,yCnBmtGN,yCmB9sGE,MAAA,KnBstGA,iBAAkB,QAClB,aAAc,QmB/sGZ,oBpBusGH,oBoBvsGG,mCnBotGF,iBAAkB,KmBhtGV,4BnBqtGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBnrGA,sCCjCM,sCnBqtGN,sCmB/sGI,iBAAA,QACA,aAAA,QD8BJ,oBC9EE,MAAA,QACA,iBAAA,KpBiwGD,YoB9vGC,MAAA,KnB0wGA,iBAAkB,QmBxwGhB,aAAA,QpBkwGH,kBoBhwGO,kBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBiwGH,kBoB9vGC,MAAA,KnB0wGA,iBAAkB,QAClB,aAAc,QmBtwGR,mBADJ,mBpBiwGH,kCoB9vGG,MAAA,KnB0wGF,iBAAkB,QAClB,aAAc,QmBtwGN,yBnB4wGV,yBAHA,yBmB1wGM,yBnB4wGN,yBAHA,yBDFC,wCoBxwGK,wCnB4wGN,wCmBvwGE,MAAA,KnB+wGA,iBAAkB,QAClB,aAAc,QmBxwGZ,mBpBgwGH,mBoBhwGG,kCnB6wGF,iBAAkB,KmBzwGV,2BnB8wGV,2BAHA,2BDHC,4BCOD,4BAHA,4BkBxuGA,qCCrCM,qCnB8wGN,qCmBxwGI,iBAAA,QACA,aAAA,QDuCJ,mBACE,MAAA,QACA,iBAAA,KnBkuGD,UmB/tGC,YAAA,IlB2uGA,MAAO,QACP,cAAe,EAEjB,UG5wGE,iBemCE,iBflCM,oBJqwGT,6BmBhuGC,iBAAA,YlB4uGA,mBAAoB,KACZ,WAAY,KkBzuGlB,UAEF,iBAAA,gBnBguGD,gBmB9tGG,aAAA,YnBouGH,gBmBluGG,gBAIA,MAAA,QlB0uGF,gBAAiB,UACjB,iBAAkB,YDNnB,0BmBnuGK,0BAUN,mCATM,mClB8uGJ,MAAO,KmB7yGP,gBAAA,KAGA,mBADA,QpBsyGD,QAAA,KAAA,KmB5tGC,UAAW,KlBwuGX,YAAa,UmBpzGb,cAAA,IAGA,mBADA,QpB6yGD,QAAA,IAAA,KmB/tGC,UAAW,KlB2uGX,YAAa,ImB3zGb,cAAA,IAGA,mBADA,QpBozGD,QAAA,IAAA,ImB9tGC,UAAW,KACX,YAAA,IACA,cAAA,IAIF,WACE,QAAA,MnB8tGD,MAAA,KCYD,sBACE,WAAY,IqB53GZ,6BADF,4BtBq3GC,6BIhsGC,MAAA,KAEQ,MJosGT,QAAA,EsBx3GC,mBAAA,QAAA,KAAA,OACE,cAAA,QAAA,KAAA,OtB03GH,WAAA,QAAA,KAAA,OsBr3GC,StBw3GD,QAAA,EsBt3Ga,UtBy3Gb,QAAA,KsBx3Ga,atB23Gb,QAAA,MsB13Ga,etB63Gb,QAAA,UsBz3GC,kBACA,QAAA,gBlBwKA,YACQ,SAAA,SAAA,OAAA,EAOR,SAAA,OACQ,mCAAA,KAAA,8BAAA,KAGR,2BAAA,KACQ,4BAAA,KAAA,uBAAA,KJ8sGT,oBAAA,KuBx5GC,4BAA6B,OAAQ,WACrC,uBAAA,OAAA,WACA,oBAAA,OAAA,WAEA,OACA,QAAA,aACA,MAAA,EACA,OAAA,EACA,YAAA,IACA,eAAA,OvB05GD,WAAA,IAAA,OuBt5GC,WAAY,IAAI,QtBq6GhB,aAAc,IAAI,MAAM,YsBn6GxB,YAAA,IAAA,MAAA,YAKA,UADF,QvBu5GC,SAAA,SuBj5GC,uBACA,QAAA,EAEA,eACA,SAAA,SACA,IAAA,KACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,UAAA,MACA,QAAA,IAAA,EACA,OAAA,IAAA,EAAA,EACA,UAAA,KACA,WAAA,KACA,WAAA,KnBsBA,iBAAA,KACQ,wBAAA,YmBrBR,gBAAA,YtBk6GA,OsBl6GA,IAAA,MAAA,KvBq5GD,OAAA,IAAA,MAAA,gBuBh5GC,cAAA,IACE,mBAAA,EAAA,IAAA,KAAA,iBACA,WAAA,EAAA,IAAA,KAAA,iBAzBJ,0BCzBE,MAAA,EACA,KAAA,KAEA,wBxBu8GD,OAAA,IuBj7GC,OAAQ,IAAI,EAmCV,SAAA,OACA,iBAAA,QAEA,oBACA,QAAA,MACA,QAAA,IAAA,KACA,MAAA,KvBi5GH,YAAA,IuB34GC,YAAA,WtB25GA,MAAO,KsBz5GL,YAAA,OvB+4GH,0BuB74GG,0BAMF,MAAA,QtBu5GA,gBAAiB,KACjB,iBAAkB,QsBp5GhB,yBAEA,+BADA,+BvB04GH,MAAA,KuBh4GC,gBAAA,KtBg5GA,iBAAkB,QAClB,QAAS,EDZV,2BuB93GC,iCAAA,iCAEE,MAAA,KEzGF,iCF2GE,iCAEA,gBAAA,KvBg4GH,OAAA,YuB33GC,iBAAkB,YAGhB,iBAAA,KvB23GH,OAAA,0DuBt3GG,qBvBy3GH,QAAA,MuBh3GC,QACA,QAAA,EAQF,qBACE,MAAA,EACA,KAAA,KAIF,oBACE,MAAA,KACA,KAAA,EAEA,iBACA,QAAA,MACA,QAAA,IAAA,KvB22GD,UAAA,KuBv2GC,YAAa,WACb,MAAA,KACA,YAAA,OAEA,mBACA,SAAA,MACA,IAAA,EvBy2GD,MAAA,EuBr2GC,OAAQ,EACR,KAAA,EACA,QAAA,IAQF,2BtB+2GE,MAAO,EsB32GL,KAAA,KAEA,eACA,sCvB+1GH,QAAA,GuBt2GC,WAAY,EtBs3GZ,cAAe,IAAI,OsB32GjB,cAAA,IAAA,QAEA,uBvB+1GH,8CuB10GC,IAAK,KAXL,OAAA,KApEA,cAAA,IvB85GC,yBuB11GD,6BA1DA,MAAA,EACA,KAAA,KvBw5GD,kC0BviHG,MAAO,KzBujHP,KAAM,GyBnjHR,W1ByiHD,oB0B7iHC,SAAU,SzB6jHV,QAAS,ayBvjHP,eAAA,OAGA,yB1ByiHH,gBCgBC,SAAU,SACV,MAAO,KyBhjHT,gC1ByiHC,gCCYD,+BAFA,+ByBnjHA,uBANM,uBzB0jHN,sBAFA,sBAQE,QAAS,EyBrjHP,qB1B0iHH,2B0BriHD,2BACE,iC1BuiHD,YAAA,KCgBD,aACE,YAAa,KDZd,kB0B7iHD,wBAAA,0BzB8jHE,MAAO,KDZR,kB0BliHD,wBACE,0B1BoiHD,YAAA,I0B/hHC,yE1BkiHD,cAAA,E2BnlHC,4BACG,YAAA,EDsDL,mEzBgjHE,wBAAyB,E0B/lHzB,2BAAA,E3BolHD,6C0B/hHD,8CACE,uBAAA,E1BiiHD,0BAAA,E0B9hHC,sB1BiiHD,MAAA,KCgBD,8D0BlnHE,cAAA,E3BumHD,mE0B9hHD,oECjEE,wBAAA,EACG,2BAAA,EDqEL,oEzB6iHE,uBAAwB,EyB3iHxB,0BAAA,EAiBF,mCACE,iCACA,QAAA,EAEF,iCACE,cAAA,IACA,aAAA,IAKF,oCtB/CE,cAAA,KACQ,aAAA,KsBkDR,iCtBnDA,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBsByDV,0CACE,mBAAA,K1B0gHD,WAAA,K0BtgHC,YACA,YAAA,EAGF,eACE,aAAA,IAAA,IAAA,E1BwgHD,oBAAA,ECgBD,uBACE,aAAc,EAAE,IAAI,IyB7gHlB,yBACA,+BACA,oC1BkgHH,QAAA,M0BzgHC,MAAO,KAcH,MAAA,K1B8/GL,UAAA,KCgBD,oCACE,MAAO,KyBvgHL,8BACA,oC1B4/GH,oC0Bv/GC,0CACE,WAAA,K1By/GH,YAAA,E2BlqHC,4DACC,cAAA,EAQA,sD3B+pHF,uBAAA,I0Bz/GC,wBAAA,IC/KA,2BAAA,EACC,0BAAA,EAQA,sD3BqqHF,uBAAA,E0B1/GC,wBAAyB,EACzB,2BAAA,I1B4/GD,0BAAA,ICgBD,uE0BzrHE,cAAA,E3B8qHD,4E0Bz/GD,6EC7LE,2BAAA,EACC,0BAAA,EDoMH,6EACE,uBAAA,EACA,wBAAA,EAEA,qB1Bu/GD,QAAA,M0B3/GC,MAAO,KzB2gHP,aAAc,MyBpgHZ,gBAAA,SAEA,0B1Bw/GH,gC0BjgHC,QAAS,WAYP,MAAA,K1Bw/GH,MAAA,G0Bp/GG,qC1Bu/GH,MAAA,KCgBD,+CACE,KAAM,KyBh/GF,gDAFA,6C1By+GL,2D0Bx+GK,wDEzOJ,SAAU,SACV,KAAA,cACA,eAAA,K5BotHD,a4BhtHC,SAAA,SACE,QAAA,MACA,gBAAA,S5BmtHH,0B4B3tHC,MAAO,KAeL,cAAA,EACA,aAAA,EAOA,2BACA,SAAA,S5B0sHH,QAAA,E4BxsHG,MAAA,KACE,MAAA,K5B0sHL,cAAA,ECgBD,iCACE,QAAS,EiBtrHT,8BACA,mCACA,sCACA,OAAA,KlB2qHD,QAAA,KAAA,KkBzqHC,UAAA,KjByrHA,YAAa,UACb,cAAe,IiBxrHb,oClB6qHH,yCkB1qHC,4CjB0rHA,OAAQ,KACR,YAAa,KDTd,8C4BltHD,mDAAA,sD3B6tHA,sCACA,2CiB5rHI,8CjBisHF,OAAQ,KiB7sHR,8BACA,mCACA,sCACA,OAAA,KlBksHD,QAAA,IAAA,KkBhsHC,UAAA,KjBgtHA,YAAa,IACb,cAAe,IiB/sHb,oClBosHH,yCkBjsHC,4CjBitHA,OAAQ,KACR,YAAa,KDTd,8C4BhuHD,mDAAA,sD3B2uHA,sCACA,2CiBntHI,8CjBwtHF,OAAQ,K2B5uHR,2B5BguHD,mB4BhuHC,iB3BivHA,QAAS,W2B5uHX,8D5BguHC,sD4BhuHD,oDAEE,cAAA,EAEA,mB5BkuHD,iB4B7tHC,MAAO,GACP,YAAA,OACA,eAAA,OAEA,mBACA,QAAA,IAAA,KACA,UAAA,KACA,YAAA,IACA,YAAA,EACA,MAAA,K5B+tHD,WAAA,O4B5tHC,iBAAA,KACE,OAAA,IAAA,MAAA,KACA,cAAA,I5B+tHH,4B4B5tHC,QAAA,IAAA,KACE,UAAA,KACA,cAAA,I5B+tHH,4B4BlvHC,QAAS,KAAK,K3BkwHd,UAAW,K2BxuHT,cAAA,IAKJ,wCAAA,qC3BwuHE,WAAY,EAEd,uCACA,+BACA,kC0Bh1HE,6CACG,8CC4GL,6D5BwtHC,wE4BvtHC,wBAAA,E5B0tHD,2BAAA,ECgBD,+BACE,aAAc,EAEhB,sCACA,8B2BnuHA,+D5BytHC,oDCWD,iC0Br1HE,4CACG,6CCiHH,uBAAA,E5B2tHD,0BAAA,E4BrtHC,8BAGA,YAAA,E5ButHD,iB4B3tHC,SAAU,SAUR,UAAA,E5BotHH,YAAA,O4BltHK,sB5BqtHL,SAAA,SCgBD,2BACE,YAAa,K2B3tHb,6BAAA,4B5B+sHD,4B4B5sHK,QAAA,EAGJ,kCAAA,wCAGI,aAAA,K5B+sHL,iC6B72HD,uCACE,QAAA,EACA,YAAA,K7Bg3HD,K6Bl3HC,aAAc,EAOZ,cAAA,EACA,WAAA,KARJ,QAWM,SAAA,SACA,QAAA,M7B+2HL,U6B72HK,SAAA,S5B63HJ,QAAS,M4B33HH,QAAA,KAAA,KAMJ,gB7B02HH,gB6Bz2HK,gBAAA,K7B42HL,iBAAA,KCgBD,mB4Bx3HQ,MAAA,KAGA,yBADA,yB7B62HP,MAAA,K6Br2HG,gBAAA,K5Bq3HF,OAAQ,YACR,iBAAkB,Y4Bl3Hd,aAzCN,mB7Bg5HC,mBwBn5HC,iBAAA,KACA,aAAA,QAEA,kBxBs5HD,OAAA,I6Bt5HC,OAAQ,IAAI,EA0DV,SAAA,O7B+1HH,iBAAA,Q6Br1HC,c7Bw1HD,UAAA,K6Bt1HG,UAEA,cAAA,IAAA,MAAA,KALJ,aASM,MAAA,KACA,cAAA,KAEA,e7Bu1HL,aAAA,I6Bt1HK,YAAA,WACE,OAAA,IAAA,MAAA,Y7Bw1HP,cAAA,IAAA,IAAA,EAAA,ECgBD,qBACE,aAAc,KAAK,KAAK,K4B/1HlB,sBAEA,4BADA,4BAEA,MAAA,K7Bo1HP,OAAA,Q6B/0HC,iBAAA,KAqDA,OAAA,IAAA,MAAA,KA8BA,oBAAA,YAnFA,wBAwDE,MAAA,K7B8xHH,cAAA,E6B5xHK,2BACA,MAAA,KA3DJ,6BAgEE,cAAA,IACA,WAAA,OAYJ,iDA0DE,IAAK,KAjED,KAAA,K7B6xHH,yB6B5tHD,2BA9DM,QAAA,W7B6xHL,MAAA,G6Bt2HD,6BAuFE,cAAA,GAvFF,6B5B23HA,aAAc,EACd,cAAe,IDZhB,kC6BzuHD,wCA3BA,wCATM,OAAA,IAAA,MAAA,K7BkxHH,yB6B9uHD,6B5B8vHE,cAAe,IAAI,MAAM,KACzB,cAAe,IAAI,IAAI,EAAE,EDZ1B,kC6Bj3HD,wC7Bk3HD,wC6Bh3HG,oBAAA,MAIE,c7Bk3HL,MAAA,K6B/2HK,gB7Bk3HL,cAAA,ICgBD,iBACE,YAAa,I4B13HP,uBAQR,6B7Bu2HC,6B6Br2HG,MAAA,K7Bw2HH,iBAAA,Q6Bt2HK,gBACA,MAAA,KAYN,mBACE,WAAA,I7B+1HD,YAAA,E6B51HG,e7B+1HH,MAAA,K6B71HK,kBACA,MAAA,KAPN,oBAYI,cAAA,IACA,WAAA,OAYJ,wCA0DE,IAAK,KAjED,KAAA,K7B81HH,yB6B7xHD,kBA9DM,QAAA,W7B81HL,MAAA,G6Br1HD,oBACA,cAAA,GAIE,oBACA,cAAA,EANJ,yB5B62HE,aAAc,EACd,cAAe,IDZhB,8B6B7yHD,oCA3BA,oCATM,OAAA,IAAA,MAAA,K7Bs1HH,yB6BlzHD,yB5Bk0HE,cAAe,IAAI,MAAM,KACzB,cAAe,IAAI,IAAI,EAAE,EDZ1B,8B6B30HD,oC7B40HD,oC6B10HG,oBAAA,MAGA,uB7B60HH,QAAA,K6Bl0HC,qBF3OA,QAAA,M3BkjID,yB8B3iIC,WAAY,KACZ,uBAAA,EACA,wBAAA,EAEA,Q9B6iID,SAAA,S8BriIC,WAAY,KA8nBZ,cAAe,KAhoBb,OAAA,IAAA,MAAA,Y9B4iIH,yB8B5hIC,QAgnBE,cAAe,K9Bi7GlB,yB8BphIC,eACA,MAAA,MAGA,iBACA,cAAA,KAAA,aAAA,KAEA,WAAA,Q9BqhID,2BAAA,M8BnhIC,WAAA,IAAA,MAAA,YACE,mBAAA,MAAA,EAAA,IAAA,EAAA,qB9BqhIH,WAAA,MAAA,EAAA,IAAA,EAAA,qB8B57GD,oBArlBI,WAAA,KAEA,yBAAA,iB9BqhID,MAAA,K8BnhIC,WAAA,EACE,mBAAA,KACA,WAAA,KAEA,0B9BqhIH,QAAA,gB8BlhIC,OAAA,eACE,eAAA,E9BohIH,SAAA,kBCkBD,oBACE,WAAY,QDZf,sC8BlhIK,mC9BihIH,oC8B5gIC,cAAe,E7B+hIf,aAAc,G6Bp+GlB,sCAnjBE,mC7B4hIA,WAAY,MDdX,4D8BtgID,sC9BugID,mCCkBG,WAAY,O6B9gId,kCANE,gC9BygIH,4B8B1gIG,0BAuiBF,aAAc,M7Bs/Gd,YAAa,MAEf,yBDZC,kC8B9gIK,gC9B6gIH,4B8B9gIG,0BAcF,aAAc,EAChB,YAAA,GAMF,mBA8gBE,QAAS,KAhhBP,aAAA,EAAA,EAAA,I9BqgIH,yB8BhgIC,mB7BkhIE,cAAe,G6B7gIjB,qBADA,kB9BmgID,SAAA,M8B5/HC,MAAO,EAggBP,KAAM,E7B+gHN,QAAS,KDdR,yB8BhgID,qB9BigID,kB8BhgIC,cAAA,GAGF,kBACE,IAAA,EACA,aAAA,EAAA,EAAA,I9BogID,qB8B7/HC,OAAQ,EACR,cAAA,EACA,aAAA,IAAA,EAAA,EAEA,cACA,MAAA,K9B+/HD,OAAA,K8B7/HC,QAAA,KAAA,K7B+gIA,UAAW,K6B7gIT,YAAA,KAIA,oBAbJ,oB9B2gIC,gBAAA,K8B1/HG,kB7B6gIF,QAAS,MDdR,yBACF,iC8Bn/HC,uCACA,YAAA,OAGA,eC9LA,SAAA,SACA,MAAA,MD+LA,QAAA,IAAA,KACA,WAAA,IACA,aAAA,KACA,cAAA,I9Bs/HD,iBAAA,Y8Bl/HC,iBAAA,KACE,OAAA,IAAA,MAAA,Y9Bo/HH,cAAA,I8B/+HG,qBACA,QAAA,EAEA,yB9Bk/HH,QAAA,M8BxgIC,MAAO,KAyBL,OAAA,I9Bk/HH,cAAA,I8BvjHD,mCAvbI,WAAA,I9Bm/HH,yB8Bz+HC,eACA,QAAA,MAGE,YACA,OAAA,MAAA,M9B4+HH,iB8B/8HC,YAAA,KA2YA,eAAgB,KAjaZ,YAAA,KAEA,yBACA,iCACA,SAAA,OACA,MAAA,KACA,MAAA,KAAA,WAAA,E9By+HH,iBAAA,Y8B9kHC,OAAQ,E7BimHR,mBAAoB,K6Bz/HhB,WAAA,KAGA,kDAqZN,sC9BqlHC,QAAA,IAAA,KAAA,IAAA,KCmBD,sC6B1/HQ,YAAA,KAmBR,4C9By9HD,4C8B1lHG,iBAAkB,M9B+lHnB,yB8B/lHD,YAtYI,MAAA,K9Bw+HH,OAAA,E8Bt+HK,eACA,MAAA,K9B0+HP,iB8B99HG,YAAa,KACf,eAAA,MAGA,aACA,QAAA,KAAA,K1B9NA,WAAA,IACQ,aAAA,M2B/DR,cAAA,IACA,YAAA,M/B+vID,WAAA,IAAA,MAAA,YiBzuHC,cAAe,IAAI,MAAM,YAwEzB,mBAAoB,MAAM,EAAE,IAAI,EAAE,qBAAyB,EAAE,IAAI,EAAE,qBAtI/D,WAAA,MAAA,EAAA,IAAA,EAAA,qBAAA,EAAA,IAAA,EAAA,qBAEA,yBjB2yHH,yBiBvqHC,QAAS,aA/HP,cAAA,EACA,eAAA,OjB0yHH,2BiB5qHC,QAAS,aAxHP,MAAA,KjBuyHH,eAAA,OiBnyHG,kCACA,QAAA,aAmHJ,0BhBssHE,QAAS,aACT,eAAgB,OgB/yHd,wCjBgyHH,6CiBxrHD,2CjB2rHC,MAAA,KiB/xHG,wCACA,MAAA,KAmGJ,4BhBktHE,cAAe,EgB9yHb,eAAA,OAGA,uBADA,oBjBgyHH,QAAA,aiBtsHC,WAAY,EhBytHZ,cAAe,EgB/yHX,eAAA,OAsFN,6BAAA,0BAjFI,aAAA,EAiFJ,4CjB+sHC,sCiB1xHG,SAAA,SjB6xHH,YAAA,E8BtgID,kDAmWE,IAAK,GAvWH,yBACE,yB9BihIL,cAAA,I8B//HD,oCAoVE,cAAe,GA1Vf,yBACA,aACA,MAAA,KACA,YAAA,E1BzPF,eAAA,EACQ,aAAA,EJswIP,YAAA,EACF,OAAA,E8BtgIG,mBAAoB,KACtB,WAAA,M9B0gID,8B8BtgIC,WAAY,EACZ,uBAAA,EHzUA,wBAAA,EAQA,mDACC,cAAA,E3B40IF,uBAAA,I8BlgIC,wBAAyB,IChVzB,2BAAA,EACA,0BAAA,EDkVA,YCnVA,WAAA,IACA,cAAA,IDqVA,mBCtVA,WAAA,KACA,cAAA,KD+VF,mBChWE,WAAA,KACA,cAAA,KDuWF,aAsSE,WAAY,KA1SV,cAAA,KAEA,yB9BkgID,aACF,MAAA,K8Br+HG,aAAc,KAhBhB,YAAA,MACA,yBE5WA,aF8WE,MAAA,eAFF,cAKI,MAAA,gB9B0/HH,aAAA,M8Bh/HD,4BACA,aAAA,GADF,gBAKI,iBAAA,Q9Bm/HH,aAAA,QCmBD,8B6BngIM,MAAA,KARN,oC9B6/HC,oC8B/+HG,MAAA,Q9Bk/HH,iBAAA,Y8B7+HK,6B9Bg/HL,MAAA,KCmBD,iC6B//HQ,MAAA,KAKF,uC9B4+HL,uCCmBC,MAAO,KACP,iBAAkB,Y6B5/HZ,sCAIF,4C9B0+HL,4CCmBC,MAAO,KACP,iBAAkB,Q6B1/HZ,wCAxCR,8C9BohIC,8C8Bt+HG,MAAA,K9By+HH,iBAAA,YCmBD,+B6Bz/HM,aAAA,KAGA,qCApDN,qC9B8hIC,iBAAA,KCmBD,yC6Bv/HI,iBAAA,KAOE,iCAAA,6B7Bq/HJ,aAAc,Q6Bj/HR,oCAiCN,0C9Bk8HD,0C8B9xHC,MAAO,KA7LC,iBAAA,QACA,yB7Bi/HR,sD6B/+HU,MAAA,KAKF,4D9B49HP,4DCmBC,MAAO,KACP,iBAAkB,Y6B5+HV,2DAIF,iE9B09HP,iECmBC,MAAO,KACP,iBAAkB,Q6B1+HV,6D9B69HX,mEADE,mE8B7jIC,MAAO,KA8GP,iBAAA,aAEE,6B9Bo9HL,MAAA,K8B/8HG,mC9Bk9HH,MAAA,KCmBD,0B6Bl+HM,MAAA,KAIA,gCAAA,gC7Bm+HJ,MAAO,K6Bz9HT,0CARQ,0CASN,mD9B08HD,mD8Bz8HC,MAAA,KAFF,gBAKI,iBAAA,K9B68HH,aAAA,QCmBD,8B6B79HM,MAAA,QARN,oC9Bu9HC,oC8Bz8HG,MAAA,K9B48HH,iBAAA,Y8Bv8HK,6B9B08HL,MAAA,QCmBD,iC6Bz9HQ,MAAA,QAKF,uC9Bs8HL,uCCmBC,MAAO,KACP,iBAAkB,Y6Bt9HZ,sCAIF,4C9Bo8HL,4CCmBC,MAAO,KACP,iBAAkB,Q6Bp9HZ,wCAxCR,8C9B8+HC,8C8B/7HG,MAAA,K9Bk8HH,iBAAA,YCmBD,+B6Bl9HM,aAAA,KAGA,qCArDN,qC9Bw/HC,iBAAA,KCmBD,yC6Bh9HI,iBAAA,KAME,iCAAA,6B7B+8HJ,aAAc,Q6B38HR,oCAuCN,0C9Bs5HD,0C8B93HC,MAAO,KAvDC,iBAAA,QAuDV,yBApDU,kE9By7HP,aAAA,Q8Bt7HO,0D9By7HP,iBAAA,QCmBD,sD6Bz8HU,MAAA,QAKF,4D9Bs7HP,4DCmBC,MAAO,KACP,iBAAkB,Y6Bt8HV,2DAIF,iE9Bo7HP,iECmBC,MAAO,KACP,iBAAkB,Q6Bp8HV,6D9Bu7HX,mEADE,mE8B7hIC,MAAO,KA+GP,iBAAA,aAEE,6B9Bm7HL,MAAA,Q8B96HG,mC9Bi7HH,MAAA,KCmBD,0B6Bj8HM,MAAA,QAIA,gCAAA,gC7Bk8HJ,MAAO,KgC1kJT,0CH0oBQ,0CGzoBN,mDjC2jJD,mDiC1jJC,MAAA,KAEA,YACA,QAAA,IAAA,KjC8jJD,cAAA,KiCnkJC,WAAY,KAQV,iBAAA,QjC8jJH,cAAA,IiC3jJK,eACA,QAAA,ajC+jJL,yBiC3kJC,QAAS,EAAE,IAkBT,MAAA,KjC4jJH,QAAA,SkC/kJC,oBACA,MAAA,KAEA,YlCklJD,QAAA,akCtlJC,aAAc,EAOZ,OAAA,KAAA,ElCklJH,cAAA,ICmBD,eiClmJM,QAAA,OAEA,iBACA,oBACA,SAAA,SACA,MAAA,KACA,QAAA,IAAA,KACA,YAAA,KACA,YAAA,WlCmlJL,MAAA,QkCjlJG,gBAAA,KjComJF,iBAAkB,KiCjmJZ,OAAA,IAAA,MAAA,KPVH,6B3B8lJJ,gCkChlJG,YAAA,EjCmmJF,uBAAwB,I0B1nJxB,0BAAA,I3B4mJD,4BkC3kJG,+BjC8lJF,wBAAyB,IACzB,2BAA4B,IiC3lJxB,uBAFA,uBAGA,0BAFA,0BlCilJL,QAAA,EkCzkJG,MAAA,QjC4lJF,iBAAkB,KAClB,aAAc,KAEhB,sBiC1lJM,4BAFA,4BjC6lJN,yBiC1lJM,+BAFA,+BAGA,QAAA,ElC8kJL,MAAA,KkCroJC,OAAQ,QjCwpJR,iBAAkB,QAClB,aAAc,QiCtlJV,wBAEA,8BADA,8BjCulJN,2BiCzlJM,iCjC0lJN,iCDZC,MAAA,KkClkJC,OAAQ,YjCqlJR,iBAAkB,KkChqJd,aAAA,KAEA,oBnCipJL,uBmC/oJG,QAAA,KAAA,KlCkqJF,UAAW,K0B7pJX,YAAA,U3B+oJD,gCmC9oJG,mClCiqJF,uBAAwB,I0B1qJxB,0BAAA,I3B4pJD,+BkC7kJD,kCjCgmJE,wBAAyB,IkChrJrB,2BAAA,IAEA,oBnCiqJL,uBmC/pJG,QAAA,IAAA,KlCkrJF,UAAW,K0B7qJX,YAAA,I3B+pJD,gCmC9pJG,mClCirJF,uBAAwB,I0B1rJxB,0BAAA,I3B4qJD,+BoC9qJD,kCACE,wBAAA,IACA,2BAAA,IAEA,OpCgrJD,aAAA,EoCprJC,OAAQ,KAAK,EAOX,WAAA,OpCgrJH,WAAA,KCmBD,UmChsJM,QAAA,OAEA,YACA,eACA,QAAA,apCirJL,QAAA,IAAA,KoC/rJC,iBAAkB,KnCktJlB,OAAQ,IAAI,MAAM,KmC/rJd,cAAA,KAnBN,kBpCosJC,kBCmBC,gBAAiB,KmC5rJb,iBAAA,KA3BN,eAAA,kBAkCM,MAAA,MAlCN,mBAAA,sBnCguJE,MAAO,KmCrrJH,mBAEA,yBADA,yBpCwqJL,sBqCrtJC,MAAO,KACP,OAAA,YACA,iBAAA,KAEA,OACA,QAAA,OACA,QAAA,KAAA,KAAA,KACA,UAAA,IACA,YAAA,IACA,YAAA,EACA,MAAA,KrCutJD,WAAA,OqCntJG,YAAA,OpCsuJF,eAAgB,SoCpuJZ,cAAA,MrCutJL,cqCrtJK,cAKJ,MAAA,KACE,gBAAA,KrCktJH,OAAA,QqC7sJG,aACA,QAAA,KAOJ,YCtCE,SAAA,StCkvJD,IAAA,KCmBD,eqChwJM,iBAAA,KALJ,2BD0CF,2BrC+sJC,iBAAA,QCmBD,eqCvwJM,iBAAA,QALJ,2BD8CF,2BrCktJC,iBAAA,QCmBD,eqC9wJM,iBAAA,QALJ,2BDkDF,2BrCqtJC,iBAAA,QCmBD,YqCrxJM,iBAAA,QALJ,wBDsDF,wBrCwtJC,iBAAA,QCmBD,eqC5xJM,iBAAA,QALJ,2BD0DF,2BrC2tJC,iBAAA,QCmBD,cqCnyJM,iBAAA,QCDJ,0BADF,0BAEE,iBAAA,QAEA,OACA,QAAA,aACA,UAAA,KACA,QAAA,IAAA,IACA,UAAA,KACA,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OvCwxJD,YAAA,OuCrxJC,eAAA,OACE,iBAAA,KvCuxJH,cAAA,KuClxJG,aACA,QAAA,KAGF,YtCqyJA,SAAU,SsCnyJR,IAAA,KAMA,0BvC+wJH,eCmBC,IAAK,EsChyJD,QAAA,IAAA,IvCmxJL,cuCjxJK,cAKJ,MAAA,KtC+xJA,gBAAiB,KsC7xJf,OAAA,QvC+wJH,+BuC3wJC,4BACE,MAAA,QvC6wJH,iBAAA,KuCzwJG,wBvC4wJH,MAAA,MuCxwJG,+BvC2wJH,aAAA,IwCp0JC,uBACA,YAAA,IAEA,WACA,YAAA,KxCu0JD,eAAA,KwC50JC,cAAe,KvC+1Jf,MAAO,QuCt1JL,iBAAA,KAIA,eAbJ,cAcI,MAAA,QxCu0JH,awCr1JC,cAAe,KAmBb,UAAA,KxCq0JH,YAAA,ICmBD,cuCn1JI,iBAAA,QAEA,sBxCo0JH,4BwC91JC,cAAe,KA8Bb,aAAA,KxCm0JH,cAAA,IwChzJD,sBAfI,UAAA,KxCo0JD,oCwCj0JC,WvCo1JA,YAAa,KuCl1JX,eAAA,KxCo0JH,sBwC1zJD,4BvC60JE,cAAe,KuCj1Jb,aAAA,KC5CJ,ezC+2JD,cyC92JC,UAAA,MAGA,WACA,QAAA,MACA,QAAA,IACA,cAAA,KrCiLA,YAAA,WACK,iBAAA,KACG,OAAA,IAAA,MAAA,KJisJT,cAAA,IyC33JC,mBAAoB,OAAO,IAAI,YxC84J1B,cAAe,OAAO,IAAI,YwCj4J7B,WAAA,OAAA,IAAA,YAKF,iBzC82JD,eCmBC,aAAc,KACd,YAAa,KwC13JX,mBA1BJ,kBzCq4JC,kByC12JG,aAAA,QCzBJ,oBACE,QAAA,IACA,MAAA,KAEA,O1Cy4JD,QAAA,K0C74JC,cAAe,KAQb,OAAA,IAAA,MAAA,YAEA,cAAA,IAVJ,UAeI,WAAA,E1Cq4JH,MAAA,QCmBD,mByCl5JI,YAAA,IArBJ,SAyBI,U1Ck4JH,cAAA,ECmBD,WyC34JE,WAAA,IAFF,mBAAA,mBAMI,cAAA,KAEA,0BACA,0B1C43JH,SAAA,S0Cp3JC,IAAK,KCvDL,MAAA,MACA,MAAA,Q3C+6JD,e0Cz3JC,MAAO,QClDL,iBAAA,Q3C86JH,aAAA,Q2C36JG,kB3C86JH,iBAAA,Q2Ct7JC,2BACA,MAAA,Q3C07JD,Y0Ch4JC,MAAO,QCtDL,iBAAA,Q3Cy7JH,aAAA,Q2Ct7JG,e3Cy7JH,iBAAA,Q2Cj8JC,wBACA,MAAA,Q3Cq8JD,e0Cv4JC,MAAO,QC1DL,iBAAA,Q3Co8JH,aAAA,Q2Cj8JG,kB3Co8JH,iBAAA,Q2C58JC,2BACA,MAAA,Q3Cg9JD,c0C94JC,MAAO,QC9DL,iBAAA,Q3C+8JH,aAAA,Q2C58JG,iB3C+8JH,iBAAA,Q4Ch9JC,0BAAQ,MAAA,QACR,wCAAQ,K5Cs9JP,oBAAA,KAAA,E4Cl9JD,GACA,oBAAA,EAAA,GACA,mCAAQ,K5Cw9JP,oBAAA,KAAA,E4C19JD,GACA,oBAAA,EAAA,GACA,gCAAQ,K5Cw9JP,oBAAA,KAAA,E4Ch9JD,GACA,oBAAA,EAAA,GAGA,UACA,OAAA,KxCsCA,cAAA,KACQ,SAAA,OJ86JT,iBAAA,Q4Ch9JC,cAAe,IACf,mBAAA,MAAA,EAAA,IAAA,IAAA,eACA,WAAA,MAAA,EAAA,IAAA,IAAA,eAEA,cACA,MAAA,KACA,MAAA,EACA,OAAA,KACA,UAAA,KxCyBA,YAAA,KACQ,MAAA,KAyHR,WAAA,OACK,iBAAA,QACG,mBAAA,MAAA,EAAA,KAAA,EAAA,gBJk0JT,WAAA,MAAA,EAAA,KAAA,EAAA,gB4C78JC,mBAAoB,MAAM,IAAI,K3Cw+JzB,cAAe,MAAM,IAAI,K4Cv+J5B,WAAA,MAAA,IAAA,KDEF,sBCAE,gCDAF,iBAAA,yK5Ci9JD,iBAAA,oK4C18JC,iBAAiB,iK3Cs+JjB,wBAAyB,KAAK,KGlhK9B,gBAAA,KAAA,KJ4/JD,qBI1/JS,+BwCmDR,kBAAmB,qBAAqB,GAAG,OAAO,SErElD,aAAA,qBAAA,GAAA,OAAA,S9C+gKD,UAAA,qBAAA,GAAA,OAAA,S6C59JG,sBACA,iBAAA,Q7Cg+JH,wC4C38JC,iBAAkB,yKEzElB,iBAAA,oK9CuhKD,iBAAA,iK6Cp+JG,mBACA,iBAAA,Q7Cw+JH,qC4C/8JC,iBAAkB,yKE7ElB,iBAAA,oK9C+hKD,iBAAA,iK6C5+JG,sBACA,iBAAA,Q7Cg/JH,wC4Cn9JC,iBAAkB,yKEjFlB,iBAAA,oK9CuiKD,iBAAA,iK6Cp/JG,qBACA,iBAAA,Q7Cw/JH,uC+C/iKC,iBAAkB,yKAElB,iBAAA,oK/CgjKD,iBAAA,iK+C7iKG,O/CgjKH,WAAA,KC4BD,mB8CtkKE,WAAA,E/C+iKD,O+C3iKD,YACE,SAAA,O/C6iKD,KAAA,E+CziKC,Y/C4iKD,MAAA,Q+CxiKG,c/C2iKH,QAAA,MC4BD,4B8CjkKE,UAAA,KAGF,aAAA,mBAEE,aAAA,KAGF,YAAA,kB9CkkKE,cAAe,K8C3jKjB,YAHE,Y/CuiKD,a+CniKC,QAAA,W/CsiKD,eAAA,I+CliKC,c/CqiKD,eAAA,O+ChiKC,cACA,eAAA,OAMF,eACE,WAAA,EACA,cAAA,ICvDF,YAEE,aAAA,EACA,WAAA,KAQF,YACE,aAAA,EACA,cAAA,KAGA,iBACA,SAAA,SACA,QAAA,MhDglKD,QAAA,KAAA,KgD7kKC,cAAA,KrB3BA,iBAAA,KACC,OAAA,IAAA,MAAA,KqB6BD,6BACE,uBAAA,IrBvBF,wBAAA,I3BymKD,4BgDvkKC,cAAe,E/CmmKf,2BAA4B,I+CjmK5B,0BAAA,IAFF,kBAAA,uBAKI,MAAA,KAIF,2CAAA,gD/CmmKA,MAAO,K+C/lKL,wBAFA,wBhD4kKH,6BgD3kKG,6BAKF,MAAO,KACP,gBAAA,KACA,iBAAA,QAKA,uB/C+lKA,MAAO,KACP,WAAY,K+C5lKV,0BhDskKH,gCgDrkKG,gCALF,MAAA,K/CsmKA,OAAQ,YACR,iBAAkB,KDxBnB,mDgD/kKC,yDAAA,yD/C4mKA,MAAO,QDxBR,gDgDnkKC,sDAAA,sD/CgmKA,MAAO,K+C5lKL,wBAEA,8BADA,8BhDskKH,QAAA,EgD3kKC,MAAA,K/CumKA,iBAAkB,QAClB,aAAc,QAEhB,iDDpBC,wDCuBD,uDADA,uD+C5mKE,8DAYI,6D/C+lKN,uD+C3mKE,8D/C8mKF,6DAKE,MAAO,QDxBR,8CiD7qKG,oDADF,oDAEE,MAAA,QAEA,yBhD0sKF,MAAO,QgDxsKH,iBAAA,QAFF,0BAAA,+BAKI,MAAA,QAGF,mDAAA,wDhD2sKJ,MAAO,QDtBR,gCiDnrKO,gCAGF,qCAFE,qChD8sKN,MAAO,QACP,iBAAkB,QAEpB,iCgD1sKQ,uCAFA,uChD6sKR,sCDtBC,4CiDtrKO,4CArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,sBhDuuKF,MAAO,QgDruKH,iBAAA,QAFF,uBAAA,4BAKI,MAAA,QAGF,gDAAA,qDhDwuKJ,MAAO,QDtBR,6BiDhtKO,6BAGF,kCAFE,kChD2uKN,MAAO,QACP,iBAAkB,QAEpB,8BgDvuKQ,oCAFA,oChD0uKR,mCDtBC,yCiDntKO,yCArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,yBhDowKF,MAAO,QgDlwKH,iBAAA,QAFF,0BAAA,+BAKI,MAAA,QAGF,mDAAA,wDhDqwKJ,MAAO,QDtBR,gCiD7uKO,gCAGF,qCAFE,qChDwwKN,MAAO,QACP,iBAAkB,QAEpB,iCgDpwKQ,uCAFA,uChDuwKR,sCDtBC,4CiDhvKO,4CArBN,MAAA,KACE,iBAAA,QACA,aAAA,QAEA,wBhDiyKF,MAAO,QgD/xKH,iBAAA,QAFF,yBAAA,8BAKI,MAAA,QAGF,kDAAA,uDhDkyKJ,MAAO,QDtBR,+BiD1wKO,+BAGF,oCAFE,oChDqyKN,MAAO,QACP,iBAAkB,QAEpB,gCgDjyKQ,sCAFA,sChDoyKR,qCDtBC,2CiD7wKO,2CDkGN,MAAO,KACP,iBAAA,QACA,aAAA,QAEF,yBACE,WAAA,EACA,cAAA,IE1HF,sBACE,cAAA,EACA,YAAA,IAEA,O9C0DA,cAAA,KACQ,iBAAA,KJgvKT,OAAA,IAAA,MAAA,YkDtyKC,cAAe,IACf,mBAAA,EAAA,IAAA,IAAA,gBlDwyKD,WAAA,EAAA,IAAA,IAAA,gBkDlyKC,YACA,QAAA,KvBnBC,e3B0zKF,QAAA,KAAA,KkDzyKC,cAAe,IAAI,MAAM,YAMvB,uBAAA,IlDsyKH,wBAAA,IkDhyKC,0CACA,MAAA,QAEA,alDmyKD,WAAA,EkDvyKC,cAAe,EjDm0Kf,UAAW,KACX,MAAO,QDtBR,oBkD7xKC,sBjDqzKF,eiD3zKI,mBAKJ,qBAEE,MAAA,QvBvCA,cACC,QAAA,KAAA,K3By0KF,iBAAA,QkDxxKC,WAAY,IAAI,MAAM,KjDozKtB,2BAA4B,IiDjzK1B,0BAAA,IAHJ,mBAAA,mCAMM,cAAA,ElD2xKL,oCkDtxKG,oDjDkzKF,aAAc,IAAI,EiDhzKZ,cAAA,EvBtEL,4D3Bg2KF,4EkDpxKG,WAAA,EjDgzKF,uBAAwB,IiD9yKlB,wBAAA,IvBtEL,0D3B81KF,0EkD7yKC,cAAe,EvB1Df,2BAAA,IACC,0BAAA,IuB0FH,+EAEI,uBAAA,ElDixKH,wBAAA,EkD7wKC,wDlDgxKD,iBAAA,EC4BD,0BACE,iBAAkB,EiDryKpB,8BlD6wKC,ckD7wKD,gCjD0yKE,cAAe,EiD1yKjB,sCAQM,sBlD2wKL,wCC4BC,cAAe,K0Bx5Kf,aAAA,KuByGF,wDlDwxKC,0BC4BC,uBAAwB,IACxB,wBAAyB,IiDrzK3B,yFAoBQ,yFlD2wKP,2DkD5wKO,2DjDwyKN,uBAAwB,IACxB,wBAAyB,IAK3B,wGiDj0KA,wGjD+zKA,wGDtBC,wGCuBD,0EiDh0KA,0EjD8zKA,0EiDtyKU,0EjD8yKR,uBAAwB,IAK1B,uGiD30KA,uGjDy0KA,uGDtBC,uGCuBD,yEiD10KA,yEjDw0KA,yEiD5yKU,yEvB7HR,wBAAA,IuBiGF,sDlDwzKC,yBC4BC,2BAA4B,IAC5B,0BAA2B,IiD3yKrB,qFA1CR,qFAyCQ,wDlDsxKP,wDC4BC,2BAA4B,IAC5B,0BAA2B,IAG7B,oGDtBC,oGCwBD,oGiDj2KA,oGjD81KA,uEiDhzKU,uEjDkzKV,uEiDh2KA,uEjDs2KE,0BAA2B,IAG7B,mGDtBC,mGCwBD,mGiD32KA,mGjDw2KA,sEiDtzKU,sEjDwzKV,sEiD12KA,sEjDg3KE,2BAA4B,IiDrzK1B,0BlD8xKH,qCkDz1KD,0BAAA,qCA+DI,WAAA,IAAA,MAAA,KA/DJ,kDAAA,kDAmEI,WAAA,EAnEJ,uBAAA,yCjD83KE,OAAQ,EiDpzKA,+CjDwzKV,+CiDl4KA,+CjDo4KA,+CAEA,+CANA,+CDjBC,iECoBD,iEiDn4KA,iEjDq4KA,iEAEA,iEANA,iEAWE,YAAa,EiD9zKL,8CjDk0KV,8CiDh5KA,8CjDk5KA,8CAEA,8CANA,8CDjBC,gECoBD,gEiDj5KA,gEjDm5KA,gEAEA,gEANA,gEAWE,aAAc,EAIhB,+CiD95KA,+CjD45KA,+CiDr0KU,+CjDw0KV,iEiD/5KA,iEjD65KA,iEDtBC,iEC6BC,cAAe,EAEjB,8CiDt0KU,8CjDw0KV,8CiDx6KA,8CjDu6KA,gEDtBC,gECwBD,gEiDn0KI,gEACA,cAAA,EAUJ,yBACE,cAAA,ElDsyKD,OAAA,EkDlyKG,aACA,cAAA,KANJ,oBASM,cAAA,ElDqyKL,cAAA,IkDhyKG,2BlDmyKH,WAAA,IC4BD,4BiD3zKM,cAAA,EAKF,wDAvBJ,wDlDwzKC,WAAA,IAAA,MAAA,KkD/xKK,2BlDkyKL,WAAA,EmDrhLC,uDnDwhLD,cAAA,IAAA,MAAA,KmDrhLG,eACA,aAAA,KnDyhLH,8BmD3hLC,MAAA,KAMI,iBAAA,QnDwhLL,aAAA,KmDrhLK,0DACA,iBAAA,KAGJ,qCAEI,MAAA,QnDshLL,iBAAA,KmDviLC,yDnD0iLD,oBAAA,KmDviLG,eACA,aAAA,QnD2iLH,8BmD7iLC,MAAA,KAMI,iBAAA,QnD0iLL,aAAA,QmDviLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnDwiLL,iBAAA,KmDzjLC,yDnD4jLD,oBAAA,QmDzjLG,eACA,aAAA,QnD6jLH,8BmD/jLC,MAAA,QAMI,iBAAA,QnD4jLL,aAAA,QmDzjLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnD0jLL,iBAAA,QmD3kLC,yDnD8kLD,oBAAA,QmD3kLG,YACA,aAAA,QnD+kLH,2BmDjlLC,MAAA,QAMI,iBAAA,QnD8kLL,aAAA,QmD3kLK,uDACA,iBAAA,QAGJ,kCAEI,MAAA,QnD4kLL,iBAAA,QmD7lLC,sDnDgmLD,oBAAA,QmD7lLG,eACA,aAAA,QnDimLH,8BmDnmLC,MAAA,QAMI,iBAAA,QnDgmLL,aAAA,QmD7lLK,0DACA,iBAAA,QAGJ,qCAEI,MAAA,QnD8lLL,iBAAA,QmD/mLC,yDnDknLD,oBAAA,QmD/mLG,cACA,aAAA,QnDmnLH,6BmDrnLC,MAAA,QAMI,iBAAA,QnDknLL,aAAA,QmD/mLK,yDACA,iBAAA,QAGJ,oCAEI,MAAA,QnDgnLL,iBAAA,QoD/nLC,wDACA,oBAAA,QAEA,kBACA,SAAA,SpDkoLD,QAAA,MoDvoLC,OAAQ,EnDmqLR,QAAS,EACT,SAAU,OAEZ,yCmDzpLI,wBADA,yBAEA,yBACA,wBACA,SAAA,SACA,IAAA,EACA,OAAA,EpDkoLH,KAAA,EoD7nLC,MAAO,KACP,OAAA,KpD+nLD,OAAA,EoD1nLC,wBpD6nLD,eAAA,OqDvpLC,uBACA,eAAA,IAEA,MACA,WAAA,KACA,QAAA,KjDwDA,cAAA,KACQ,iBAAA,QJmmLT,OAAA,IAAA,MAAA,QqDlqLC,cAAe,IASb,mBAAA,MAAA,EAAA,IAAA,IAAA,gBACA,WAAA,MAAA,EAAA,IAAA,IAAA,gBAKJ,iBACE,aAAA,KACA,aAAA,gBAEF,SACE,QAAA,KACA,cAAA,ICtBF,SACE,QAAA,IACA,cAAA,IAEA,OACA,MAAA,MACA,UAAA,KjCRA,YAAA,IAGA,YAAA,ErBwrLD,MAAA,KsDhrLC,YAAA,EAAA,IAAA,EAAA,KrD4sLA,OAAQ,kBqD1sLN,QAAA,GjCbF,aiCeE,ajCZF,MAAA,KrBgsLD,gBAAA,KsD5qLC,OAAA,QACE,OAAA,kBACA,QAAA,GAEA,aACA,mBAAA,KtD8qLH,QAAA,EuDnsLC,OAAQ,QACR,WAAA,IvDqsLD,OAAA,EuDhsLC,YACA,SAAA,OAEA,OACA,SAAA,MACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EAIA,QAAA,KvDgsLD,QAAA,KuD7rLC,SAAA,OnD+GA,2BAAA,MACI,QAAA,EAEI,0BAkER,mBAAA,kBAAA,IAAA,SAEK,cAAA,aAAA,IAAA,SACG,WAAA,UAAA,IAAA,SJghLT,kBAAA,kBuDnsLC,cAAA,kBnD2GA,aAAA,kBACI,UAAA,kBAEI,wBJ2lLT,kBAAA,euDvsLK,cAAe,eACnB,aAAA,eACA,UAAA,eAIF,mBACE,WAAA,OACA,WAAA,KvDwsLD,cuDnsLC,SAAU,SACV,MAAA,KACA,OAAA,KAEA,eACA,SAAA,SnDaA,iBAAA,KACQ,wBAAA,YmDZR,gBAAA,YtD+tLA,OsD/tLA,IAAA,MAAA,KAEA,OAAA,IAAA,MAAA,evDqsLD,cAAA,IuDjsLC,QAAS,EACT,mBAAA,EAAA,IAAA,IAAA,eACA,WAAA,EAAA,IAAA,IAAA,eAEA,gBACA,SAAA,MACA,IAAA,EACA,MAAA,EvDmsLD,OAAA,EuDjsLC,KAAA,ElCrEA,QAAA,KAGA,iBAAA,KkCmEA,qBlCtEA,OAAA,iBAGA,QAAA,EkCwEF,mBACE,OAAA,kBACA,QAAA,GAIF,cACE,QAAA,KvDmsLD,cAAA,IAAA,MAAA,QuD9rLC,qBACA,WAAA,KAKF,aACE,OAAA,EACA,YAAA,WAIF,YACE,SAAA,SACA,QAAA,KvD6rLD,cuD/rLC,QAAS,KAQP,WAAA,MACA,WAAA,IAAA,MAAA,QATJ,wBAaI,cAAA,EvDyrLH,YAAA,IuDrrLG,mCvDwrLH,YAAA,KuDlrLC,oCACA,YAAA,EAEA,yBACA,SAAA,SvDqrLD,IAAA,QuDnqLC,MAAO,KAZP,OAAA,KACE,SAAA,OvDmrLD,yBuDhrLD,cnDvEA,MAAA,MACQ,OAAA,KAAA,KmD2ER,eAAY,mBAAA,EAAA,IAAA,KAAA,evDkrLX,WAAA,EAAA,IAAA,KAAA,euD5qLD,UAFA,MAAA,OvDorLD,yBwDl0LC,UACA,MAAA,OCNA,SAEA,SAAA,SACA,QAAA,KACA,QAAA,MACA,YAAA,iBAAA,UAAA,MAAA,WACA,UAAA,KACA,WAAA,OACA,YAAA,IACA,YAAA,WACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,ODHA,WAAA,OnCVA,aAAA,OAGA,UAAA,OrBy1LD,YAAA,OwD90LC,OAAA,iBnCdA,QAAA,ErBg2LD,WAAA,KwDj1LY,YAAmB,OAAA,kBxDq1L/B,QAAA,GwDp1LY,aAAmB,QAAA,IAAA,ExDw1L/B,WAAA,KwDv1LY,eAAmB,QAAA,EAAA,IxD21L/B,YAAA,IwD11LY,gBAAmB,QAAA,IAAA,ExD81L/B,WAAA,IwDz1LC,cACA,QAAA,EAAA,IACA,YAAA,KAEA,eACA,UAAA,MxD41LD,QAAA,IAAA,IwDx1LC,MAAO,KACP,WAAA,OACA,iBAAA,KACA,cAAA,IAEA,exD01LD,SAAA,SwDt1LC,MAAA,EACE,OAAA,EACA,aAAA,YACA,aAAA,MAEA,4BxDw1LH,OAAA,EwDt1LC,KAAA,IACE,YAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,iCxDw1LH,MAAA,IwDt1LC,OAAA,EACE,cAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,kCxDw1LH,OAAA,EwDt1LC,KAAA,IACE,cAAA,KACA,aAAA,IAAA,IAAA,EACA,iBAAA,KAEA,8BxDw1LH,IAAA,IwDt1LC,KAAA,EACE,WAAA,KACA,aAAA,IAAA,IAAA,IAAA,EACA,mBAAA,KAEA,6BxDw1LH,IAAA,IwDt1LC,MAAA,EACE,WAAA,KACA,aAAA,IAAA,EAAA,IAAA,IACA,kBAAA,KAEA,+BxDw1LH,IAAA,EwDt1LC,KAAA,IACE,YAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,oCxDw1LH,IAAA,EwDt1LC,MAAA,IACE,WAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,qCxDw1LH,IAAA,E0Dr7LC,KAAM,IACN,WAAA,KACA,aAAA,EAAA,IAAA,IACA,oBAAA,KAEA,SACA,SAAA,SACA,IAAA,EDXA,KAAA,EAEA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,IACA,YAAA,iBAAA,UAAA,MAAA,WACA,UAAA,KACA,WAAA,OACA,YAAA,IACA,YAAA,WACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KCAA,eAAA,OAEA,WAAA,OACA,aAAA,OAAA,UAAA,OACA,YAAA,OACA,iBAAA,KACA,wBAAA,YtD8CA,gBAAA,YACQ,OAAA,IAAA,MAAA,KJq5LT,OAAA,IAAA,MAAA,e0Dh8LC,cAAA,IAAY,mBAAA,EAAA,IAAA,KAAA,e1Dm8Lb,WAAA,EAAA,IAAA,KAAA,e0Dl8La,WAAA,KACZ,aAAY,WAAA,MACZ,eAAY,YAAA,KAGd,gBACE,WAAA,KAEA,cACA,YAAA,MAEA,e1Dw8LD,QAAA,IAAA,K0Dr8LC,OAAQ,EACR,UAAA,K1Du8LD,iBAAA,Q0D/7LC,cAAA,IAAA,MAAA,QzD49LA,cAAe,IAAI,IAAI,EAAE,EyDz9LvB,iBACA,QAAA,IAAA,KAEA,gBACA,sB1Di8LH,SAAA,S0D97LC,QAAS,MACT,MAAA,E1Dg8LD,OAAA,E0D97LC,aAAc,YACd,aAAA,M1Di8LD,gB0D57LC,aAAA,KAEE,sBACA,QAAA,GACA,aAAA,KAEA,oB1D87LH,OAAA,M0D77LG,KAAA,IACE,YAAA,MACA,iBAAA,KACA,iBAAA,gBACA,oBAAA,E1Dg8LL,0B0D57LC,OAAA,IACE,YAAA,MACA,QAAA,IACA,iBAAA,KACA,oBAAA,EAEA,sB1D87LH,IAAA,I0D77LG,KAAA,MACE,WAAA,MACA,mBAAA,KACA,mBAAA,gBACA,kBAAA,E1Dg8LL,4B0D57LC,OAAA,MACE,KAAA,IACA,QAAA,IACA,mBAAA,KACA,kBAAA,EAEA,uB1D87LH,IAAA,M0D77LG,KAAA,IACE,YAAA,MACA,iBAAA,EACA,oBAAA,KACA,oBAAA,gB1Dg8LL,6B0D37LC,IAAA,IACE,YAAA,MACA,QAAA,IACA,iBAAA,EACA,oBAAA,KAEA,qB1D67LH,IAAA,I0D57LG,MAAA,MACE,WAAA,MACA,mBAAA,EACA,kBAAA,KACA,kBAAA,gB1D+7LL,2B2DvjMC,MAAO,IACP,OAAA,M3DyjMD,QAAA,I2DtjMC,mBAAoB,EACpB,kBAAA,KAEA,U3DwjMD,SAAA,S2DrjMG,gBACA,SAAA,SvD6KF,MAAA,KACK,SAAA,OJ64LN,sB2DlkMC,SAAU,S1D+lMV,QAAS,K0DjlML,mBAAA,IAAA,YAAA,K3DwjML,cAAA,IAAA,YAAA,K2D9hMC,WAAA,IAAA,YAAA,KvDmKK,4BAFL,0BAGQ,YAAA,EA3JA,qDA+GR,sBAEQ,mBAAA,kBAAA,IAAA,YJi7LP,cAAA,aAAA,IAAA,Y2D5jMG,WAAA,UAAA,IAAA,YvDmHJ,4BAAA,OACQ,oBAAA,OuDjHF,oBAAA,O3D+jML,YAAA,OI/8LD,mCHy+LA,2BGx+LQ,KAAA,EuD5GF,kBAAA,sB3DgkML,UAAA,sBC2BD,kCADA,2BG/+LA,KAAA,EACQ,kBAAA,uBuDtGF,UAAA,uBArCN,6B3DumMD,gC2DvmMC,iC1DkoME,KAAM,E0DrlMN,kBAAA,mB3D+jMH,UAAA,oBAGA,wB2D/mMD,sBAAA,sBAsDI,QAAA,MAEA,wB3D6jMH,KAAA,E2DzjMG,sB3D4jMH,sB2DxnMC,SAAU,SA+DR,IAAA,E3D4jMH,MAAA,KC0BD,sB0DllMI,KAAA,KAnEJ,sBAuEI,KAAA,MAvEJ,2BA0EI,4B3D2jMH,KAAA,E2DljMC,6BACA,KAAA,MAEA,8BACA,KAAA,KtC3FA,kBsC6FA,SAAA,SACA,IAAA,EACA,OAAA,EACA,KAAA,EACA,MAAA,I3DsjMD,UAAA,K2DjjMC,MAAA,KdnGE,WAAA,OACA,YAAA,EAAA,IAAA,IAAA,eACA,iBAAA,cAAA,OAAA,kBACA,QAAA,G7CwpMH,uB2DrjMC,iBAAA,sEACE,iBAAA,iEACA,iBAAA,uFdxGA,iBAAA,kEACA,OAAA,+GACA,kBAAA,SACA,wBACA,MAAA,E7CgqMH,KAAA,K2DvjMC,iBAAA,sE1DmlMA,iBAAiB,iE0DjlMf,iBAAA,uFACA,iBAAA,kEACA,OAAA,+GtCvHF,kBAAA,SsCyFF,wB3DylMC,wBC4BC,MAAO,KACP,gBAAiB,KACjB,OAAQ,kB0DhlMN,QAAA,EACA,QAAA,G3D2jMH,0C2DnmMD,2CA2CI,6BADA,6B1DqlMF,SAAU,S0DhlMR,IAAA,IACA,QAAA,E3DwjMH,QAAA,a2DxmMC,WAAY,MAqDV,0CADA,6B3DyjMH,KAAA,I2D7mMC,YAAa,MA0DX,2CADA,6BAEA,MAAA,IACA,aAAA,MAME,6BADF,6B3DsjMH,MAAA,K2DjjMG,OAAA,KACE,YAAA,M3DmjML,YAAA,E2DxiMC,oCACA,QAAA,QAEA,oCACA,QAAA,QAEA,qBACA,SAAA,SACA,OAAA,K3D2iMD,KAAA,I2DpjMC,QAAS,GAYP,MAAA,IACA,aAAA,EACA,YAAA,KACA,WAAA,OACA,WAAA,KAEA,wBACA,QAAA,aAWA,MAAA,KACA,OAAA,K3DiiMH,OAAA,I2DhkMC,YAAa,OAkCX,OAAA,QACA,iBAAA,OACA,iBAAA,cACA,OAAA,IAAA,MAAA,K3DiiMH,cAAA,K2DzhMC,6BACA,MAAA,KACA,OAAA,KACA,OAAA,EACA,iBAAA,KAEA,kBACA,SAAA,SACA,MAAA,IACA,OAAA,K3D4hMD,KAAA,I2D3hMC,QAAA,GACE,YAAA,K3D6hMH,eAAA,K2Dp/LC,MAAO,KAhCP,WAAA,O1DijMA,YAAa,EAAE,IAAI,IAAI,eAEzB,uB0D9iMM,YAAA,KAEA,oCACA,0C3DshMH,2C2D9hMD,6BAAA,6BAYI,MAAA,K3DshMH,OAAA,K2DliMD,WAAA,M1D8jME,UAAW,KDxBZ,0C2DjhMD,6BACE,YAAA,MAEA,2C3DmhMD,6B2D/gMD,aAAA,M3DkhMC,kBACF,MAAA,I4DhxMC,KAAA,I3D4yME,eAAgB,KAElB,qBACE,OAAQ,MAkBZ,qCADA,sCADA,mBADA,oBAXA,gBADA,iBAOA,uBADA,wBADA,iBADA,kBADA,wBADA,yBASA,mCADA,oC2DvzME,oBAAA,qBAAA,oBAAA,qB3D8zMF,WADA,YAOA,uBADA,wBADA,qBADA,sBADA,cADA,e2Dl0MI,a3Dw0MJ,cDvBC,kB4DhzMG,mB3DwzMJ,WADA,YAwBE,QAAS,MACT,QAAS,IASX,qCADA,mBANA,gBAGA,uBADA,iBADA,wBAIA,mCDhBC,oB6Dl1MC,oB5Dq2MF,W+B/1MA,uBhCu0MC,qB4D/zMG,cChBF,aACA,kB5Dk2MF,W+Bx1ME,MAAO,KhC40MR,cgCz0MC,QAAS,MACT,aAAA,KhC20MD,YAAA,KgCl0MC,YhCq0MD,MAAA,gBgCl0MC,WhCq0MD,MAAA,egCl0MC,MhCq0MD,QAAA,e8D51MC,MACA,QAAA,gBAEA,WACA,WAAA,O9B8BF,WACE,KAAA,EAAA,EAAA,EhCm0MD,MAAA,YgC5zMC,YAAa,KACb,iBAAA,YhC8zMD,OAAA,E+D91MC,Q/Di2MD,QAAA,eC4BD,OACE,SAAU,M+Dt4MV,chE+2MD,MAAA,aC+BD,YADA,YADA,YADA,YAIE,QAAS,e+Dv5MT,kBhEy4MC,mBgEx4MD,yBhEo4MD,kB+Dr1MD,mBA6IA,yB9D+tMA,kBACA,mB8Dp3ME,yB9Dg3MF,kBACA,mBACA,yB+D15MY,QAAA,eACV,yBAAU,YhE64MT,QAAA,gBC4BD,iB+Dv6MU,QAAA,gBhEg5MX,c+D/1MG,QAAS,oB/Dm2MV,c+Dr2MC,c/Ds2MH,QAAA,sB+Dj2MG,yB/Dq2MD,kBACF,QAAA,iB+Dj2MG,yB/Dq2MD,mBACF,QAAA,kBgEn6MC,yBhEu6MC,yBgEt6MD,QAAA,wBACA,+CAAU,YhE26MT,QAAA,gBC4BD,iB+Dr8MU,QAAA,gBhE86MX,c+Dx2MG,QAAS,oB/D42MV,c+D92MC,c/D+2MH,QAAA,sB+D12MG,+C/D82MD,kBACF,QAAA,iB+D12MG,+C/D82MD,mBACF,QAAA,kBgEj8MC,+ChEq8MC,yBgEp8MD,QAAA,wBACA,gDAAU,YhEy8MT,QAAA,gBC4BD,iB+Dn+MU,QAAA,gBhE48MX,c+Dj3MG,QAAS,oB/Dq3MV,c+Dv3MC,c/Dw3MH,QAAA,sB+Dn3MG,gD/Du3MD,kBACF,QAAA,iB+Dn3MG,gD/Du3MD,mBACF,QAAA,kBgE/9MC,gDhEm+MC,yBgEl+MD,QAAA,wBACA,0BAAU,YhEu+MT,QAAA,gBC4BD,iB+DjgNU,QAAA,gBhE0+MX,c+D13MG,QAAS,oB/D83MV,c+Dh4MC,c/Di4MH,QAAA,sB+D53MG,0B/Dg4MD,kBACF,QAAA,iB+D53MG,0B/Dg4MD,mBACF,QAAA,kBgEr/MC,0BhEy/MC,yBACF,QAAA,wBgE1/MC,yBhE8/MC,WACF,QAAA,gBgE//MC,+ChEmgNC,WACF,QAAA,gBgEpgNC,gDhEwgNC,WACF,QAAA,gBAGA,0B+Dn3MC,WA4BE,QAAS,gBC5LX,eAAU,QAAA,eACV,aAAU,ehE4hNT,QAAA,gBC4BD,oB+DtjNU,QAAA,gBhE+hNX,iB+Dj4MG,QAAS,oBAMX,iB/D83MD,iB+Dz2MG,QAAS,sB/D82MZ,qB+Dl4MC,QAAS,e/Dq4MV,a+D/3MC,qBAcE,QAAS,iB/Ds3MZ,sB+Dn4MC,QAAS,e/Ds4MV,a+Dh4MC,sBAOE,QAAS,kB/D83MZ,4B+D/3MC,QAAS,eCpLT,ahEujNC,4BACF,QAAA,wBC6BD,aACE,cACE,QAAS"} \ No newline at end of file diff --git a/wwwroot/help/css/custom.css b/wwwroot/help/css/custom.css deleted file mode 100755 index c5b81bc2bf..0000000000 --- a/wwwroot/help/css/custom.css +++ /dev/null @@ -1,243 +0,0 @@ -/* Sticky footer styles --------------------------------------------------- */ -html { - position: relative; - min-height: 100%; -} -body { - /* Margin bottom by footer height */ - margin-bottom: 150px; -} -.footer { - position: absolute; - bottom: 0; - width: 100%; - /* Set the fixed height of the footer here */ - height: 100px; - background-color: #f5f5f5; -} - - -/* Custom page CSS --------------------------------------------------- */ -/* Not required for template or sticky footer method. */ - -body > .container { - padding: 60px 15px 0; -} -.container .text-muted { - margin: 20px 0; -} - -.footer > .container { - padding-right: 15px; - padding-left: 15px; -} - -code { - font-size: 80%; -} - -/* Custom page CSS: PG --------------------------------------------------- */ -/* Not required for template or sticky footer method. */ - -body { - color: #484848; -} - -.content { - margin-top: 20px; -} - -.embed-responsive { - -margin-bottom: 20px; - -} - -ul { - margin-left: 20px; - padding-left: 0; -} - -.content ul li { - margin-bottom: 10px; -} - -.how-to, .key-features, .faq { - list-style: none; - padding-left: 0; - margin-left: 0; -} - -.side-nav { - margin-bottom: 50px; -} - -.side-nav a { - text-decoration: none; -} - - -.side-nav .active { - font-weight: bold; -} - -.nav-header { - font-size: 16px; - margin-top: 25px; - font-weight: 500; -} - -.nav-header:first-of-type { - margin-top: 0px; -} - -.navbar-inverse { - background-color: #353B43; - border-color: #080808; -} - -.navbar-inverse .navbar-nav > li > a { - color: #ccc; - border-radius: .2em; - margin-right: 5px; -} - -.navbar-inverse .navbar-nav > li > a:hover { - background-color: #3c434c; -} - -.navbar-inverse .navbar-nav > .active > a { - background-color: #49515c; -} -.navbar-inverse .navbar-nav > .active > a:hover { - background-color: #49515c; -} - -.navbar-brand { - padding-top: 5px; - padding-bottom: 5px; -} - -.navbar-brand img { - width: 140px; -} - - -h1, h2, h3, h4, h5, h6 { - font-weight: 300; - font-family: 'Open Sans', sans-serif; -} - -h1:first-of-type { - margin-top: 0; - padding-top: 0; -} - -h1 { - font-size: 26px; - margin-bottom: 30px; -} - -h2 { - font-size: 22px; - margin-top: 30px; - margin-bottom: 20px; -} - -.partners img { - width: 160px; - margin-bottom: 30px; - align-content: center; -} - -.panel-group .panel { - border: none; - border-radius: 0; -} - -.panel-default>.panel-heading { - background-color: #FFFFFF; - padding-left: 0; - padding-top: 20px; - padding-bottom: 20px; -} - -.panel-body { - padding-left: 0; -} - -.affix { - position: static; -} - -/* archor styling */ - -h2 > a { - text-decoration: none; - color: #484848; -} - - -/* Extra small devices (phones, less than 768px) */ -/* No media query since this is the default in Bootstrap */ - -/* Small devices (tablets, 768px and up) */ -@media (min-width: @screen-sm-min) { - - .affix { - position: fixed; - text - } - -} - -/* Medium devices (desktops, 992px and up) */ -@media (min-width: @screen-md-min) { ... } - -/* Large devices (large desktops, 1200px and up) */ -@media (min-width: 1200px) { - -.navbar { - min-height: 80px; -} - -.navbar-nav>li>a { - margin-top: 20px; - padding-top: 10px; - padding-bottom: 10px; -} - -.navbar-brand { - margin-right: 80px; - padding-top: 15px; - padding-bottom: 15px; -} - -.navbar-brand { - height: 80px; -} - -.navbar-brand img { - width: 170px; -} - -.content { - margin-top: 80px; -} - -.nav-header:first-of-type { - margin-top: 25px; -} - -.screenshot { - margin-bottom: 20px; -} - - -} - - - diff --git a/wwwroot/help/data-catalogue.html b/wwwroot/help/data-catalogue.html deleted file mode 100755 index 39af3263bc..0000000000 --- a/wwwroot/help/data-catalogue.html +++ /dev/null @@ -1,133 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> - <meta name="description" content=""> - <meta name="author" content=""> - <link rel="icon" href="../../favicon.ico"> - - <title>The National Map - Help & FAQ - Data Catalogue - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- -

Data Catalogue

- - screenshot of the NationalMap Data Catalogue - -

A wealth of spatial data has been made available though NationalMap, all of which can be accessed via the Data Catalogue. To launch the Data Catalogue, click the Add Data button in the left hand panel opposite the map.

- -

Data sets displayed in the Data Catalogue are directly referenced from data.gov.au or from a server provided by the relevant department or agency. The NationalMap does not store any of the data it serves. For example, if you access data relating to broadband availability and quality, you are accessing that data directly from the Department of Communications and the Arts. When you access data relating to surface geology, it is accessed directly from Geoscience Australia. If you access data relating to water, it is typically coming directly from the Bureau of Meteorology. The NationalMap itself does not store any data - it provides a map-based view of data that is stored by a growing number of government bodies. -

- -

You can see details of the department or agency that provides the spatial data by clicking on the title of your prefered data set in the Data Catalogue.

- -
- - -
-
- -
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/help/data-workbench.html b/wwwroot/help/data-workbench.html deleted file mode 100755 index 8298a371c3..0000000000 --- a/wwwroot/help/data-workbench.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - The National Map - Help & FAQ - Data Workbench - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- -

Data Workbench

- - screenshot of the NationalMap Data Workbench - -

When a data set is added to the map via the Data Catalogue, a legend for that data set will appear at the top of your Data Workbench (pictured above). From the Data Workbench you can:

- -
    -
  • Set the order in which data is shown on the map. To do this, simply click on the title of a data set and drag it to a new position in your Workbench.
  • -
  • Toggle the visibility of added data sets. To do this, click on the checkbox opposite your prefered data set title.
  • -
  • Zoom to the geographical extent of an added data set
  • -
  • Set the opacity of individual data sets
  • -
  • Remove data sets from the map. Note: removed data sets can always be re-added via the Data Catalogue.
  • -
- -
- - -
-
- -
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/help/faq.html b/wwwroot/help/faq.html deleted file mode 100755 index 6fa9280ac1..0000000000 --- a/wwwroot/help/faq.html +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - - - - - The National Map - Help & FAQ - Frequently Asked Questions - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - -
- -

Frequently Asked Questions

- -
-

NationalMap Operation

-
- -
-
-

There isn't one! All user interface features of the NationalMap are either obvious from the interface or are described in this Help.

- -

The NationalMap has been carefully designed to be as easy to use as possible. Our user experience design team run regular usability testing sessions, the results of which are then assessed for inclusion in releases.

-
-
-
- -
- -
-
- -

It is best to use a browser with WebGL support such as the latest versions of Google Chrome, Mozilla Firefox and Internet Explorer 11. It will also work in some older browsers (for example IE9 and IE10) but the map rendering will be limited. It may not support 3D rendering of maps, so the 3D Terrain option may show the same result as 3D Smooth.

- -
-
-
-
- -
-
- -

There are three types of spatial data which are read from the data sources and displayed by the NationalMap over its base maps:

-

Point Click on any point to see more information about that particular point feature.

-

Line Click on any line to see more information about that particular line feature.

-

Region Click within any region to see more information about that region.

- -
-
-
-
- -
-
- -

Some older computers do not have graphics cards which fully support WebGL and some older browsers do not make use of this support even if it is present. NationalMap requires this support in order to support 3D Terrain Perspective View.

- -

Try upgrading your browser to the latest version. If that still does not work, you may need to consider working on a computer that has more recent graphics support.

- -
-
-
-
- -
-
- -

NationalMap automatically changes the content of the map according to the scale at which you're viewing. If you zoom in it shows more detail. At some points in the zoom range, the map display switches from high altitude photography to lower altitude photography. These sets of the photography are not colour matched to each other, so may have quite different hues. The actual photography scales used, the date of that photography and its lighting conditions will vary across Australia.

- -

When you are using Perspective View the part of the terrain nearest to the "camera position" is naturally shown at a larger scale than the more distant parts. Depending on your zoom level, this can result in the foreground being displayed with a different set of photography from the distant parts of your Perspective View.

- -
-
-
- -
- -
-
-

The current version of NationalMap is not designed for small screen or touch screen devices. However, some devices may operate satisfactorily, especially if they support a mouse connection and WebGL graphics.

- -
-
-
- -
- -
-
-

Send your question to the NationalMap support email address, which is data@pmc.gov.au.

- -
-
-
- -

NationalMap system and data

- -
- -
-
- -

The spatial data displayed by the NationalMap are all directly referenced from data.gov.au or from a server provided by the relevant department or agency. The NationalMap does not store any of the data it serves. For example, if you access data relating to broadband availability and quality, you are accessing that data directly from the Department of Communications and the Arts. When you access data relating to surface geology, it is accessed directly from Geoscience Australia. If you access data relating to water, it is typically coming directly from the Bureau of Meteorology. The NationalMap itself does not store any data - it provides a map-based view of data that is stored by a growing number of government bodies.

- -

You can see details of the department or agency that provides the spatial data by clicking About this data in the Data Workbench.

- -
-
-
- -
- -
-
- -

The spatial data displayed by NationalMap are referenced directly from the supplying department or agency by the NationalMap server. If that supplying department or agency updates or removes any data, that change will be reflected immediately by the NationalMap.

- -

If you have any questions about the spatial data, you will need to contact the supplying department or agency.

- -
-
-
- -
- -
-
- -

The base maps displayed by the NationalMap come from a number of difference sources including Microsoft’s Bing, Geoscience Australia and NASA. They are downloaded from the source as they are required, so they are as up to date as that service provides.

- -
-
-
- -
- -
-
- -

The NationalMap was developed by Data61 and funded by the Department of Communications and the Arts, and the Department of Prime Minister and Cabinet, working closely with Geoscience Australia. See the About page from more information.

- -
-
-
- -
- -
-
- -

Before distributing any data from NationalMap it is important to understand the licence restriction for the data. All Data Sets displayed by the NationalMap are the property of the department or agency which has provided them. Therefore the restrictions for each Data Set may be quite different.

- -

The licence which governs the usage and distribution restrictions for each Data Set is shown in the Info metadata for the Data Set. To Display this information click on the title of your prefered data set in the Data Catalogue. - -

-
-
- -
- -
-
- -

The reliability will vary between data sets. To understand the reliability of a particular data set, click on the title of the data set in question in the Data Catalogue for more information. The metadata which is shown in the Data Catalogue may offer sufficient information or you may need to contact the listed data provider.

- -
-
-
- -
- -
-
- -

There is a small number of data sets which have a small amount of data relating to New Zealand. This results because the supplying agency is a cooperative agency with New Zealand.

- -
-
-
- -
- -
-
- -

Most of the NationalMap base maps are provided by services for the whole world. There is no value in suppressing the display of the rest of the world, so you can view it if you wish. (Take a look at Mt Everest or the Grand Canyon in perspective view - they’re cool!)

- -

Obviously, the NationalMap’s spatial data does not cover the rest of the world!

- -
-
-
- -
- -
-
- -

That depends on the supplying departments or agencies, who must make the data available. You will need to contact individual data providers to understand their data release schedules.

- -

If you are a data provider, see the How To page for information on adding Data Sets to the NationalMap.

- -
-
-
- -

Reporting issues

- -
- -
-
- -

Email us on data@pmc.gov.au to report the problem. Be sure to include a step by step description of how to reproduce the problem.

- -
-
-
- -
- -
-
- -

Absolutely! Just email your suggestion to data@pmc.gov.au

- -
-
-
- -
- -
-
- -

The data displayed by the NationalMap are only referred to by the NationalMap and are not part of the NationalMap. You will need to refer to the department or agency which provides the Data Set which contains the issue.

- -

click on the title of your prefered data set in the Data Catalogue to find out which department or agency provides that data.

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

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/help/fonts/glyphicons-halflings-regular.eot b/wwwroot/help/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953ff..0000000000 Binary files a/wwwroot/help/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/wwwroot/help/fonts/glyphicons-halflings-regular.svg b/wwwroot/help/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490a2..0000000000 --- a/wwwroot/help/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/wwwroot/help/fonts/glyphicons-halflings-regular.ttf b/wwwroot/help/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc609a..0000000000 Binary files a/wwwroot/help/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/wwwroot/help/fonts/glyphicons-halflings-regular.woff b/wwwroot/help/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858f8..0000000000 Binary files a/wwwroot/help/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/wwwroot/help/fonts/glyphicons-halflings-regular.woff2 b/wwwroot/help/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54c3..0000000000 Binary files a/wwwroot/help/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/wwwroot/help/help.html b/wwwroot/help/help.html deleted file mode 100755 index 9002f72465..0000000000 --- a/wwwroot/help/help.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - The National Map - Help & FAQ - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- -

Help & FAQ

- - -
- -
- -

How to get started with the National Map

- -

To launch the National Map and display some basic data follow these steps.

- -
    -
  • Display the NationalMap by using the URL http://nationalmap.gov.au.
  • -
  • In the left hand panel click the Add Data button to launch the Data Catalogue.
  • -
  • Browse through the Data Catalogue to find a data set of interest. Click on the title of your prefered data set to get a preview of that data, along with a description and other relevent metadata. To view your selected data set on a larger map, click the Add to the Map button. The spatial data will be immediately displayed in the map view, and a visual legend for that data will appear in the Data Workbench, located on the left hand side of the page.
  • -
  • Note that it may not be immediately obvious where your selected spatial data has loaded on the map if does not cover a large part of Australia. To locate loaded data on the map, go to the Data Workbench (positioned on the left hand side of the page), and click the Zoom to extent link for your desired data set. From here you can also click About this data to get more information about your selected data set.
  • -
  • To add additional data sets to the map, simply click Add Data again in the left hand panel to relaunch the Data Catalogue.
  • -
  • Zoom manually by moving your mouse pointer over the map and using your mouse wheel to zoom in or out further.
  • -
  • Click and drag the map to further show the region in which you are interested.
  • -
  • Click on a feature (that is, directly on a point or line, or within a region) to show data about the individual feature.
  • -
- -

You can perform these steps in any order as required to tune your display of spatial data.

- - -

How to find out about a displayed feature

- -

Click on the feature which is displayed on the map. You can click on Points, on Lines or within Regions to see a display of the information available from the spatial data provider for that particular feature.

- -

For Points and Lines, you need to click quite accurately to identify the feature. For Regions, clicking on the boundary will give ambiguous results. Click within the region.

- -

You cannot find out further information about the features which are part of the base maps.

- - -

How to display my own spreadsheet or spatial data

- -

National Map can display two kinds of spreadsheets:

-

  1. Spreadsheets with a point location (latitude and longitude) for each row, expressed as two columns: lat and lon. These will be displayed as points (circles).
  2. -
  3. Spreadsheets where each row refers to a region such as a local government area (council), state, postcode, or ABS statistical unit such as an SA2 or CED (Commonwealth Electoral Division). Columns must be named according to the CSV-geo-au standard. These will be displayed as regions, highlighting the actual shape of each area.
  4. -
-

Spreadsheets must be saved as CSV (comma-separated values).

- -

Other standard spatial data types such as GeoJSON and KML are also supported.

- -

There are two ways to load your data:

- -
    -
  • Drag your data file onto the NationalMap map view. The format of the data file will be auto-detected.
  • -
  • Click on the Add Data button in the left hand panel. This will launch the Data Catalogue. Select the My Data tab at the top of the modal window and follow the provided instructions.
  • -
- -

As for NationalMap data sets, you can click on the regions or points to see the data available for that location. If the file is a CSV file, the data from all columns will be shown in the feature information dialogue when you click.

- -

You can also use all of the features of the Data Workbench on the data you have loaded as well.

-

To share a view of your data with others, you must first publish it to the web somewhere with a URL, and then load it from there.

- - -

How to share my National Map view with others

- -

There are three ways:

- -
    -
  • Click the Share button, copy the given URL (shown in the first text box) to the clipboard and paste it into an email which you send to the recipient. They can click on it in the email or paste it into their browser to see the same view as you.
  • -
  • Click the Share button, copy the HTML fragment (shown in the second text box) and paste it into an HTML file, which you then make available to the recipients. When the recipients display your web page, they will see the NationalMap view within that web page.
  • -
  • Take a screenshot and email it as an image (see your OS instructions on how to take a screenshot). This will share all information, even if loaded from a local file or URL.
  • -
- -

Note that only the third method will show the data you have loaded from a local file.

- - -

How to contribute Data Sets to National Map

- -

The NationalMap encourages data providers to publish their spatial data using this platform. There are two routes you can take to publishing.

- -
    -
  • Any spatial data which is added to data.gov.au using a protocol or format supported by the NationalMap (such as WMS) will automatically appear in the data.gov.au section of the Data Catalogue tab for the NationalMap. See WMS Data Sets for a list of spatial data sets already on data.gov.au. See the data.gov.au Toolkit for a detailed reference on using data.gov.au and using it to publish your own data sets.

  • -
  • If you require your data set to appear under a separate category of the NationalMap Data Catalogue, you will need to contact the support for NationalMap by emailing to data@pmc.gov.au for more information. You will need to provide an internet accessible service in a standard protocol to access your data set on the internet and appropriate references must be added to the NationalMap configuration.

  • -
- - -
- - -
-
- -
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/help/img/Comms.jpg b/wwwroot/help/img/Comms.jpg deleted file mode 100644 index 07ffbf7461..0000000000 Binary files a/wwwroot/help/img/Comms.jpg and /dev/null differ diff --git a/wwwroot/help/img/Finalist-Innovation.gif b/wwwroot/help/img/Finalist-Innovation.gif deleted file mode 100644 index 791af18136..0000000000 Binary files a/wwwroot/help/img/Finalist-Innovation.gif and /dev/null differ diff --git a/wwwroot/help/img/GA-dark.png b/wwwroot/help/img/GA-dark.png deleted file mode 100644 index 9b07fc07a6..0000000000 Binary files a/wwwroot/help/img/GA-dark.png and /dev/null differ diff --git a/wwwroot/help/img/data-catalogue.jpg b/wwwroot/help/img/data-catalogue.jpg deleted file mode 100644 index 644f32fdb0..0000000000 Binary files a/wwwroot/help/img/data-catalogue.jpg and /dev/null differ diff --git a/wwwroot/help/img/data-workbench.jpg b/wwwroot/help/img/data-workbench.jpg deleted file mode 100644 index 17f0fd809d..0000000000 Binary files a/wwwroot/help/img/data-workbench.jpg and /dev/null differ diff --git a/wwwroot/help/img/data61-white.jpg b/wwwroot/help/img/data61-white.jpg deleted file mode 100644 index 9b683ca8dd..0000000000 Binary files a/wwwroot/help/img/data61-white.jpg and /dev/null differ diff --git a/wwwroot/help/img/iawards.png b/wwwroot/help/img/iawards.png deleted file mode 100644 index 17b4dab58d..0000000000 Binary files a/wwwroot/help/img/iawards.png and /dev/null differ diff --git a/wwwroot/help/img/map-controls.jpg b/wwwroot/help/img/map-controls.jpg deleted file mode 100644 index 4ffacf655c..0000000000 Binary files a/wwwroot/help/img/map-controls.jpg and /dev/null differ diff --git a/wwwroot/help/img/map-settings.jpg b/wwwroot/help/img/map-settings.jpg deleted file mode 100644 index bf40a0614a..0000000000 Binary files a/wwwroot/help/img/map-settings.jpg and /dev/null differ diff --git a/wwwroot/help/img/nm-logo.png b/wwwroot/help/img/nm-logo.png deleted file mode 100644 index 7736f10110..0000000000 Binary files a/wwwroot/help/img/nm-logo.png and /dev/null differ diff --git a/wwwroot/help/img/pmc-stacked.jpg b/wwwroot/help/img/pmc-stacked.jpg deleted file mode 100644 index dd78c9d400..0000000000 Binary files a/wwwroot/help/img/pmc-stacked.jpg and /dev/null differ diff --git a/wwwroot/help/js/affix.js b/wwwroot/help/js/affix.js deleted file mode 100755 index 2c5d5d6458..0000000000 --- a/wwwroot/help/js/affix.js +++ /dev/null @@ -1,162 +0,0 @@ -/* ======================================================================== - * Bootstrap: affix.js v3.3.6 - * http://getbootstrap.com/javascript/#affix - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // AFFIX CLASS DEFINITION - // ====================== - - var Affix = function (element, options) { - this.options = $.extend({}, Affix.DEFAULTS, options) - - this.$target = $(this.options.target) - .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) - .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) - - this.$element = $(element) - this.affixed = null - this.unpin = null - this.pinnedOffset = null - - this.checkPosition() - } - - Affix.VERSION = '3.3.6' - - Affix.RESET = 'affix affix-top affix-bottom' - - Affix.DEFAULTS = { - offset: 0, - target: window - } - - Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - var targetHeight = this.$target.height() - - if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false - - if (this.affixed == 'bottom') { - if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' - return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' - } - - var initializing = this.affixed == null - var colliderTop = initializing ? scrollTop : position.top - var colliderHeight = initializing ? targetHeight : height - - if (offsetTop != null && scrollTop <= offsetTop) return 'top' - if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' - - return false - } - - Affix.prototype.getPinnedOffset = function () { - if (this.pinnedOffset) return this.pinnedOffset - this.$element.removeClass(Affix.RESET).addClass('affix') - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - return (this.pinnedOffset = position.top - scrollTop) - } - - Affix.prototype.checkPositionWithEventLoop = function () { - setTimeout($.proxy(this.checkPosition, this), 1) - } - - Affix.prototype.checkPosition = function () { - if (!this.$element.is(':visible')) return - - var height = this.$element.height() - var offset = this.options.offset - var offsetTop = offset.top - var offsetBottom = offset.bottom - var scrollHeight = Math.max($(document).height(), $(document.body).height()) - - if (typeof offset != 'object') offsetBottom = offsetTop = offset - if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) - if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) - - var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) - - if (this.affixed != affix) { - if (this.unpin != null) this.$element.css('top', '') - - var affixType = 'affix' + (affix ? '-' + affix : '') - var e = $.Event(affixType + '.bs.affix') - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - this.affixed = affix - this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null - - this.$element - .removeClass(Affix.RESET) - .addClass(affixType) - .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') - } - - if (affix == 'bottom') { - this.$element.offset({ - top: scrollHeight - height - offsetBottom - }) - } - } - - - // AFFIX PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.affix') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.affix', (data = new Affix(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.affix - - $.fn.affix = Plugin - $.fn.affix.Constructor = Affix - - - // AFFIX NO CONFLICT - // ================= - - $.fn.affix.noConflict = function () { - $.fn.affix = old - return this - } - - - // AFFIX DATA-API - // ============== - - $(window).on('load', function () { - $('[data-spy="affix"]').each(function () { - var $spy = $(this) - var data = $spy.data() - - data.offset = data.offset || {} - - if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom - if (data.offsetTop != null) data.offset.top = data.offsetTop - - Plugin.call($spy, data) - }) - }) - -}(jQuery); diff --git a/wwwroot/help/js/bootstrap.js b/wwwroot/help/js/bootstrap.js deleted file mode 100644 index 01fbbcbaa9..0000000000 --- a/wwwroot/help/js/bootstrap.js +++ /dev/null @@ -1,2363 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under the MIT license - */ - -if (typeof jQuery === 'undefined') { - throw new Error('Bootstrap\'s JavaScript requires jQuery') -} - -+function ($) { - 'use strict'; - var version = $.fn.jquery.split(' ')[0].split('.') - if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) { - throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3') - } -}(jQuery); - -/* ======================================================================== - * Bootstrap: transition.js v3.3.6 - * http://getbootstrap.com/javascript/#transitions - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) - // ============================================================ - - function transitionEnd() { - var el = document.createElement('bootstrap') - - var transEndEventNames = { - WebkitTransition : 'webkitTransitionEnd', - MozTransition : 'transitionend', - OTransition : 'oTransitionEnd otransitionend', - transition : 'transitionend' - } - - for (var name in transEndEventNames) { - if (el.style[name] !== undefined) { - return { end: transEndEventNames[name] } - } - } - - return false // explicit for ie8 ( ._.) - } - - // http://blog.alexmaccaw.com/css-transitions - $.fn.emulateTransitionEnd = function (duration) { - var called = false - var $el = this - $(this).one('bsTransitionEnd', function () { called = true }) - var callback = function () { if (!called) $($el).trigger($.support.transition.end) } - setTimeout(callback, duration) - return this - } - - $(function () { - $.support.transition = transitionEnd() - - if (!$.support.transition) return - - $.event.special.bsTransitionEnd = { - bindType: $.support.transition.end, - delegateType: $.support.transition.end, - handle: function (e) { - if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) - } - } - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: alert.js v3.3.6 - * http://getbootstrap.com/javascript/#alerts - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // ALERT CLASS DEFINITION - // ====================== - - var dismiss = '[data-dismiss="alert"]' - var Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.VERSION = '3.3.6' - - Alert.TRANSITION_DURATION = 150 - - Alert.prototype.close = function (e) { - var $this = $(this) - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = $(selector) - - if (e) e.preventDefault() - - if (!$parent.length) { - $parent = $this.closest('.alert') - } - - $parent.trigger(e = $.Event('close.bs.alert')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - // detach from parent, fire event then clean up data - $parent.detach().trigger('closed.bs.alert').remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent - .one('bsTransitionEnd', removeElement) - .emulateTransitionEnd(Alert.TRANSITION_DURATION) : - removeElement() - } - - - // ALERT PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.alert') - - if (!data) $this.data('bs.alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.alert - - $.fn.alert = Plugin - $.fn.alert.Constructor = Alert - - - // ALERT NO CONFLICT - // ================= - - $.fn.alert.noConflict = function () { - $.fn.alert = old - return this - } - - - // ALERT DATA-API - // ============== - - $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: button.js v3.3.6 - * http://getbootstrap.com/javascript/#buttons - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // BUTTON PUBLIC CLASS DEFINITION - // ============================== - - var Button = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Button.DEFAULTS, options) - this.isLoading = false - } - - Button.VERSION = '3.3.6' - - Button.DEFAULTS = { - loadingText: 'loading...' - } - - Button.prototype.setState = function (state) { - var d = 'disabled' - var $el = this.$element - var val = $el.is('input') ? 'val' : 'html' - var data = $el.data() - - state += 'Text' - - if (data.resetText == null) $el.data('resetText', $el[val]()) - - // push to event loop to allow forms to submit - setTimeout($.proxy(function () { - $el[val](data[state] == null ? this.options[state] : data[state]) - - if (state == 'loadingText') { - this.isLoading = true - $el.addClass(d).attr(d, d) - } else if (this.isLoading) { - this.isLoading = false - $el.removeClass(d).removeAttr(d) - } - }, this), 0) - } - - Button.prototype.toggle = function () { - var changed = true - var $parent = this.$element.closest('[data-toggle="buttons"]') - - if ($parent.length) { - var $input = this.$element.find('input') - if ($input.prop('type') == 'radio') { - if ($input.prop('checked')) changed = false - $parent.find('.active').removeClass('active') - this.$element.addClass('active') - } else if ($input.prop('type') == 'checkbox') { - if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false - this.$element.toggleClass('active') - } - $input.prop('checked', this.$element.hasClass('active')) - if (changed) $input.trigger('change') - } else { - this.$element.attr('aria-pressed', !this.$element.hasClass('active')) - this.$element.toggleClass('active') - } - } - - - // BUTTON PLUGIN DEFINITION - // ======================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.button') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.button', (data = new Button(this, options))) - - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - var old = $.fn.button - - $.fn.button = Plugin - $.fn.button.Constructor = Button - - - // BUTTON NO CONFLICT - // ================== - - $.fn.button.noConflict = function () { - $.fn.button = old - return this - } - - - // BUTTON DATA-API - // =============== - - $(document) - .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { - var $btn = $(e.target) - if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') - Plugin.call($btn, 'toggle') - if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault() - }) - .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { - $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: carousel.js v3.3.6 - * http://getbootstrap.com/javascript/#carousel - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CAROUSEL CLASS DEFINITION - // ========================= - - var Carousel = function (element, options) { - this.$element = $(element) - this.$indicators = this.$element.find('.carousel-indicators') - this.options = options - this.paused = null - this.sliding = null - this.interval = null - this.$active = null - this.$items = null - - this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) - - this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element - .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) - .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) - } - - Carousel.VERSION = '3.3.6' - - Carousel.TRANSITION_DURATION = 600 - - Carousel.DEFAULTS = { - interval: 5000, - pause: 'hover', - wrap: true, - keyboard: true - } - - Carousel.prototype.keydown = function (e) { - if (/input|textarea/i.test(e.target.tagName)) return - switch (e.which) { - case 37: this.prev(); break - case 39: this.next(); break - default: return - } - - e.preventDefault() - } - - Carousel.prototype.cycle = function (e) { - e || (this.paused = false) - - this.interval && clearInterval(this.interval) - - this.options.interval - && !this.paused - && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) - - return this - } - - Carousel.prototype.getItemIndex = function (item) { - this.$items = item.parent().children('.item') - return this.$items.index(item || this.$active) - } - - Carousel.prototype.getItemForDirection = function (direction, active) { - var activeIndex = this.getItemIndex(active) - var willWrap = (direction == 'prev' && activeIndex === 0) - || (direction == 'next' && activeIndex == (this.$items.length - 1)) - if (willWrap && !this.options.wrap) return active - var delta = direction == 'prev' ? -1 : 1 - var itemIndex = (activeIndex + delta) % this.$items.length - return this.$items.eq(itemIndex) - } - - Carousel.prototype.to = function (pos) { - var that = this - var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) - - if (pos > (this.$items.length - 1) || pos < 0) return - - if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" - if (activeIndex == pos) return this.pause().cycle() - - return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) - } - - Carousel.prototype.pause = function (e) { - e || (this.paused = true) - - if (this.$element.find('.next, .prev').length && $.support.transition) { - this.$element.trigger($.support.transition.end) - this.cycle(true) - } - - this.interval = clearInterval(this.interval) - - return this - } - - Carousel.prototype.next = function () { - if (this.sliding) return - return this.slide('next') - } - - Carousel.prototype.prev = function () { - if (this.sliding) return - return this.slide('prev') - } - - Carousel.prototype.slide = function (type, next) { - var $active = this.$element.find('.item.active') - var $next = next || this.getItemForDirection(type, $active) - var isCycling = this.interval - var direction = type == 'next' ? 'left' : 'right' - var that = this - - if ($next.hasClass('active')) return (this.sliding = false) - - var relatedTarget = $next[0] - var slideEvent = $.Event('slide.bs.carousel', { - relatedTarget: relatedTarget, - direction: direction - }) - this.$element.trigger(slideEvent) - if (slideEvent.isDefaultPrevented()) return - - this.sliding = true - - isCycling && this.pause() - - if (this.$indicators.length) { - this.$indicators.find('.active').removeClass('active') - var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) - $nextIndicator && $nextIndicator.addClass('active') - } - - var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" - if ($.support.transition && this.$element.hasClass('slide')) { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - $active - .one('bsTransitionEnd', function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { - that.$element.trigger(slidEvent) - }, 0) - }) - .emulateTransitionEnd(Carousel.TRANSITION_DURATION) - } else { - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger(slidEvent) - } - - isCycling && this.cycle() - - return this - } - - - // CAROUSEL PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.carousel') - var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) - var action = typeof option == 'string' ? option : options.slide - - if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (action) data[action]() - else if (options.interval) data.pause().cycle() - }) - } - - var old = $.fn.carousel - - $.fn.carousel = Plugin - $.fn.carousel.Constructor = Carousel - - - // CAROUSEL NO CONFLICT - // ==================== - - $.fn.carousel.noConflict = function () { - $.fn.carousel = old - return this - } - - - // CAROUSEL DATA-API - // ================= - - var clickHandler = function (e) { - var href - var $this = $(this) - var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 - if (!$target.hasClass('carousel')) return - var options = $.extend({}, $target.data(), $this.data()) - var slideIndex = $this.attr('data-slide-to') - if (slideIndex) options.interval = false - - Plugin.call($target, options) - - if (slideIndex) { - $target.data('bs.carousel').to(slideIndex) - } - - e.preventDefault() - } - - $(document) - .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) - .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) - - $(window).on('load', function () { - $('[data-ride="carousel"]').each(function () { - var $carousel = $(this) - Plugin.call($carousel, $carousel.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: collapse.js v3.3.6 - * http://getbootstrap.com/javascript/#collapse - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // COLLAPSE PUBLIC CLASS DEFINITION - // ================================ - - var Collapse = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Collapse.DEFAULTS, options) - this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + - '[data-toggle="collapse"][data-target="#' + element.id + '"]') - this.transitioning = null - - if (this.options.parent) { - this.$parent = this.getParent() - } else { - this.addAriaAndCollapsedClass(this.$element, this.$trigger) - } - - if (this.options.toggle) this.toggle() - } - - Collapse.VERSION = '3.3.6' - - Collapse.TRANSITION_DURATION = 350 - - Collapse.DEFAULTS = { - toggle: true - } - - Collapse.prototype.dimension = function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - Collapse.prototype.show = function () { - if (this.transitioning || this.$element.hasClass('in')) return - - var activesData - var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing') - - if (actives && actives.length) { - activesData = actives.data('bs.collapse') - if (activesData && activesData.transitioning) return - } - - var startEvent = $.Event('show.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - if (actives && actives.length) { - Plugin.call(actives, 'hide') - activesData || actives.data('bs.collapse', null) - } - - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - .addClass('collapsing')[dimension](0) - .attr('aria-expanded', true) - - this.$trigger - .removeClass('collapsed') - .attr('aria-expanded', true) - - this.transitioning = 1 - - var complete = function () { - this.$element - .removeClass('collapsing') - .addClass('collapse in')[dimension]('') - this.transitioning = 0 - this.$element - .trigger('shown.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - var scrollSize = $.camelCase(['scroll', dimension].join('-')) - - this.$element - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) - } - - Collapse.prototype.hide = function () { - if (this.transitioning || !this.$element.hasClass('in')) return - - var startEvent = $.Event('hide.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var dimension = this.dimension() - - this.$element[dimension](this.$element[dimension]())[0].offsetHeight - - this.$element - .addClass('collapsing') - .removeClass('collapse in') - .attr('aria-expanded', false) - - this.$trigger - .addClass('collapsed') - .attr('aria-expanded', false) - - this.transitioning = 1 - - var complete = function () { - this.transitioning = 0 - this.$element - .removeClass('collapsing') - .addClass('collapse') - .trigger('hidden.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - this.$element - [dimension](0) - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION) - } - - Collapse.prototype.toggle = function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - Collapse.prototype.getParent = function () { - return $(this.options.parent) - .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') - .each($.proxy(function (i, element) { - var $element = $(element) - this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) - }, this)) - .end() - } - - Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { - var isOpen = $element.hasClass('in') - - $element.attr('aria-expanded', isOpen) - $trigger - .toggleClass('collapsed', !isOpen) - .attr('aria-expanded', isOpen) - } - - function getTargetFromTrigger($trigger) { - var href - var target = $trigger.attr('data-target') - || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 - - return $(target) - } - - - // COLLAPSE PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.collapse') - var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false - if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.collapse - - $.fn.collapse = Plugin - $.fn.collapse.Constructor = Collapse - - - // COLLAPSE NO CONFLICT - // ==================== - - $.fn.collapse.noConflict = function () { - $.fn.collapse = old - return this - } - - - // COLLAPSE DATA-API - // ================= - - $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { - var $this = $(this) - - if (!$this.attr('data-target')) e.preventDefault() - - var $target = getTargetFromTrigger($this) - var data = $target.data('bs.collapse') - var option = data ? 'toggle' : $this.data() - - Plugin.call($target, option) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: dropdown.js v3.3.6 - * http://getbootstrap.com/javascript/#dropdowns - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // DROPDOWN CLASS DEFINITION - // ========================= - - var backdrop = '.dropdown-backdrop' - var toggle = '[data-toggle="dropdown"]' - var Dropdown = function (element) { - $(element).on('click.bs.dropdown', this.toggle) - } - - Dropdown.VERSION = '3.3.6' - - function getParent($this) { - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = selector && $(selector) - - return $parent && $parent.length ? $parent : $this.parent() - } - - function clearMenus(e) { - if (e && e.which === 3) return - $(backdrop).remove() - $(toggle).each(function () { - var $this = $(this) - var $parent = getParent($this) - var relatedTarget = { relatedTarget: this } - - if (!$parent.hasClass('open')) return - - if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return - - $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this.attr('aria-expanded', 'false') - $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget)) - }) - } - - Dropdown.prototype.toggle = function (e) { - var $this = $(this) - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { - // if mobile we use a backdrop because click events don't delegate - $(document.createElement('div')) - .addClass('dropdown-backdrop') - .insertAfter($(this)) - .on('click', clearMenus) - } - - var relatedTarget = { relatedTarget: this } - $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this - .trigger('focus') - .attr('aria-expanded', 'true') - - $parent - .toggleClass('open') - .trigger($.Event('shown.bs.dropdown', relatedTarget)) - } - - return false - } - - Dropdown.prototype.keydown = function (e) { - if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return - - var $this = $(this) - - e.preventDefault() - e.stopPropagation() - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - if (!isActive && e.which != 27 || isActive && e.which == 27) { - if (e.which == 27) $parent.find(toggle).trigger('focus') - return $this.trigger('click') - } - - var desc = ' li:not(.disabled):visible a' - var $items = $parent.find('.dropdown-menu' + desc) - - if (!$items.length) return - - var index = $items.index(e.target) - - if (e.which == 38 && index > 0) index-- // up - if (e.which == 40 && index < $items.length - 1) index++ // down - if (!~index) index = 0 - - $items.eq(index).trigger('focus') - } - - - // DROPDOWN PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.dropdown') - - if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.dropdown - - $.fn.dropdown = Plugin - $.fn.dropdown.Constructor = Dropdown - - - // DROPDOWN NO CONFLICT - // ==================== - - $.fn.dropdown.noConflict = function () { - $.fn.dropdown = old - return this - } - - - // APPLY TO STANDARD DROPDOWN ELEMENTS - // =================================== - - $(document) - .on('click.bs.dropdown.data-api', clearMenus) - .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) - .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) - .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown) - .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: modal.js v3.3.6 - * http://getbootstrap.com/javascript/#modals - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // MODAL CLASS DEFINITION - // ====================== - - var Modal = function (element, options) { - this.options = options - this.$body = $(document.body) - this.$element = $(element) - this.$dialog = this.$element.find('.modal-dialog') - this.$backdrop = null - this.isShown = null - this.originalBodyPad = null - this.scrollbarWidth = 0 - this.ignoreBackdropClick = false - - if (this.options.remote) { - this.$element - .find('.modal-content') - .load(this.options.remote, $.proxy(function () { - this.$element.trigger('loaded.bs.modal') - }, this)) - } - } - - Modal.VERSION = '3.3.6' - - Modal.TRANSITION_DURATION = 300 - Modal.BACKDROP_TRANSITION_DURATION = 150 - - Modal.DEFAULTS = { - backdrop: true, - keyboard: true, - show: true - } - - Modal.prototype.toggle = function (_relatedTarget) { - return this.isShown ? this.hide() : this.show(_relatedTarget) - } - - Modal.prototype.show = function (_relatedTarget) { - var that = this - var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) - - this.$element.trigger(e) - - if (this.isShown || e.isDefaultPrevented()) return - - this.isShown = true - - this.checkScrollbar() - this.setScrollbar() - this.$body.addClass('modal-open') - - this.escape() - this.resize() - - this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) - - this.$dialog.on('mousedown.dismiss.bs.modal', function () { - that.$element.one('mouseup.dismiss.bs.modal', function (e) { - if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true - }) - }) - - this.backdrop(function () { - var transition = $.support.transition && that.$element.hasClass('fade') - - if (!that.$element.parent().length) { - that.$element.appendTo(that.$body) // don't move modals dom position - } - - that.$element - .show() - .scrollTop(0) - - that.adjustDialog() - - if (transition) { - that.$element[0].offsetWidth // force reflow - } - - that.$element.addClass('in') - - that.enforceFocus() - - var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) - - transition ? - that.$dialog // wait for modal to slide in - .one('bsTransitionEnd', function () { - that.$element.trigger('focus').trigger(e) - }) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - that.$element.trigger('focus').trigger(e) - }) - } - - Modal.prototype.hide = function (e) { - if (e) e.preventDefault() - - e = $.Event('hide.bs.modal') - - this.$element.trigger(e) - - if (!this.isShown || e.isDefaultPrevented()) return - - this.isShown = false - - this.escape() - this.resize() - - $(document).off('focusin.bs.modal') - - this.$element - .removeClass('in') - .off('click.dismiss.bs.modal') - .off('mouseup.dismiss.bs.modal') - - this.$dialog.off('mousedown.dismiss.bs.modal') - - $.support.transition && this.$element.hasClass('fade') ? - this.$element - .one('bsTransitionEnd', $.proxy(this.hideModal, this)) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - this.hideModal() - } - - Modal.prototype.enforceFocus = function () { - $(document) - .off('focusin.bs.modal') // guard against infinite focus loop - .on('focusin.bs.modal', $.proxy(function (e) { - if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { - this.$element.trigger('focus') - } - }, this)) - } - - Modal.prototype.escape = function () { - if (this.isShown && this.options.keyboard) { - this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { - e.which == 27 && this.hide() - }, this)) - } else if (!this.isShown) { - this.$element.off('keydown.dismiss.bs.modal') - } - } - - Modal.prototype.resize = function () { - if (this.isShown) { - $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this)) - } else { - $(window).off('resize.bs.modal') - } - } - - Modal.prototype.hideModal = function () { - var that = this - this.$element.hide() - this.backdrop(function () { - that.$body.removeClass('modal-open') - that.resetAdjustments() - that.resetScrollbar() - that.$element.trigger('hidden.bs.modal') - }) - } - - Modal.prototype.removeBackdrop = function () { - this.$backdrop && this.$backdrop.remove() - this.$backdrop = null - } - - Modal.prototype.backdrop = function (callback) { - var that = this - var animate = this.$element.hasClass('fade') ? 'fade' : '' - - if (this.isShown && this.options.backdrop) { - var doAnimate = $.support.transition && animate - - this.$backdrop = $(document.createElement('div')) - .addClass('modal-backdrop ' + animate) - .appendTo(this.$body) - - this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { - if (this.ignoreBackdropClick) { - this.ignoreBackdropClick = false - return - } - if (e.target !== e.currentTarget) return - this.options.backdrop == 'static' - ? this.$element[0].focus() - : this.hide() - }, this)) - - if (doAnimate) this.$backdrop[0].offsetWidth // force reflow - - this.$backdrop.addClass('in') - - if (!callback) return - - doAnimate ? - this.$backdrop - .one('bsTransitionEnd', callback) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callback() - - } else if (!this.isShown && this.$backdrop) { - this.$backdrop.removeClass('in') - - var callbackRemove = function () { - that.removeBackdrop() - callback && callback() - } - $.support.transition && this.$element.hasClass('fade') ? - this.$backdrop - .one('bsTransitionEnd', callbackRemove) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callbackRemove() - - } else if (callback) { - callback() - } - } - - // these following methods are used to handle overflowing modals - - Modal.prototype.handleUpdate = function () { - this.adjustDialog() - } - - Modal.prototype.adjustDialog = function () { - var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight - - this.$element.css({ - paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', - paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' - }) - } - - Modal.prototype.resetAdjustments = function () { - this.$element.css({ - paddingLeft: '', - paddingRight: '' - }) - } - - Modal.prototype.checkScrollbar = function () { - var fullWindowWidth = window.innerWidth - if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8 - var documentElementRect = document.documentElement.getBoundingClientRect() - fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left) - } - this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth - this.scrollbarWidth = this.measureScrollbar() - } - - Modal.prototype.setScrollbar = function () { - var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) - this.originalBodyPad = document.body.style.paddingRight || '' - if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) - } - - Modal.prototype.resetScrollbar = function () { - this.$body.css('padding-right', this.originalBodyPad) - } - - Modal.prototype.measureScrollbar = function () { // thx walsh - var scrollDiv = document.createElement('div') - scrollDiv.className = 'modal-scrollbar-measure' - this.$body.append(scrollDiv) - var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth - this.$body[0].removeChild(scrollDiv) - return scrollbarWidth - } - - - // MODAL PLUGIN DEFINITION - // ======================= - - function Plugin(option, _relatedTarget) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.modal') - var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data) $this.data('bs.modal', (data = new Modal(this, options))) - if (typeof option == 'string') data[option](_relatedTarget) - else if (options.show) data.show(_relatedTarget) - }) - } - - var old = $.fn.modal - - $.fn.modal = Plugin - $.fn.modal.Constructor = Modal - - - // MODAL NO CONFLICT - // ================= - - $.fn.modal.noConflict = function () { - $.fn.modal = old - return this - } - - - // MODAL DATA-API - // ============== - - $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { - var $this = $(this) - var href = $this.attr('href') - var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 - var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) - - if ($this.is('a')) e.preventDefault() - - $target.one('show.bs.modal', function (showEvent) { - if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown - $target.one('hidden.bs.modal', function () { - $this.is(':visible') && $this.trigger('focus') - }) - }) - Plugin.call($target, option, this) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tooltip.js v3.3.6 - * http://getbootstrap.com/javascript/#tooltip - * Inspired by the original jQuery.tipsy by Jason Frame - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TOOLTIP PUBLIC CLASS DEFINITION - // =============================== - - var Tooltip = function (element, options) { - this.type = null - this.options = null - this.enabled = null - this.timeout = null - this.hoverState = null - this.$element = null - this.inState = null - - this.init('tooltip', element, options) - } - - Tooltip.VERSION = '3.3.6' - - Tooltip.TRANSITION_DURATION = 150 - - Tooltip.DEFAULTS = { - animation: true, - placement: 'top', - selector: false, - template: '', - trigger: 'hover focus', - title: '', - delay: 0, - html: false, - container: false, - viewport: { - selector: 'body', - padding: 0 - } - } - - Tooltip.prototype.init = function (type, element, options) { - this.enabled = true - this.type = type - this.$element = $(element) - this.options = this.getOptions(options) - this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) - this.inState = { click: false, hover: false, focus: false } - - if (this.$element[0] instanceof document.constructor && !this.options.selector) { - throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') - } - - var triggers = this.options.trigger.split(' ') - - for (var i = triggers.length; i--;) { - var trigger = triggers[i] - - if (trigger == 'click') { - this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) - } else if (trigger != 'manual') { - var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' - var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' - - this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) - this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) - } - } - - this.options.selector ? - (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : - this.fixTitle() - } - - Tooltip.prototype.getDefaults = function () { - return Tooltip.DEFAULTS - } - - Tooltip.prototype.getOptions = function (options) { - options = $.extend({}, this.getDefaults(), this.$element.data(), options) - - if (options.delay && typeof options.delay == 'number') { - options.delay = { - show: options.delay, - hide: options.delay - } - } - - return options - } - - Tooltip.prototype.getDelegateOptions = function () { - var options = {} - var defaults = this.getDefaults() - - this._options && $.each(this._options, function (key, value) { - if (defaults[key] != value) options[key] = value - }) - - return options - } - - Tooltip.prototype.enter = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true - } - - if (self.tip().hasClass('in') || self.hoverState == 'in') { - self.hoverState = 'in' - return - } - - clearTimeout(self.timeout) - - self.hoverState = 'in' - - if (!self.options.delay || !self.options.delay.show) return self.show() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'in') self.show() - }, self.options.delay.show) - } - - Tooltip.prototype.isInStateTrue = function () { - for (var key in this.inState) { - if (this.inState[key]) return true - } - - return false - } - - Tooltip.prototype.leave = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false - } - - if (self.isInStateTrue()) return - - clearTimeout(self.timeout) - - self.hoverState = 'out' - - if (!self.options.delay || !self.options.delay.hide) return self.hide() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'out') self.hide() - }, self.options.delay.hide) - } - - Tooltip.prototype.show = function () { - var e = $.Event('show.bs.' + this.type) - - if (this.hasContent() && this.enabled) { - this.$element.trigger(e) - - var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) - if (e.isDefaultPrevented() || !inDom) return - var that = this - - var $tip = this.tip() - - var tipId = this.getUID(this.type) - - this.setContent() - $tip.attr('id', tipId) - this.$element.attr('aria-describedby', tipId) - - if (this.options.animation) $tip.addClass('fade') - - var placement = typeof this.options.placement == 'function' ? - this.options.placement.call(this, $tip[0], this.$element[0]) : - this.options.placement - - var autoToken = /\s?auto?\s?/i - var autoPlace = autoToken.test(placement) - if (autoPlace) placement = placement.replace(autoToken, '') || 'top' - - $tip - .detach() - .css({ top: 0, left: 0, display: 'block' }) - .addClass(placement) - .data('bs.' + this.type, this) - - this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) - this.$element.trigger('inserted.bs.' + this.type) - - var pos = this.getPosition() - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (autoPlace) { - var orgPlacement = placement - var viewportDim = this.getPosition(this.$viewport) - - placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : - placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : - placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : - placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : - placement - - $tip - .removeClass(orgPlacement) - .addClass(placement) - } - - var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) - - this.applyPlacement(calculatedOffset, placement) - - var complete = function () { - var prevHoverState = that.hoverState - that.$element.trigger('shown.bs.' + that.type) - that.hoverState = null - - if (prevHoverState == 'out') that.leave(that) - } - - $.support.transition && this.$tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - } - } - - Tooltip.prototype.applyPlacement = function (offset, placement) { - var $tip = this.tip() - var width = $tip[0].offsetWidth - var height = $tip[0].offsetHeight - - // manually read margins because getBoundingClientRect includes difference - var marginTop = parseInt($tip.css('margin-top'), 10) - var marginLeft = parseInt($tip.css('margin-left'), 10) - - // we must check for NaN for ie 8/9 - if (isNaN(marginTop)) marginTop = 0 - if (isNaN(marginLeft)) marginLeft = 0 - - offset.top += marginTop - offset.left += marginLeft - - // $.fn.offset doesn't round pixel values - // so we use setOffset directly with our own function B-0 - $.offset.setOffset($tip[0], $.extend({ - using: function (props) { - $tip.css({ - top: Math.round(props.top), - left: Math.round(props.left) - }) - } - }, offset), 0) - - $tip.addClass('in') - - // check to see if placing tip in new offset caused the tip to resize itself - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (placement == 'top' && actualHeight != height) { - offset.top = offset.top + height - actualHeight - } - - var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) - - if (delta.left) offset.left += delta.left - else offset.top += delta.top - - var isVertical = /top|bottom/.test(placement) - var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight - var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' - - $tip.offset(offset) - this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) - } - - Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { - this.arrow() - .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') - .css(isVertical ? 'top' : 'left', '') - } - - Tooltip.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - - $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) - $tip.removeClass('fade in top bottom left right') - } - - Tooltip.prototype.hide = function (callback) { - var that = this - var $tip = $(this.$tip) - var e = $.Event('hide.bs.' + this.type) - - function complete() { - if (that.hoverState != 'in') $tip.detach() - that.$element - .removeAttr('aria-describedby') - .trigger('hidden.bs.' + that.type) - callback && callback() - } - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - $tip.removeClass('in') - - $.support.transition && $tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - - this.hoverState = null - - return this - } - - Tooltip.prototype.fixTitle = function () { - var $e = this.$element - if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { - $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') - } - } - - Tooltip.prototype.hasContent = function () { - return this.getTitle() - } - - Tooltip.prototype.getPosition = function ($element) { - $element = $element || this.$element - - var el = $element[0] - var isBody = el.tagName == 'BODY' - - var elRect = el.getBoundingClientRect() - if (elRect.width == null) { - // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 - elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) - } - var elOffset = isBody ? { top: 0, left: 0 } : $element.offset() - var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } - var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null - - return $.extend({}, elRect, scroll, outerDims, elOffset) - } - - Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { - return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : - /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } - - } - - Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { - var delta = { top: 0, left: 0 } - if (!this.$viewport) return delta - - var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 - var viewportDimensions = this.getPosition(this.$viewport) - - if (/right|left/.test(placement)) { - var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll - var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight - if (topEdgeOffset < viewportDimensions.top) { // top overflow - delta.top = viewportDimensions.top - topEdgeOffset - } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow - delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset - } - } else { - var leftEdgeOffset = pos.left - viewportPadding - var rightEdgeOffset = pos.left + viewportPadding + actualWidth - if (leftEdgeOffset < viewportDimensions.left) { // left overflow - delta.left = viewportDimensions.left - leftEdgeOffset - } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow - delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset - } - } - - return delta - } - - Tooltip.prototype.getTitle = function () { - var title - var $e = this.$element - var o = this.options - - title = $e.attr('data-original-title') - || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) - - return title - } - - Tooltip.prototype.getUID = function (prefix) { - do prefix += ~~(Math.random() * 1000000) - while (document.getElementById(prefix)) - return prefix - } - - Tooltip.prototype.tip = function () { - if (!this.$tip) { - this.$tip = $(this.options.template) - if (this.$tip.length != 1) { - throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') - } - } - return this.$tip - } - - Tooltip.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) - } - - Tooltip.prototype.enable = function () { - this.enabled = true - } - - Tooltip.prototype.disable = function () { - this.enabled = false - } - - Tooltip.prototype.toggleEnabled = function () { - this.enabled = !this.enabled - } - - Tooltip.prototype.toggle = function (e) { - var self = this - if (e) { - self = $(e.currentTarget).data('bs.' + this.type) - if (!self) { - self = new this.constructor(e.currentTarget, this.getDelegateOptions()) - $(e.currentTarget).data('bs.' + this.type, self) - } - } - - if (e) { - self.inState.click = !self.inState.click - if (self.isInStateTrue()) self.enter(self) - else self.leave(self) - } else { - self.tip().hasClass('in') ? self.leave(self) : self.enter(self) - } - } - - Tooltip.prototype.destroy = function () { - var that = this - clearTimeout(this.timeout) - this.hide(function () { - that.$element.off('.' + that.type).removeData('bs.' + that.type) - if (that.$tip) { - that.$tip.detach() - } - that.$tip = null - that.$arrow = null - that.$viewport = null - }) - } - - - // TOOLTIP PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tooltip') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tooltip - - $.fn.tooltip = Plugin - $.fn.tooltip.Constructor = Tooltip - - - // TOOLTIP NO CONFLICT - // =================== - - $.fn.tooltip.noConflict = function () { - $.fn.tooltip = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: popover.js v3.3.6 - * http://getbootstrap.com/javascript/#popovers - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // POPOVER PUBLIC CLASS DEFINITION - // =============================== - - var Popover = function (element, options) { - this.init('popover', element, options) - } - - if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') - - Popover.VERSION = '3.3.6' - - Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { - placement: 'right', - trigger: 'click', - content: '', - template: '' - }) - - - // NOTE: POPOVER EXTENDS tooltip.js - // ================================ - - Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) - - Popover.prototype.constructor = Popover - - Popover.prototype.getDefaults = function () { - return Popover.DEFAULTS - } - - Popover.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - var content = this.getContent() - - $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) - $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events - this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' - ](content) - - $tip.removeClass('fade top bottom left right in') - - // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do - // this manually by checking the contents. - if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() - } - - Popover.prototype.hasContent = function () { - return this.getTitle() || this.getContent() - } - - Popover.prototype.getContent = function () { - var $e = this.$element - var o = this.options - - return $e.attr('data-content') - || (typeof o.content == 'function' ? - o.content.call($e[0]) : - o.content) - } - - Popover.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.arrow')) - } - - - // POPOVER PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.popover') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.popover', (data = new Popover(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.popover - - $.fn.popover = Plugin - $.fn.popover.Constructor = Popover - - - // POPOVER NO CONFLICT - // =================== - - $.fn.popover.noConflict = function () { - $.fn.popover = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: scrollspy.js v3.3.6 - * http://getbootstrap.com/javascript/#scrollspy - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // SCROLLSPY CLASS DEFINITION - // ========================== - - function ScrollSpy(element, options) { - this.$body = $(document.body) - this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) - this.options = $.extend({}, ScrollSpy.DEFAULTS, options) - this.selector = (this.options.target || '') + ' .nav li > a' - this.offsets = [] - this.targets = [] - this.activeTarget = null - this.scrollHeight = 0 - - this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) - this.refresh() - this.process() - } - - ScrollSpy.VERSION = '3.3.6' - - ScrollSpy.DEFAULTS = { - offset: 10 - } - - ScrollSpy.prototype.getScrollHeight = function () { - return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) - } - - ScrollSpy.prototype.refresh = function () { - var that = this - var offsetMethod = 'offset' - var offsetBase = 0 - - this.offsets = [] - this.targets = [] - this.scrollHeight = this.getScrollHeight() - - if (!$.isWindow(this.$scrollElement[0])) { - offsetMethod = 'position' - offsetBase = this.$scrollElement.scrollTop() - } - - this.$body - .find(this.selector) - .map(function () { - var $el = $(this) - var href = $el.data('target') || $el.attr('href') - var $href = /^#./.test(href) && $(href) - - return ($href - && $href.length - && $href.is(':visible') - && [[$href[offsetMethod]().top + offsetBase, href]]) || null - }) - .sort(function (a, b) { return a[0] - b[0] }) - .each(function () { - that.offsets.push(this[0]) - that.targets.push(this[1]) - }) - } - - ScrollSpy.prototype.process = function () { - var scrollTop = this.$scrollElement.scrollTop() + this.options.offset - var scrollHeight = this.getScrollHeight() - var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() - var offsets = this.offsets - var targets = this.targets - var activeTarget = this.activeTarget - var i - - if (this.scrollHeight != scrollHeight) { - this.refresh() - } - - if (scrollTop >= maxScroll) { - return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) - } - - if (activeTarget && scrollTop < offsets[0]) { - this.activeTarget = null - return this.clear() - } - - for (i = offsets.length; i--;) { - activeTarget != targets[i] - && scrollTop >= offsets[i] - && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) - && this.activate(targets[i]) - } - } - - ScrollSpy.prototype.activate = function (target) { - this.activeTarget = target - - this.clear() - - var selector = this.selector + - '[data-target="' + target + '"],' + - this.selector + '[href="' + target + '"]' - - var active = $(selector) - .parents('li') - .addClass('active') - - if (active.parent('.dropdown-menu').length) { - active = active - .closest('li.dropdown') - .addClass('active') - } - - active.trigger('activate.bs.scrollspy') - } - - ScrollSpy.prototype.clear = function () { - $(this.selector) - .parentsUntil(this.options.target, '.active') - .removeClass('active') - } - - - // SCROLLSPY PLUGIN DEFINITION - // =========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.scrollspy') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.scrollspy - - $.fn.scrollspy = Plugin - $.fn.scrollspy.Constructor = ScrollSpy - - - // SCROLLSPY NO CONFLICT - // ===================== - - $.fn.scrollspy.noConflict = function () { - $.fn.scrollspy = old - return this - } - - - // SCROLLSPY DATA-API - // ================== - - $(window).on('load.bs.scrollspy.data-api', function () { - $('[data-spy="scroll"]').each(function () { - var $spy = $(this) - Plugin.call($spy, $spy.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tab.js v3.3.6 - * http://getbootstrap.com/javascript/#tabs - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TAB CLASS DEFINITION - // ==================== - - var Tab = function (element) { - // jscs:disable requireDollarBeforejQueryAssignment - this.element = $(element) - // jscs:enable requireDollarBeforejQueryAssignment - } - - Tab.VERSION = '3.3.6' - - Tab.TRANSITION_DURATION = 150 - - Tab.prototype.show = function () { - var $this = this.element - var $ul = $this.closest('ul:not(.dropdown-menu)') - var selector = $this.data('target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - if ($this.parent('li').hasClass('active')) return - - var $previous = $ul.find('.active:last a') - var hideEvent = $.Event('hide.bs.tab', { - relatedTarget: $this[0] - }) - var showEvent = $.Event('show.bs.tab', { - relatedTarget: $previous[0] - }) - - $previous.trigger(hideEvent) - $this.trigger(showEvent) - - if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return - - var $target = $(selector) - - this.activate($this.closest('li'), $ul) - this.activate($target, $target.parent(), function () { - $previous.trigger({ - type: 'hidden.bs.tab', - relatedTarget: $this[0] - }) - $this.trigger({ - type: 'shown.bs.tab', - relatedTarget: $previous[0] - }) - }) - } - - Tab.prototype.activate = function (element, container, callback) { - var $active = container.find('> .active') - var transition = callback - && $.support.transition - && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length) - - function next() { - $active - .removeClass('active') - .find('> .dropdown-menu > .active') - .removeClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', false) - - element - .addClass('active') - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - - if (transition) { - element[0].offsetWidth // reflow for transition - element.addClass('in') - } else { - element.removeClass('fade') - } - - if (element.parent('.dropdown-menu').length) { - element - .closest('li.dropdown') - .addClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - } - - callback && callback() - } - - $active.length && transition ? - $active - .one('bsTransitionEnd', next) - .emulateTransitionEnd(Tab.TRANSITION_DURATION) : - next() - - $active.removeClass('in') - } - - - // TAB PLUGIN DEFINITION - // ===================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tab') - - if (!data) $this.data('bs.tab', (data = new Tab(this))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tab - - $.fn.tab = Plugin - $.fn.tab.Constructor = Tab - - - // TAB NO CONFLICT - // =============== - - $.fn.tab.noConflict = function () { - $.fn.tab = old - return this - } - - - // TAB DATA-API - // ============ - - var clickHandler = function (e) { - e.preventDefault() - Plugin.call($(this), 'show') - } - - $(document) - .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler) - .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: affix.js v3.3.6 - * http://getbootstrap.com/javascript/#affix - * ======================================================================== - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // AFFIX CLASS DEFINITION - // ====================== - - var Affix = function (element, options) { - this.options = $.extend({}, Affix.DEFAULTS, options) - - this.$target = $(this.options.target) - .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) - .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) - - this.$element = $(element) - this.affixed = null - this.unpin = null - this.pinnedOffset = null - - this.checkPosition() - } - - Affix.VERSION = '3.3.6' - - Affix.RESET = 'affix affix-top affix-bottom' - - Affix.DEFAULTS = { - offset: 0, - target: window - } - - Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - var targetHeight = this.$target.height() - - if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false - - if (this.affixed == 'bottom') { - if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' - return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' - } - - var initializing = this.affixed == null - var colliderTop = initializing ? scrollTop : position.top - var colliderHeight = initializing ? targetHeight : height - - if (offsetTop != null && scrollTop <= offsetTop) return 'top' - if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' - - return false - } - - Affix.prototype.getPinnedOffset = function () { - if (this.pinnedOffset) return this.pinnedOffset - this.$element.removeClass(Affix.RESET).addClass('affix') - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - return (this.pinnedOffset = position.top - scrollTop) - } - - Affix.prototype.checkPositionWithEventLoop = function () { - setTimeout($.proxy(this.checkPosition, this), 1) - } - - Affix.prototype.checkPosition = function () { - if (!this.$element.is(':visible')) return - - var height = this.$element.height() - var offset = this.options.offset - var offsetTop = offset.top - var offsetBottom = offset.bottom - var scrollHeight = Math.max($(document).height(), $(document.body).height()) - - if (typeof offset != 'object') offsetBottom = offsetTop = offset - if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) - if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) - - var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) - - if (this.affixed != affix) { - if (this.unpin != null) this.$element.css('top', '') - - var affixType = 'affix' + (affix ? '-' + affix : '') - var e = $.Event(affixType + '.bs.affix') - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - this.affixed = affix - this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null - - this.$element - .removeClass(Affix.RESET) - .addClass(affixType) - .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') - } - - if (affix == 'bottom') { - this.$element.offset({ - top: scrollHeight - height - offsetBottom - }) - } - } - - - // AFFIX PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.affix') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.affix', (data = new Affix(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.affix - - $.fn.affix = Plugin - $.fn.affix.Constructor = Affix - - - // AFFIX NO CONFLICT - // ================= - - $.fn.affix.noConflict = function () { - $.fn.affix = old - return this - } - - - // AFFIX DATA-API - // ============== - - $(window).on('load', function () { - $('[data-spy="affix"]').each(function () { - var $spy = $(this) - var data = $spy.data() - - data.offset = data.offset || {} - - if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom - if (data.offsetTop != null) data.offset.top = data.offsetTop - - Plugin.call($spy, data) - }) - }) - -}(jQuery); diff --git a/wwwroot/help/js/bootstrap.min.js b/wwwroot/help/js/bootstrap.min.js deleted file mode 100644 index e79c065134..0000000000 --- a/wwwroot/help/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v3.3.6 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under the MIT license - */ -if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/wwwroot/help/js/npm.js b/wwwroot/help/js/npm.js deleted file mode 100644 index bf6aa80602..0000000000 --- a/wwwroot/help/js/npm.js +++ /dev/null @@ -1,13 +0,0 @@ -// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. -require('../../js/transition.js') -require('../../js/alert.js') -require('../../js/button.js') -require('../../js/carousel.js') -require('../../js/collapse.js') -require('../../js/dropdown.js') -require('../../js/modal.js') -require('../../js/tooltip.js') -require('../../js/popover.js') -require('../../js/scrollspy.js') -require('../../js/tab.js') -require('../../js/affix.js') \ No newline at end of file diff --git a/wwwroot/help/map-navigation.html b/wwwroot/help/map-navigation.html deleted file mode 100755 index 45238f6ed7..0000000000 --- a/wwwroot/help/map-navigation.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - The National Map - Help & FAQ - Map Navigation and Display - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
- - -

Map Navigation and Display

- -

There are multiple ways to navigate NationalMap's map view. Use whichever method you prefer.

-

Hint: Mouse over the Compass Control (pictured below) to see help on its use.

- - screenshot of map controls - -

Zooming

- -

Move your mouse pointer over the map and use the scroll wheel to zoom in or out. The location at the centre of the map display is the centre of the zooming.

- -

Right-click and drag upwards or downwards over the map to zoom about the centre point (dragging left or right has no effect).

- -

Click on the zoom control (pictured above) to zoom in or out quickly by a set amount.

- -

Panning

- -

Click anywhere on the map and drag it to the required location.

- -

Return to Australia View

- -

Click the reset icon in the center of the zoom control (pictured above).

- -

(Note that pressing the F5 key on Windows or Command + R on Mac OS will reload the entire NationalMap web page. This will result in a reset which will show the whole of Australia, but it also results in the total loss of all your context information from the current session, which includes display information and selected Data Sets. It is not recommended unless you are experiencing problems.)

- -

Rotate the Map

- -

Use the Compass Control (pictured above) to rotate the map so North is no longer at the top. Click on the “gyroscope” in the centre of the Compass Control and drag slowly to the left or right to rotate the map clockwise or anti-clockwise respectively. The further you drag, the faster it rotates. Release the mouse button when you reach the desired rotation.

- -

Click on the North Point or outer ring of the Compass Control (pictured above) and drag it around to set the desired rotation directly.

- -

Control + left-click and drag left or right over the map to rotate the view about the centre (on Windows systems you can also use Middle-click and drag).

- -

Perspective View

- -

Click on the “gyroscope” in the centre of the Compass Control (picture above) and drag slowly upwards to tilt the view into a Perspective View. Drag downwards to tilt the view back to vertical. The further you drag, the faster it tilts. Release the mouse button when you reach the desired view.

- -

Control + left-click and drag upwards or downwards over the map to enter or adjust the perspective view. (On Windows systems you can also use Middle-click + drag.)

- -

When you are in Perspective View, Control + left-click and drag left or right over the map to “orbit” around the centre of the view. You can also click and drag left or right over the “gyroscope” at the centre of the Compass Control to orbit about the centre of the view.

- -

Double-click the “gyroscope” in the centre of the Compass Control to return the view quickly to a vertical view with North to the top at the current location and scale.

- -

Dragging to Pan and using the Mouse Wheel to zoom still work while showing a Perspective View.

- -

Even the topography and road maps can be viewed in perspective.

- -

You can’t simulate looking from under the ground because the system always keeps the “camera position” above the earth’s surface, but you can create a view which is looking only at the sky. Tilt back downwards to recover.

- -

Hint: In Australia, Cradle Mountain and Katoomba are good places to use for experimenting with Perspective View. Use the search bar to locate them. (Other very high relief areas like the Grand Canyon or Mount Everest - not the ones in NSW - are also really cool!)

- -

Changing the Base Map

- -

Click on the Maps button to show the Base Map Dialog (pictured below) for changing the base map.

- - screenshot of map controls - -
    -
  • Select 2D to show a vertical map view with north to the top. The Compass Control will not be displayed and Perspective View cannot be enabled.
  • - -
  • Select 3D Smooth to show a Perspective View which has no elevation change. The maps or images are draped over a smooth globe.
  • - -
  • Select 3D Terrain to show a Perspective View which shows the elevation changes in the terrain. 3D Smooth and 3D Terrain will look almost the same unless you are using Perspective View. Note: 3D Terrain view may give the same result as 3D Smooth or may not work at all on some computers with older graphic cards or older web browser versions.
  • - -
  • Click on one of the Base map thumbnails to select the type of map to view. Mouse over the thumbnails to see a hint on what they are. NASA Black Marble, Australian Hydrography and Natural Earth II may show as completely one colour if you are zoomed in too far. Try these ones on a zoomed out view first.
  • -
- -

Close the dialog by clicking the X at the top right or clicking again on the Base Maps button.

- - -
- - -
-
- -
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/help/privacy.html b/wwwroot/help/privacy.html deleted file mode 100644 index 5856b21f2b..0000000000 --- a/wwwroot/help/privacy.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - The National Map - Privacy - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -

Privacy

- -

The Department of the Prime Minister and Cabinet is covered by the Privacy Act 1988 (Cth) (‘the Privacy Act’). The Privacy Act contains 13 Australian Privacy Principles (‘the APPs’) which governs how Australian Government agencies should collect, use, store and disclose personal information, and how individuals can access records containing their personal information. General information about the Privacy Act and the APPs can be found on the website of the Office of the Australian Information Commissioner.

- -

We are committed to protecting your privacy. Our Privacy Policy can be accessed via this link. The NationalMap website (this website) complies with the Australian Information Commissioner’s APP Guidelines and with our APP Privacy Policy.

- -

You are reminded that there are risks involved in sending information over the internet.

- -

Any data collected by us as described in this notice is stored securely, and archived for a period of at least five years, and possible up to ten years.

- -

Use and disclosure

- -

We only use personal information that we collect through this website for the purposes for which it was given to us or for related purposes, such as the maintenance, upgrade or improvements of this website or any policy development associated with this website.

- -

We do not share personal information about any individual which we collect through this website to any third party, such as other Australian Government agencies or organisations unless one of the following applies:

- -

• the individual has consented;

- -

• the individual would reasonably expect, or has been told that information of that kind is usually passed to those other individuals, agencies, organisations;

- -

• is required or authorised by law;

- -

• a Permitted General Situation (as defined under section 16A of the Privacy Act) exists (for example, it will prevent or lessen a serious and imminent threat to somebody’s life or health); or

- -

• the disclosure is reasonably necessary for the enforcement of the criminal law or of a law imposing a pecuniary penalty, or for the protection of public revenue.

- -

Information logged when browsing the NationalMap website

- -

We do not collect personal information about you if you only browse this website.

- -

When you browse this website, our server logs the following information:

- -

• the type of browser and operating system you are using;

- -

• the address of the referring site (for example, the previous site that you visited); and

- -

• your IP (Internet Protocol) address, which is a number unique to the machine on which you connect to the internet.

- -

Our server also logs the following information:

- -

• the date and time of your visit; and

- -

• the address of the pages accessed and the documents downloaded.

- -

We use the information we collect from your browsing of this website for statistical analysis, system administration, monitoring of this website’s security, customisation of this website to users’ needs, and the evaluation, research and development of this website.

- -

In order to give you a better experience, we use a URL shortening service provided by a third party. That service may also track the clicks and referrers (sharers) of the NationalMap.

- -

No attempt will be made to identify users due to their browsing activities on this website, except in the unlikely event of an investigation, for example, where a law enforcement agency may exercise a warrant or subpoena. The information we collect from your browsing of this website will only be disclosed to a third party if it is required or authorised by law.

- -

Cookies

- -

A cookie is an electronic token that is passed to your browser and your browser passes it back to the server whenever a page is sent to you.

- -

For this website, our server creates a cookie that is used to keep track of the pages you have accessed. This cookie allows you to page back and forward through this website and return to pages you have already visited. This cookie exists only for the time that you are accessing our server.

- -

Please note that some browsers can be configured to allow cookies to be accessed by servers other than the originating server. Most browsers can also be configured to notify the user when a cookie is received, allowing you to either accept or reject it. You do not need to have configured your browser to enable the accepting or sending of cookies in order to use this website.

- -

Cookies are not used for any other purposes on this website, for example, we do not use cookies on this website to collect your personal information.

- -

Online forms, email address and contact us

- -

When using this website (for example, the online forms or contact us function), you may provide us with your personal information, for example, your name and email address etc. When you do this, you agree to provide us with your consent to disclose your personal information to other areas of the Department and potentially other appropriate third parties, for example, the National ICT Australia, Geoscience Australia, Bureau of Meteorology, Australian Bureau of Statistics, data.gov.au website etc. so that we can appropriately respond to your request or query. You also agree to provide us with your consent to disclose your personal information for the administration, regulation and evaluation processes associated with this website or for related purposes such as any policy development associated with this website.

- -

You have the right not to identify yourself or to use an alias (pseudonym) when you contact us or use online forms in relation to this website. However, where it is impractical for us to deal with your request in that way, or the law requires or authorise us to collect your personal information, then we may require you to identify yourself.

- -

Searches

- -

The search terms that you enter when using this website’s search engine are collected so that we can find out what users are looking for on this website.

- -

Links

- -

This website contains links to other websites for the attribution of the data source or may use social media sites to make it easy to share information. These other sites may use web measurement tools, customisation technologies and persistent cookies to inform the services that they provide to their users. We are not responsible for the privacy practices or the content of other sites. This website does not use, maintain or share Personally Identifiable Information made through the other websites, such as, Facebook, Twitter or YouTube etc.

- - -
- -
-
- -
-
-

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

Terms and conditionsPrivacy

- -
-
- - - - - - - - - - - diff --git a/wwwroot/images/Dept_of_Comms-Reg-Stacked-Press_0.jpg b/wwwroot/images/Dept_of_Comms-Reg-Stacked-Press_0.jpg deleted file mode 100644 index 6715bab671..0000000000 Binary files a/wwwroot/images/Dept_of_Comms-Reg-Stacked-Press_0.jpg and /dev/null differ diff --git a/wwwroot/images/Finalist-Innovation.gif b/wwwroot/images/Finalist-Innovation.gif deleted file mode 100644 index aa7aaedba2..0000000000 Binary files a/wwwroot/images/Finalist-Innovation.gif and /dev/null differ diff --git a/wwwroot/images/aremi.jpg b/wwwroot/images/aremi.jpg deleted file mode 100644 index a80804c842..0000000000 Binary files a/wwwroot/images/aremi.jpg and /dev/null differ diff --git a/wwwroot/images/aurin-map.jpg b/wwwroot/images/aurin-map.jpg deleted file mode 100644 index caf04e4072..0000000000 Binary files a/wwwroot/images/aurin-map.jpg and /dev/null differ diff --git a/wwwroot/images/basemaps/australian-topo.png b/wwwroot/images/basemaps/australian-topo.png new file mode 100644 index 0000000000..9ba2e007fa Binary files /dev/null and b/wwwroot/images/basemaps/australian-topo.png differ diff --git a/wwwroot/images/basemaps/bing-aerial-labels.png b/wwwroot/images/basemaps/bing-aerial-labels.png new file mode 100644 index 0000000000..caf33dcc9c Binary files /dev/null and b/wwwroot/images/basemaps/bing-aerial-labels.png differ diff --git a/wwwroot/images/basemaps/bing-aerial.png b/wwwroot/images/basemaps/bing-aerial.png new file mode 100644 index 0000000000..933d781b07 Binary files /dev/null and b/wwwroot/images/basemaps/bing-aerial.png differ diff --git a/wwwroot/images/basemaps/bing-maps-roads.png b/wwwroot/images/basemaps/bing-maps-roads.png new file mode 100644 index 0000000000..4b7ae42b55 Binary files /dev/null and b/wwwroot/images/basemaps/bing-maps-roads.png differ diff --git a/wwwroot/images/basemaps/natural-earth.png b/wwwroot/images/basemaps/natural-earth.png new file mode 100644 index 0000000000..f90be474af Binary files /dev/null and b/wwwroot/images/basemaps/natural-earth.png differ diff --git a/wwwroot/images/branding.png b/wwwroot/images/branding.png deleted file mode 100644 index cd262ce33e..0000000000 Binary files a/wwwroot/images/branding.png and /dev/null differ diff --git a/wwwroot/images/data61-white-bg-huge.jpg b/wwwroot/images/data61-white-bg-huge.jpg deleted file mode 100644 index 9b683ca8dd..0000000000 Binary files a/wwwroot/images/data61-white-bg-huge.jpg and /dev/null differ diff --git a/wwwroot/images/geoscience_stacked.jpg b/wwwroot/images/geoscience_stacked.jpg deleted file mode 100644 index df9a163bcb..0000000000 Binary files a/wwwroot/images/geoscience_stacked.jpg and /dev/null differ diff --git a/wwwroot/images/nationalmap-logo.png b/wwwroot/images/nationalmap-logo.png deleted file mode 100644 index 7736f10110..0000000000 Binary files a/wwwroot/images/nationalmap-logo.png and /dev/null differ diff --git a/wwwroot/images/neii.jpg b/wwwroot/images/neii.jpg deleted file mode 100644 index 08b5433c41..0000000000 Binary files a/wwwroot/images/neii.jpg and /dev/null differ diff --git a/wwwroot/images/nicta-logo.png b/wwwroot/images/nicta-logo.png deleted file mode 100644 index 954bb87285..0000000000 Binary files a/wwwroot/images/nicta-logo.png and /dev/null differ diff --git a/wwwroot/images/nicta.png b/wwwroot/images/nicta.png deleted file mode 100644 index 946c715778..0000000000 Binary files a/wwwroot/images/nicta.png and /dev/null differ diff --git a/wwwroot/images/northernaustralia.jpg b/wwwroot/images/northernaustralia.jpg deleted file mode 100644 index 9480850189..0000000000 Binary files a/wwwroot/images/northernaustralia.jpg and /dev/null differ diff --git a/wwwroot/images/solar.png b/wwwroot/images/solar.png deleted file mode 100644 index e2e9ce8bc8..0000000000 Binary files a/wwwroot/images/solar.png and /dev/null differ diff --git a/wwwroot/images/square.png b/wwwroot/images/square.png deleted file mode 100644 index 9aaf05f5f9..0000000000 Binary files a/wwwroot/images/square.png and /dev/null differ diff --git a/wwwroot/images/terrarium.png b/wwwroot/images/terrarium.png deleted file mode 100644 index 58f44e15dd..0000000000 Binary files a/wwwroot/images/terrarium.png and /dev/null differ diff --git a/wwwroot/images/welcome-bg.jpg b/wwwroot/images/welcome-bg.jpg deleted file mode 100644 index 30d3b7cf02..0000000000 Binary files a/wwwroot/images/welcome-bg.jpg and /dev/null differ diff --git a/wwwroot/images/wind.png b/wwwroot/images/wind.png deleted file mode 100644 index 6c745dca7b..0000000000 Binary files a/wwwroot/images/wind.png and /dev/null differ diff --git a/wwwroot/index.ejs b/wwwroot/index.ejs new file mode 100644 index 0000000000..b5126f9352 --- /dev/null +++ b/wwwroot/index.ejs @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terria Map + + + + + + + +
+ + diff --git a/wwwroot/index.html b/wwwroot/index.html deleted file mode 100644 index 8589c96b3d..0000000000 --- a/wwwroot/index.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Terria Map - - - - - - - - -
- - - diff --git a/wwwroot/init/act.json b/wwwroot/init/act.json deleted file mode 100644 index 57e08a935c..0000000000 --- a/wwwroot/init/act.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "homeCamera": { - "west": 148.751, - "south": -35.936, - "east": 149.409, - "north": -35.111 - }, - "services": [], - "catalog": [ - { - "name": "ACT Government", - "type": "socrata", - "isPromoted": true, - "isOpen": true - }, - { - "type": "socrata", - "name": "ACT Government broken?", - "groupBy": "category", - "filterQuery": ["limitTo=MAPS"], - "url": "http://www.data.act.gov.au" - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/charts.json b/wwwroot/init/charts.json deleted file mode 100644 index 09bf100664..0000000000 --- a/wwwroot/init/charts.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "catalog": [ - { - "name": "Chart examples", - "type": "group", - "isOpen": true, - "items": [ - { - "name": "Power Stations", - "type": "csv", - "url": "test/powergen_no_time.csv" - }, - { - "name": "Power Stations (with template)", - "type": "csv", - "url": "test/powergen_no_time.csv", - "cacheDuration": "5m", - "featureInfoTemplate": "

{{Station Name}} ({{DUID}})

{{Participant}}

{{Current Output (MW)}}MW at {{Most Recent Output Time (AEST)}}
{{Current % of Reg Cap}}% of {{Reg Cap (MW)}}MW registered capacity
{{Current % of Max Cap}}% of {{Max Cap (MW)}}MW maximum capacity

Category{{Category}}
Classification{{Classification}}
Fuel Source{{Fuel Source - Primary}} ({{Fuel Source - Descriptor}})
Technology Type{{Technology Type - Primary}} ({{Technology Type - Descriptor}})
Physical Unit No.{{Physical Unit No_}}
Aggregation{{Aggregation}}
Unit Size (MW){{Unit Size (MW)}}
Power generation
" - }, - { - "name": "Star Stations", - "type": "csv", - "url": "build/TerriaJS/test/csv/lat_lon_name_url_col.csv", - "featureInfoTemplate" : "
TypeStation
Value{{col}}
Signal at 560Hz

Sample data only

" - }, - { - "name": "Sheep Stations", - "type": "csv", - "url": "build/TerriaJS/test/csv/lat_lon_nullvalue.csv", - "featureInfoTemplate" : { - "name": "Number {{value}}", - "template": "

All sheep stations have the same time series plot.

" - } - }, - { - "name": "XY Plot", - "type": "csv", - "url": "build/TerriaJS/test/csv_nongeo/xy.csv" - }, - { - "name": "Time series", - "type": "csv", - "url": "build/TerriaJS/test/csv_nongeo/time_series.csv" - }, - { - "name": "Train Stations", - "type": "csv", - "url": "build/TerriaJS/test/csv/lat_lon_nullvalue.csv", - "featureInfoTemplate" : { - "name": "Number {{value}}", - "template": "

All train stations have the same x-y plot.

" - } - }, - { - "name": "Chart with inline data", - "type": "csv", - "url": "build/TerriaJS/test/csv/lat_lon_name_value.csv", - "featureInfoTemplate" : { - "template": "

Chart with inline data

x,y\n1,3\n5,10\n8,-2\n10,{{value}}\n" - } - } - ] - } - ] -} diff --git a/wwwroot/init/ckan.json b/wwwroot/init/ckan.json deleted file mode 100644 index 5ac48a3917..0000000000 --- a/wwwroot/init/ckan.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "corsDomains" : [ - "data.gov.au", - "ga.gov.au", - "corsproxy.com", - "programs.communications.gov.au" - ], - "homeCamera": { - "west": 105, - "south": -45, - "east": 155, - "north": -5 - }, - "services": [], - "catalog": [ - { - "name": "National Data Sets CKAN", - "type": "ckan", - "url": "http://ckan-nm.nicta.com.au", - "filterQuery": [ "q=res_format:WMS", "q=res_format:%22Esri%20REST%22" ], - "filterByWmsGetCapabilities": false, - "minimumMaxScaleDenominator": 1e10, - "wmsParameters": {"tiled" : true}, - "blacklist": { - } - }, - { - "name": "Data Providers", - "type": "group", - "items": [ - { - "name": "Topography (Geoscience Australia)", - "description": "[Licence](http://www.ga.gov.au/copyright)", - "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)", - "url": "http://geoserver.nationalmap.nicta.com.au/geotopo_250k/ows", - "type": "wms-getCapabilities" - }, - { - "name": "Water (Bureau of Meteorology Geofabric)", - "description": "[Licence](http://creativecommons.org/licenses/by/3.0/au/)", - "dataCustodian": "[Australian Bureau of Meteorology](http://www.bom.gov.au/water/geofabric/)", - "url": "http://geofabric.bom.gov.au/simplefeatures/ows", - "type": "wms-getCapabilities" - }, - { - "name": "Boundaries (Australia Bureau of Statistics)", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[Australian Bureau of Statistics](http://www.abs.gov.au/)", - "url": "http://geoserver.nationalmap.nicta.com.au/admin_bnds_abs/ows", - "type": "wms-getCapabilities" - }, - { - "name": "data.gov.au", - "dataCustodian": "[data.gov.au](http://www.data.gov.au/)", - "url": "http://data.gov.au/geoserver/ows", - "type": "wms-getCapabilities" - }, - { - "name": "National Exposure Information System 2012", - "description": "[Licence](http://www.ga.gov.au/copyright)", - "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)", - "url": "http://www.ga.gov.au/gis/services/hazards/NEXIS_2012_WMS/MapServer/WMSServer", - "type": "wms-getCapabilities" - } - ] - } - ] -} diff --git a/wwwroot/init/csiro.json b/wwwroot/init/csiro.json deleted file mode 100644 index ae81787585..0000000000 --- a/wwwroot/init/csiro.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "homeCamera": { - "west": 105, - "south": -45, - "east": 155, - "north": -5 - }, - "services": [], - "catalog": [ - { - "name": "CSIRO Web Services", - "type": "group", - "items": [ - { - "name": "Soil and Landscape Grid", - "description": "[Home Page](http://www.clw.csiro.au/aclep/soilandlandscapegrid/GetData-GIS.html) [Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[CSIRO](http://www.sa.gov.au/)", - "url": "http://www.asris.csiro.au/arcgis/rest/services/TERN", - "type": "esri-mapServer-group" - } - ] - } - ] -} diff --git a/wwwroot/init/dgakml.json b/wwwroot/init/dgakml.json deleted file mode 100644 index e250b6a1ab..0000000000 --- a/wwwroot/init/dgakml.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "catalog": [ - { - "name": "Data.gov.au KML", - "type": "ckan", - "url": "http://www.data.gov.au", - "filterQuery": ["fq=res_format%3aKML"], - "includeKml": true, - "includeWms": false, - "includeEsriMapServer": false, - "filterByWmsGetCapabilities": false, - "minimumMaxScaleDenominator": 1e10, - "blacklist": { - "Rainforests (EVC_2005)": true - } - } - ] -} diff --git a/wwwroot/init/ga.json b/wwwroot/init/ga.json deleted file mode 100644 index ea127d2cd8..0000000000 --- a/wwwroot/init/ga.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "corsDomains" : [ - "corsproxy.com", - "programs.communications.gov.au" - ], - "camera": { - "west": 105, - "south": -45, - "east": 155, - "north": -5 - }, - "services": [], - "catalog": [ - { - "name": "GA", - "type": "group", - "isOpen": true, - "items": [ - { - "name": "Culture and Infrastructure", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Culture_and_Infrastructure/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Elevation Relief and Physiography", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Elevation_Relief_and_Physiography/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Hydrography and Marine", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Hydrography_and_Marine/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Labelling and Boundaries", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Labelling_and_Boundaries/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Reserves", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Reserves/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Transport", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Transport/MapServer", - "type": "esri-mapServer-group" - }, - { - "name": "Vegetation", - "description": "[Licence](http://creativecommons.org/licenses/by/2.5/au/)", - "dataCustodian": "[South Australian Government](http://www.sa.gov.au/)", - "url": "http://www.ga.gov.au/gis/rest/services/topography/Dynamic_National_Map_Vegetation/MapServer", - "type": "esri-mapServer-group" - } - ] - } - ] -} diff --git a/wwwroot/init/geelong.json b/wwwroot/init/geelong.json deleted file mode 100644 index 021ed32290..0000000000 --- a/wwwroot/init/geelong.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "corsDomains" : [ - "data.gov.au", - "ga.gov.au", - "corsproxy.com", - "programs.communications.gov.au" - ], - "homeCamera": { - "west": 144.3, - "south": -38.3, - "east": 144.5, - "north": -38.0 - }, - "services": [], - "catalog": [ - { - "name": "Geelong Open Data", - "type": "ckan", - "url": "http://www.data.gov.au", - "filterQuery": ["fq=organization%3acity-of-greater-geelong"], - "filterByWmsGetCapabilities": false, - "minimumMaxScaleDenominator": 1e10, - "blacklist": { - "Rainforests (EVC_2005)": true - } - } - ] -} diff --git a/wwwroot/init/na.json b/wwwroot/init/na.json deleted file mode 100644 index 4818d312eb..0000000000 --- a/wwwroot/init/na.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "corsDomains" : [ - "corsproxy.com", - "programs.communications.gov.au", - "www.asris.csiro.au" - ], - "homeCamera": { - "west": 116, - "south": -27, - "east": 149, - "north": -8 - }, - "baseMapName": "Australian Topography", - "initialViewerMode": "3d", - "services": [], - "catalog": [ - { - "name": "Northern Territory", - "description": "[Licence](http://www.ga.gov.au/copyright)", - "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)", - "url": "http://wms1.ntlis.nt.gov.au/ilismap", - "type": "wms-getCapabilities" - }, - { - "name": "National Data Sets", - "isOpen": false, - "type": "group", - "items": [ - { - "name": "Framework", - "type": "group", - "items": [ - { - "name": "NA Mask", - "rectangle": [ - "96.816941408", - "-43.74050960205765", - "159.109219008", - "-9.142175976703609" - ], - "type": "wms", - "url": "http://geoserver.nationalmap.nicta.com.au/admin_bnds_abs/ows", - "layers": "admin_bnds:NA_MASK", - "isShown": true, - "opacity": 0.9, - "keepOnTop": true - } - ] - } - ] - } - ] -} diff --git a/wwwroot/init/nsw.json b/wwwroot/init/nsw.json deleted file mode 100644 index 8bfc004046..0000000000 --- a/wwwroot/init/nsw.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "homeCamera": { - "west": 140.8, - "south": -37.6, - "east": 153.8, - "north": -28.1 - }, - "services": [], - "catalog": [ - { - "name": "New South Wales Government", - "type": "group", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/nt.json b/wwwroot/init/nt.json deleted file mode 100644 index 1fb15457e2..0000000000 --- a/wwwroot/init/nt.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "homeCamera": { - "west": 128.9, - "south": -26.2, - "east": 138.2, - "north": -10.7 - }, - "services": [], - "catalog": [ - { - "name": "Northern Territory Government", - "type": "group", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/qld.json b/wwwroot/init/qld.json deleted file mode 100644 index 2cea23eb3f..0000000000 --- a/wwwroot/init/qld.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "homeCamera": { - "west": 137, - "south": -31, - "east": 153, - "north": -10 - }, - "catalog": [ - { - "name": "Queensland Government", - "type": "group", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/sa.json b/wwwroot/init/sa.json deleted file mode 100644 index 8e3175e292..0000000000 --- a/wwwroot/init/sa.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "homeCamera": { - "west": 129, - "south": -38, - "east": 141, - "north": -25 - }, - "services": [], - "catalog": [ - { - "name": "South Australian Government", - "type": "wms-getCapabilities", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/simple.json b/wwwroot/init/simple.json new file mode 100644 index 0000000000..4059ddb25e --- /dev/null +++ b/wwwroot/init/simple.json @@ -0,0 +1,727 @@ +{ + "homeCamera": { + "north": -8, + "east": 158, + "south": -45, + "west": 109 + }, + "catalog": [ + { + "id": "aB3dE4FgHi", + "type": "group", + "name": "Featured Examples", + "members": [ + { + "type": "esri-mapServer-group", + "name": "Catchment Scale Land Use", + "id": "354db2f2", + "url": "https://www.asris.csiro.au/arcgis/rest/services/abares/clum_50m_2018/MapServer", + "forceProxy": true + }, + { + "id": "5z6OTFssaW", + "name": "CSIRO Soil and Landscape Grid", + "url": "https://www.asris.csiro.au/arcgis/rest/services/TERN", + "type": "esri-group" + }, + { + "id": "IaRi3Qn1pj", + "type": "group", + "name": "Hydro Energy Storage", + "members": [ + { + "id": "uhsE72", + "type": "group", + "name": "ANU STORES Worldwide", + "members": [ + { + "type": "wms", + "name": "Pumped hydro: 150GWh 18h", + "id": "c855dca8", + "info": [ + { + "name": "Description", + "content": "This information has been developed by the 100% Renewable Energy group from the Research School of Electrical, Energy and Materials Engineering at the Australia National University. http://re100.eng.anu.edu.au

Potential sites for off-river PHES are identified using GIS algorithms with defined search criteria. The surveyed latitude range is up to 60 degrees north and south. Each identified site comprises an upper and lower reservoir pair plus a hypothetical tunnel route between the reservoirs, and includes data such as latitude, longitude, altitude, head, slope, water volume, water area, rock volume, dam wall length, water/rock ratio, energy storage potential and approximate relative cost (categories A-E).

Wall heights are adjusted for each reservoir in a pair to yield equal water volumes to achieve the targeted energy storage. Energy (= head * usable volume * g * efficiency) and storage-length combinations are provided in Table 1. The approximate number of people that a reservoirs could service for a 100% renewable electricity grid is listed in the third line.

Table 1 2 GWh 5 GWh 15 GWh 50 GWh 150 GWh
6 hours -
18 hours -
Millions of people 0.1 0.25 0.75 2.5 7.5

Virtually all upper reservoirs are away from rivers, and none intrude on protected area or urban areas listed in the databases that we use below. There may be local constraints that prevent use of a particular site that is not reflected in these databases. Please refer to the ANU 100% Renewable Energy website for additional information: http://re100.eng.anu.edu.au/global

" + }, + { + "name": "Disclaimer", + "content": "None of the PHES sites discussed in this study have been the subject of geological, hydrological, environmental, heritage and other studies, and it is not known whether any particular site would be suitable. The commercial feasibility of developing these sites is unknown. As with all major engineering projects, diligent attention to quality assurance would be required for safety and efficacy.

There has been no investigation of land tenure apart from exclusion of some environmental areas and urban areas, and no discussions with land owners and managers. Nothing in this list of potential site locations implies any rights for development of these locations. Accuracy of the sites depends on the accuracy of the source data. There may be sites that fall into local protected areas or urban areas that are not identified by the source data.

" + }, + { + "name": "Access and acknowledgements", + "content": "In publications that use this information please acknowledge the RE100 Group, Australian National University, http://re100.eng.anu.edu.au/" + }, + { + "name": "Source Data", + "content": "Digital Terrain Model (DTM) https://earthexplorer.usgs.gov/

World Database Protected Areas: https://www.protectedplanet.net/

Urban extent: HBASE http://sedac.ciesin.columbia.edu/data/set/ulandsat-hbase-v1/data-download

" + } + ], + "infoSectionOrder": [ + "Disclaimer", + "Description", + "Access and acknowledgements", + "Source Data" + ], + "url": "https://gis.aremi.data61.io/anu/wms", + "opacity": 1, + "layers": "150gwh_18h", + "featureInfoTemplate": { + "template": "
{{description}}
" + }, + "tileErrorHandlingOptions": { + "ignoreUnknownTileErrors": true + }, + "shareKeys": [ + "Root Group/Renewable Energy/Hydro/Storage/ANU STORES Worldwide/Pumped hydro: 150GWh 18h" + ] + } + ], + "description": "As the proportion of wind and solar photovoltaics (PV) in an electrical grid extends into the 50-100% range a combination of additional long-distance high voltage transmission, demand management and local storage is required for stability. Pumped Hydro Energy Storage (PHES) constitutes 97% of electricity storage worldwide because of its low cost.

The RE100 Group ANU found about 530,000 potentially feasible PHES sites with storage potential of about 22 million Gigawatt-hours (GWh) by using geographic information system (GIS) analysis. This is about one hundred times greater than required to support a 100% global renewable electricity system. Brownfield sites (existing reservoirs, old mining sites) will be included in a future analysis.

This information has been developed by the 100% Renewable Energy group from the Research School of Electrical, Energy and Materials Engineering at the Australia National University. http://re100.eng.anu.edu.au

Potential sites for off-river PHES are identified using GIS algorithms with defined search criteria. The surveyed latitude range is up to 60 degrees north and south. Each identified site comprises an upper and lower reservoir pair plus a hypothetical tunnel route between the reservoirs, and includes data such as latitude, longitude, altitude, head, slope, water volume, water area, rock volume, dam wall length, water/rock ratio, energy storage potential and approximate relative cost (categories A-E).

Wall heights are adjusted for each reservoir in a pair to yield equal water volumes to achieve the targeted energy storage. Energy (= head * usable volume * g * efficiency) and storage-length combinations are provided in Table 1. The approximate number of people that a reservoirs could service for a 100% renewable electricity grid is listed in the third line.

Table 1 2 GWh 5 GWh 15 GWh 50 GWh 150 GWh
6 hours -
18 hours -
Millions of people 0.1 0.25 0.75 2.5 7.5

Virtually all upper reservoirs are away from rivers, and none intrude on protected area or urban areas listed in the databases that we use below. There may be local constraints that prevent use of a particular site that is not reflected in these databases. Please refer to the ANU 100% Renewable Energy website for additional information: http://re100.eng.anu.edu.au/global

DISCLAIMER

None of the PHES sites discussed in this study have been the subject of geological, hydrological, environmental, heritage and other studies, and it is not known whether any particular site would be suitable. The commercial feasibility of developing these sites is unknown. As with all major engineering projects, diligent attention to quality assurance would be required for safety and efficacy.

There has been no investigation of land tenure apart from exclusion of some environmental areas and urban areas, and no discussions with land owners and managers. Nothing in this list of potential site locations implies any rights for development of these locations. Accuracy of the sites depends on the accuracy of the source data. There may be sites that fall into local protected areas or urban areas that are not identified by the source data.

", + "shareKeys": [ + "Root Group/Renewable Energy/Hydro/Storage/ANU STORES Worldwide" + ] + }, + { + "type": "wms", + "name": "Australia Upper Reservoir Locations - ANU STORES", + "info": [ + { + "name": "Disclaimer", + "content": "None of the PHES sites discussed in this study have been the subject of geological, hydrological, environmental and other studies, and it is not known whether any particular site would be suitable.

Please refer to the ANU 100% Renewable Energy website for additional information:

http://re100.eng.anu.edu.au/

There has been no investigation of land tenure apart from exclusion of national parks and urban areas, and no discussions with land owners and managers. Nothing in this list of potential site locations implies any rights for development of these locations.

The commercial feasibility of developing these sites is unknown. As with all major engineering projects, diligent attention to quality assurance would be required for safety and efficacy.

" + } + ], + "initialMessage": { + "title": "Australia Upper Reservoir Locations Disclaimer", + "content": "None of the PHES sites discussed in this study have been the subject of geological, hydrological, environmental and other studies, and it is not known whether any particular site would be suitable.

Please refer to the ANU 100% Renewable Energy website for additional information:

http://re100.eng.anu.edu.au/

There has been no investigation of land tenure apart from exclusion of national parks and urban areas, and no discussions with land owners and managers. Nothing in this list of potential site locations implies any rights for development of these locations.

The commercial feasibility of developing these sites is unknown. As with all major engineering projects, diligent attention to quality assurance would be required for safety and efficacy.

", + "confirmation": true, + "width": 600, + "height": 550, + "confirmText": "I Agree" + }, + "url": "https://gis.aremi.data61.io/ANU_STORES/wms", + "opacity": 1, + "rectangle": { + "west": 112, + "south": -48, + "east": 155, + "north": -5 + }, + "layers": "all_reservoirs", + "featureInfoTemplate": { + "name": "{{Index}}{{#Dam_volume}}: {{Stored_Ene}} GWh {{/Dam_volume}}", + "template": "

{{#Dam_volume}}Reservoir:{{/Dam_volume}} {{^Dam_volume}}Dam wall:{{/Dam_volume}} {{Index}}

{{#Dam_volume}} {{/Dam_volume}} {{#Dam_volume}} {{/Dam_volume}}
Stored energy: {{Stored_Ene}} GWh
Elevation: {{Elevation_}} metres
Water area: {{Water_area}} hectares
Reservoir volume:  {{Reservoir_}} gigalitres
Dam length: {{Dam_length}} metres
Dam area: {{Dam_area_h}} hectares
Dam volume: {{Dam_volume}} gigalitres
Water to rock ratio: {{Water_rock}}
" + }, + "tileErrorHandlingOptions": { + "ignoreUnknownTileErrors": true + }, + "id": "RqnKAv", + "shareKeys": [ + "Root Group/Renewable Energy/Hydro/Storage/Australia Upper Reservoir Locations - ANU STORES" + ] + } + ] + }, + { + "type": "gtfs", + "url": "https://api.transport.nsw.gov.au/v1/gtfs/vehiclepos/buses", + "image": "build/TerriaJS/images/icons/sydney_bus_icon_smaller.png", + "name": "NSW Live Transport - Buses", + "headers": [ + { + "name": "Authorization", + "value": "apikey l4VnvZi4uQLSvD7lwN2ac7vIDJUJ3epYva4l" + } + ], + "refreshInterval": 5, + "featureInfoTemplate": { + "name": "{{vehicle_trip_bus_number}}", + "template": "Bus: {{route_short_name}}
Occupancy: {{occupancy_status_str}}
Speed: {{speed_km}} km/h
Direction: ⬆" + }, + "model": { + "url": "lowpoly_bus/scene.gltf", + "scale": 0.3048, + "maximumDistance": 500.0 + } + }, + { + "id": "QwErTyUiOp", + "type": "group", + "name": "Sentinel-2 cloudless world", + "members": [ + { + "id": "lIvVnuKJA9", + "name": "Sentinel-2 cloudless world 2016", + "type": "wmts", + "url": "https://tiles.maps.eox.at/wmts/1.0.0/WMTSCapabilities.xml", + "layer": "s2cloudless_3857", + "style": "default", + "opacity": 1 + }, + { + "id": "jCJmccfll6", + "name": "Sentinel-2 cloudless world 2018", + "type": "wmts", + "url": "https://tiles.maps.eox.at/wmts/1.0.0/WMTSCapabilities.xml", + "layer": "s2cloudless-2018_3857", + "style": "default", + "opacity": 1 + }, + { + "id": "HrWLyyyo6V", + "name": "Sentinel-2 cloudless world 2019", + "type": "wmts", + "url": "https://tiles.maps.eox.at/wmts/1.0.0/WMTSCapabilities.xml", + "layer": "s2cloudless-2019_3857", + "style": "default", + "opacity": 1 + }, + { + "id": "B8gpm2I3gB", + "name": "Sentinel-2 cloudless world 2020", + "type": "wmts", + "url": "https://tiles.maps.eox.at/wmts/1.0.0/WMTSCapabilities.xml", + "layer": "s2cloudless-2020_3857", + "style": "default", + "opacity": 1 + } + ] + }, + { + "url": "http://services.ga.gov.au/gis/rest/services/GA_Surface_Geology/MapServer", + "type": "esri-mapServer", + "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)", + "name": "Surface Geology", + "rectangle": { "west": 106, "south": -52, "east": 172, "north": -8 }, + "info": [ + { + "name": "Licence", + "content": "[Creative Commons Attribution 4.0 International (CC BY 4.0)](http://creativecommons.org/licenses/by/4.0/)" + } + ] + }, + { + "id": "3chNzj13TB", + "type": "wms-group", + "name": "WMS layers for the Australian Renewable Energy Mapping Infrastructure project.", + "url": "https://gis.aremi.data61.io/bom/wms" + } + ] + }, + { + "id": "kP9xV2LmQz", + "type": "group", + "name": "Basic Examples", + "isOpen": true, + "members": [ + { + "id": "DL4Av6wY5h", + "type": "geojson", + "name": "GeoJSON Test", + "url": "test/bike_racks.geojson" + }, + { + "name": "CSV", + "type": "group", + "members": [ + { + "type": "csv", + "name": "CSV Test", + "id": "zrPtHVJcPi", + "url": "test/incidents_notime.csv" + }, + { + "name": "ABC Photo Stories (2009-2014)", + "description": "Australia Broadcasting Company stories from 2009-2014 with accompanying photos.\n\nThis dataset demonstrates the ability to show users a custom feature info panel when they click on a feature on the map.", + "type": "csv", + "id": "cJiWroyAzU", + "url": "test/localphotostories20092014.csv", + "featureInfoTemplate": { + "template": "
{{Date}}{{#Primary image}}
{{Primary image caption}}
{{/Primary image}}

Read More

" + } + }, + { + "type": "csv", + "name": "Pacific Earthquakes (CSV)", + "url": "test/earthquakes.csv", + "activeStyle": "Magnitude", + "id": "u3nGNh" + }, + { + "type": "csv", + "name": "Auto Incidents (CSV)", + "url": "test/incidents.csv", + "activeStyle": "incident_duration", + "defaultStyle": { + "color": { + "binColors": [ + "rgba(0,0,200,1.0)", + "rgba(200,200,200,1.00)", + "rgba(200,0,0,1.00)" + ], + "numberOfBins": 3 + } + }, + "id": "xtjL6E" + }, + { + "type": "csv", + "name": "All generation types", + "id": "54a553b4", + "info": [ + { + "name": "Description", + "content": "The AEMO Actual Generation and Load data represents actual generation data for each scheduled generation unit, semi-scheduled generation unit, and non-scheduled generating systems (a non-scheduled generating system comprising non-scheduled generating units) for registered units in the National Electricity Market (NEM). The data is given in MegaWatt (MW).

Detailed information about the AEMO Generation and Load data is available here:

[http://aemo.com.au/Electricity/Data/Market-Management-System-MMS/Generation-and-Load](http://aemo.com.au/Electricity/Data/Market-Management-System-MMS/Generation-and-Load)

Visualisation of AEMO current generation data is based on data files generated every 5 minutes available here:

[http://www.nemweb.com.au/REPORTS/CURRENT/Dispatch_SCADA/](http://www.nemweb.com.au/REPORTS/CURRENT/Dispatch_SCADA/)

Visualisation of AEMO historic data is based on daily data files available here:

[http://www.nemweb.com.au/REPORTS/ARCHIVE/Dispatch_SCADA/](http://www.nemweb.com.au/REPORTS/ARCHIVE/Dispatch_SCADA/)

AEMO provides a range of data. Raw data is provided in Comma Separated Values (CSV) flat file format to enable access to a range of market data. Recent files are stored in a directory for current reports, and older files are moved into the respective archive reports directory.

All electricity data provided by AEMO is available here:

[http://aemo.com.au/Electricity/Data](http://aemo.com.au/Electricity/Data)" + }, + { + "name": "Updates", + "content": "The Actual Generation and Load data is updated in 5-minute intervals." + }, + { + "name": "Data Custodian", + "content": "AEMO is the data custodian of electricity generation data displayed on AREMI. Please refer to attribution, licensing and copyrights provisions further on this page.

The Australian Energy Market Operator (AEMO) was established by the Council of Australian Governments (COAG) to manage the National Electricity Market (NEM) and gas markets from 1 July 2009.

AEMO’s core functions can be grouped into the following areas: 1) Electricity Market Operator; 2) Gas Markets Operator; 3) National Transmission Planner; 4) Transmission Services; 5) Energy Market Development.

AEMO operates on a cost recovery basis as a corporate entity limited by guarantee under the Corporations Law. Its membership structure is split between government and industry, respectively 60 and 40 percent. Government members of AEMO include the Queensland, New South Wales, Victorian, South Australian and Tasmanian state governments, the Commonwealth and the Australian Capital Territory.

As part of the role of managing the NEM and assisting industry, AEMO publishes electricity market data updated in 5 minute intervals and on a daily, monthly and annual basis. Categories of data published are:

1) Price and demand;
2) Forecast supply and demand;
3) Market notices;
4) Ancillary services;
5) Network data;
6) Pre-dispatch demand forecasting performance;
7) Settlements;
8) Market management system (MMS) (which includes Generation & Load data).

More information on AEMO and services provided is available here:

[http://aemo.com.au/About-AEMO](http://aemo.com.au/About-AEMO)" + }, + { + "name": "Licensing, Terms & Conditions", + "content": "Australian Energy Market Operator (AEMO) is the data custodian for Generation & Load data sets, available on AEMO’s website.

AREMI is displaying the data under AEMO’s licencing and copyright conditions detailed below.

The data is provided for information only and is not intended for commercial use. AEMO does not guarantee the accuracy of the data or its availability at all times.

AEMO, or its licensors, are the owners of all copyright and all other intellectual property rights in the contents of the AEMO website (including text and images). Users may only use such contents for personal use or as authorised by AEMO. Here are the details of the AEMO’s copyright permissions:

AEMO Material comprises documents, reports, sound and video recordings and any other material created by or on behalf of AEMO and made publicly available by AEMO. All AEMO Material is protected by copyright under Australian law. A publication is protected even if it does not display the © symbol.

In addition to the uses permitted under copyright laws, AEMO confirms its general permission for anyone to use AEMO Material for any purpose, but only with accurate and appropriate attribution of the relevant AEMO Material and AEMO as its author. There is no need to obtain specific permission to use AEMO Material in this way. Confidential documents and any reports commissioned by another person or body who may own the copyright in them and NOT AEMO Material, and these permissions do not apply to those documents.

More information on conditions of use of AEMO generated data and information is available on the AEMO website: [http://aemo.com.au/About-AEMO/Legal-Notices](http://aemo.com.au/About-AEMO/Legal-Notices)" + } + ], + "url": "https://services.aremi.data61.io/aemo/v6/csv/all", + "cacheDuration": "5m", + "rectangle": { + "west": 134, + "south": -47, + "east": 155, + "north": -13 + }, + "polling": { + "seconds": 300, + "shouldReplaceData": true + }, + "columns": [ + { + "name": "Station Name", + "type": "hidden" + }, + { + "name": "Participant", + "type": "hidden" + }, + { + "name": "Physical Unit No.", + "type": "hidden" + }, + { + "name": "Aggregation", + "type": "hidden" + }, + { + "name": "DUID", + "type": "hidden" + }, + { + "name": "CSV for last 24h", + "type": "hidden" + }, + { + "name": "CSV for all data", + "type": "hidden" + }, + { + "name": "Latest 24h generation", + "type": "hidden" + }, + { + "name": "Unit Size (MW)", + "type": "hidden" + } + ], + "activeStyle": "Current % of Max Cap", + "defaultColumn": { + "replaceWithZeroValues": [], + "replaceWithNullValues": ["-"] + }, + "defaultStyle": { + "time": { + "timeColumn": null + }, + "color": { + "nullColor": "rgba(255,255,255,0.1)", + "nullLabel": "No value", + "numberOfBins": 10, + "binColors": [ + "rgb(94,79,162)", + "rgb(50,136,189)", + "rgb(102,194,165)", + "rgb(171,221,164)", + "rgb(230,245,152)", + "rgb(254,224,139)", + "rgb(253,174,97)", + "rgb(244,109,67)", + "rgb(213,62,79)", + "rgb(158,1,66)" + ] + } + }, + "featureInfoTemplate": { + "name": "{{DUID}} - {{Station Name}}: {{Current % of Max Cap}}%", + "template": "

{{Station Name}} ({{DUID}})

{{Participant}}

{{Current Output (MW)}}MW at {{Most Recent Output Time (AEST)}}
{{Current % of Reg Cap}}% of {{Reg Cap (MW)}}MW registered capacity
{{Current % of Max Cap}}% of {{Max Cap (MW)}}MW maximum capacity

Category {{Category}}
Classification {{Classification}}
Fuel Source {{Fuel Source - Primary}} ({{Fuel Source - Descriptor}})
Technology Type {{Technology Type - Primary}} ({{Technology Type - Descriptor}})
Physical Unit No. {{Physical Unit No_}}
Unit Size (MW) {{Unit Size (MW)}}
Aggregation {{Aggregation}}
Region {{Region}}
Power generation
" + } + }, + { + "name": "Charts", + "type": "group", + "members": [ + { + "name": "Sheep Stations", + "type": "csv", + "id": "lF2xGFgl7V", + "url": "build/TerriaJS/test/csv/lat_lon_nullvalue.csv", + "featureInfoTemplate": { + "name": "Number {{value}}", + "template": "

All sheep stations have the same time series plot.

" + } + }, + { + "id": "zdjwipNdnA", + "name": "XY Plot", + "type": "csv", + "url": "build/TerriaJS/test/csv_nongeo/xy.csv" + }, + { + "id": "jiE3seDFUz", + "name": "Time series", + "type": "csv", + "url": "build/TerriaJS/test/csv_nongeo/time_series.csv" + }, + { + "id": "xrD8v0H4cn", + "name": "Train Stations", + "type": "csv", + "url": "build/TerriaJS/test/csv/lat_lon_nullvalue.csv", + "featureInfoTemplate": { + "name": "Number {{value}}", + "template": "

All train stations have the same x-y plot.

" + } + }, + { + "id": "tBRj9qi1b6", + "name": "Chart with inline data", + "type": "csv", + "url": "build/TerriaJS/test/csv/lat_lon_name_value.csv", + "featureInfoTemplate": { + "template": "

Chart with inline data

x,y\n1,3\n5,10\n8,-2\n10,{{value}}\n" + } + } + ] + }, + { + "id": "vliQsF", + "type": "group", + "name": "Region mapping (CSV)", + "members": [ + { + "id": "hWvbL27nGK", + "type": "terria-reference", + "name": "Other ASGS 2021 region types", + "url": "https://tile-test.terria.io/region-test-csvs/asgs-2021-leftovers-catalog.json", + "isGroup": true + }, + { + "type": "csv", + "name": "SEIFA 2011 (POA)", + "url": "test/SEIFA_POA_2011.csv", + "activeStyle": "Socio-economic_Disadvantage", + "defaultStyle": { + "color": { + "binColors": ["rgba(0,0,0,1.00)", "rgba(0,200,0,1.0)"], + "numberOfBins": 2 + } + }, + "id": "xy7CLN" + }, + { + "type": "csv", + "name": "2011 Census AUST (STE)", + "url": "test/2011Census_AUST_STE.csv", + "id": "gdXiXM" + }, + { + "type": "csv", + "name": "2011 Census AUST (CED)", + "url": "test/2011Census_AUST_CED.csv", + "columns": [ + { + "name": "ced", + "regionType": "CED_CODE_2011" + } + ], + "id": "5Gp6JZ" + }, + { + "type": "csv", + "name": "2011 Census AUST (SA4)", + "url": "test/2011Census_AUST_SA4.csv", + "columns": [ + { + "name": "sa4", + "regionType": "SA4_2011" + } + ], + "id": "IiYNss" + }, + { + "type": "csv", + "name": "States STEM 2013", + "url": "test/states_stem_2013.csv", + "id": "wJJzvz" + }, + { + "type": "csv", + "name": "Country Regions", + "url": "test/countries.csv", + "activeStyle": "ITU-T Telephone Code", + "id": "xcEqRI" + }, + { + "type": "csv", + "name": "Droughts by Country", + "url": "test/droughts.csv", + "activeStyle": "Total affected", + "id": "WAx8gl" + }, + { + "type": "csv", + "name": "State Mask Test", + "url": "test/states_stem_2013.csv", + "opacity": 1, + "activeStyle": "Mask", + "defaultStyle": { + "color": { + "binColors": ["rgba(0,0,0,0.0)", "rgba(0,0,0,1.0)"], + "numberOfBins": 2 + } + }, + "id": "3Wtr3E" + }, + { + "type": "csv", + "name": "SA1_2021", + "id": "ccbHOTMZnM", + "url": "https://tile-test.terria.io/region-test-csvs/SA1_2021_SA1_2021.csv" + }, + { + "type": "csv", + "name": "SA2_2021", + "id": "K3VrITMGe4", + "url": "https://tile-test.terria.io/region-test-csvs/SA2_2021_SA2_2021.csv" + }, + { + "type": "csv", + "name": "SA2_NAME_2021", + "id": "rWE8gKC7Pb", + "url": "https://tile-test.terria.io/region-test-csvs/SA2_2021_SA2_NAME_2021.csv" + }, + { + "type": "csv", + "name": "SA3_2021", + "id": "PUvcYBKZRD", + "url": "https://tile-test.terria.io/region-test-csvs/SA3_2021_SA3_2021.csv" + }, + { + "type": "csv", + "name": "SA3_NAME_2021", + "id": "zy1XT2Tozd", + "url": "https://tile-test.terria.io/region-test-csvs/SA3_2021_SA3_NAME_2021.csv" + }, + { + "type": "csv", + "name": "SA4_2021", + "id": "XgfiF4hqub", + "url": "https://tile-test.terria.io/region-test-csvs/SA4_2021_SA4_2021.csv" + }, + { + "type": "csv", + "name": "SA4_NAME_2021", + "id": "Ep0MRHLxMm", + "url": "https://tile-test.terria.io/region-test-csvs/SA4_2021_SA4_NAME_2021.csv" + }, + { + "type": "csv", + "name": "GCCSA_2021", + "id": "JjiFvunrMF", + "url": "https://tile-test.terria.io/region-test-csvs/GCCSA_2021_GCCSA_2021.csv" + }, + { + "type": "csv", + "name": "GCCSA_NAME_2021", + "id": "7wfxltvumA", + "url": "https://tile-test.terria.io/region-test-csvs/GCCSA_2021_GCCSA_NAME_2021.csv" + }, + { + "type": "csv", + "name": "LGA_2019", + "id": "YSK6at0rVn", + "url": "https://tile-test.terria.io/region-test-csvs/LGA_2019_LGA_2019.csv" + }, + { + "type": "csv", + "name": "LGA_2021", + "id": "VlepKgBjtp", + "url": "https://tile-test.terria.io/region-test-csvs/LGA_2021_LGA_2021.csv" + } + ] + } + ] + }, + { + "name": "KML/KMZ files", + "type": "group", + "members": [ + { + "id": "GRdrd3M2KY", + "name": "Simple Test (KML)", + "type": "kml", + "url": "test/simple.kml" + }, + { + "id": "Pdo7xbE1EF", + "name": "Vic Police (KML)", + "type": "kml", + "url": "test/vic_police.kml" + }, + { + "id": "uIVB6p3eBm", + "name": "Vic Police (KMZ)", + "type": "kml", + "url": "test/vic_police.kmz" + } + ] + }, + { + "name": "CZML files", + "type": "group", + "members": [ + { + "id": "rd4YAInjh1", + "name": "Simple Test (CZML)", + "type": "czml", + "url": "test/simple.czml" + }, + { + "id": "wqEHOmOnto", + "name": "Large feature info box (CZML)", + "type": "czml", + "url": "test/bigInfobox.czml" + }, + { + "id": "1Zv1WlgUt0", + "name": "Embedded CZML", + "type": "czml", + "czmlData": [ + { + "id": "document", + "version": "1.0" + }, + { + "position": { + "cartographicDegrees": [133.0, -25.0, 0.0] + }, + "point": { + "pixelSize": 5, + "color": { + "rgba": [255, 0, 0, 255] + } + } + } + ] + } + ] + }, + { + "name": "GeoJSON", + "type": "group", + "members": [ + { + "name": "Test styled and unstyled features", + "type": "geojson", + "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson" + }, + { + "name": "Test overriding styled and unstyled features", + "type": "geojson", + "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson", + "style": { + "marker-size": "200", + "marker-color": "#ff3333", + "marker-symbol": "rail" + } + }, + { + "name": "Testing stroke styles applied to embedded unstyled point.", + "type": "geojson", + "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson", + "style": { + "stroke-width": 20, + "stroke": "red", + "marker-size": "200" + }, + "geoJsonData": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "Thick red border, unspecified centre" + }, + "geometry": { + "type": "Point", + "coordinates": [146.469, -40.83] + } + } + ] + } + } + ] + }, + { + "name": "Small glTF 3D Models", + "description": "Demonstrations of adding 3D building data to the map using glTF.", + "type": "group", + "members": [ + { + "name": "Smooth Geelong Buildings glTF Mini Demo", + "description": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using data made available from the [City of Greater Geelong](mailto:gis@geelongcity.vic.gov.au) under a Creative Commons license. The data used to create this demo was originally obtained via email in .skp format (> 100MB so not suitable for inclusion in this repo), however there is also a lower quality dataset of the same region available on data.gov.au in .kml/.dae format (this dataset does not seem to contain building textures).\n\nSee [readme.txt](test/3d/geelong/readme.txt) for more information.", + "attribution": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using a dataset obtained from the City of Greater Geelong. The original dataset is licensed under the CC BY 3.0 AU.", + "type": "czml", + "url": "test/3d/geelong/smooth.czml", + "rectangle": { + "west": 144.354, + "south": -38.147, + "east": 144.358, + "north": -38.15 + } + }, + { + "name": "Terrain Geelong Buildings glTF Mini Demo", + "description": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using data made available from the [City of Greater Geelong](mailto:gis@geelongcity.vic.gov.au) under a Creative Commons license. The data used to create this demo was originally obtained via email in .skp format (> 100MB so not suitable for inclusion in this repo), however there is also a lower quality dataset of the same region available on data.gov.au in .kml/.dae format (this dataset does not seem to contain building textures).\n\nSee [readme.txt](test/3d/geelong/readme.txt) for more information.", + "attribution": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using a dataset obtained from the City of Greater Geelong. The original dataset is licensed under the CC BY 3.0 AU.", + "type": "czml", + "url": "test/3d/geelong/terrain.czml", + "rectangle": { + "west": 144.354, + "south": -38.147, + "east": 144.358, + "north": -38.15 + } + } + ] + } + ] + } + ], + "viewerMode": "3dSmooth", + "baseMaps": { + "defaultBaseMapId": "basemap-openstreetmap", + "previewBaseMapId": "basemap-natural-earth-II" + } +} diff --git a/wwwroot/init/tas.json b/wwwroot/init/tas.json deleted file mode 100644 index 6f92c7ab3a..0000000000 --- a/wwwroot/init/tas.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "homeCamera": { - "west": 143.7, - "south": -43.7, - "east": 148.6, - "north": -39.4 - }, - "services": [], - "catalog": [ - { - "name": "Tasmanian Government", - "type": "group", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/init/terria.json b/wwwroot/init/terria.json deleted file mode 100644 index a582676004..0000000000 --- a/wwwroot/init/terria.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "homeCamera": { - "north": -8, - "east": 158, - "south": -45, - "west": 109 - }, - "catalog": [ - { - "name": "Example Datasets", - "type": "group", - "preserveOrder": true, - "isOpen": true, - "items": [ - { - "name": "Data.gov.au", - "type": "ckan", - "url": "http://www.data.gov.au", - "description": "![CKAN Logo](https://ckan.org/files/2017/03/Logo_438x144.png)\n\nThis demonstrates populating a catalog group by doing a live query to a [CKAN](https://ckan.org) server. When you expand this group the first time, CKAN is automatically queried via its `package_search` API and the compatible datasets are shown grouped by publishing organization.", - "blacklist": { - "Rainforests (EVC_2005)": true - }, - "groupBy": "organization", - "minimumMaxScaleDenominator": 10000000000, - "filterByWmsGetCapabilities": false, - "filterQuery": [ - { - "fq": "+(res_format:(geojson OR GeoJSON OR kml OR KML OR kmz OR KMZ OR wms OR WMS OR CSV-GEO-AU OR csv-geo-au OR aus-geo-csv OR \"Esri REST\")) -(organization:alpine-shire-council OR organization:brimbank-city-council OR organization:brisbane-city-council OR organization:cairns-regional-council OR organization:cardinia-shire-council OR organization:central-goldfields-shire-council OR organization:city-of-ballarat OR organization:city-of-boroondara OR organization:city-of-casey OR organization:city-of-darwin OR organization:city-of-gold-coast OR organization:city-of-greater-bendigo OR organization:city-of-greater-dandenong OR organization:city-of-greater-geelong OR organization:city-of-hobart OR organization:city-of-ipswich OR organization:city-of-launceston OR organization:cityofmelbourne OR organization:city-of-monash OR organization:city-of-palmerston OR organization:city-of-port-phillip OR organization:city-of-stonnington OR organization:city-of-whittlesea OR organization:city-of-yarra OR organization:colac-otway-shire OR organization:corangamite-shire-council OR organization:frankston-city-council OR organization:fraser-coast-regional-council OR organization:gcc OR organization:glen-eira-city-council OR organization:glenelg-shire-council OR organization:golden-plains-shire-council OR organization:greater-shepparton-city-council OR organization:hindmarsh-shire-council OR organization:hobsons-bay-city-council OR organization:horsham-rural-city-council OR organization:lake-macquarie-city-council OR organization:loddon-shire-council OR organization:logan-city-council OR organization:macedon-ranges-shire-council OR organization:manningham-city-council OR organization:mansfield-shire-council OR organization:maribyrnong-city-council OR organization:melton-city-council OR organization:moreton-bay-regional-council OR organization:mosmanmunicipalcouncil OR organization:nillumbik-shire-council OR organization:noosa-shire-council OR organization:northern-grampians-shire-council OR organization:southern-grampians-shire-council OR organization:strathbogie-shire-council OR organization:surf-coast-shire-council OR organization:swan-hill-rural-city-council OR organization:warrnambool-city-council OR organization:west-wimmera-shire-council OR organization:wodonga-city-council OR organization:www-mitchellshirecouncil-vic-gov-au OR organization:wyndham-city-council OR organization:yarra-ranges-council OR organization:yarriambiack-shire-council) -(organization:australian-institute-of-marine-science OR organization:geoscienceaustralia OR organization:csiro-oceans-and-atmosphere-information-and-data-centre OR organization:csiro-marine-and-amospheric-research OR organization:state-of-the-environment OR organization:new-south-wales-datasets OR organization:south-australian-governments)" - } - ], - "includeCsv": true, - "includeGeoJson": true, - "includeKml": true, - "includeWms": true, - "includeWfs": true, - "includeEsriMapServer": true, - "includeEsriFeatureServer": true - }, - { - "name": "aero3Dpro", - "type": "group", - "description": "![aero3Dpro](http://aero3dpro.com.au/images/aero3dpro-logo2.png)\n\nAero3Dpro is an Australian 3D mapping service for the generation of geographically accurate, fully textured and high resolution 3D models of natural and urban environments.\n\nIt is an end-to-end service based on aerial photogrammetry techniques including flight planning, image acquisition, 3D processing, geo-registration and final delivery.\n\nAero3Dpro models can be provided as stand-alone data for use in common 3D rendering and CAD software or as 3D GIS-ready products.\n\nhttp://aero3dpro.com.au/\n\nThese datasets use the [Cesium 3D Tiles](https://github.com/AnalyticalGraphicsInc/3d-tiles) format.", - "items": [ - { - "name": "Brisbane 3D city model (aero3Dpro)", - "type": "3d-tiles", - "description": "![aero3Dpro](http://aero3dpro.com.au/images/aero3dpro-logo2.png)\n\nAero3Dpro is an Australian 3D mapping service for the generation of geographically accurate, fully textured and high resolution 3D models of natural and urban environments.\n\nIt is an end-to-end service based on aerial photogrammetry techniques including flight planning, image acquisition, 3D processing, geo-registration and final delivery.\n\nAero3Dpro models can be provided as stand-alone data for use in common 3D rendering and CAD software or as 3D GIS-ready products.\n\nhttp://aero3dpro.com.au/\n\nThese datasets use the [Cesium 3D Tiles](https://github.com/AnalyticalGraphicsInc/3d-tiles) format.", - "url": "https://sample.aero3dpro.com.au/BrisbaneCBD/Scene/recon_h_3DTiles.json", - "options": { - "maximumScreenSpaceError": 1, - "maximumNumberOfLoadedTiles": 1000 - }, - "rectangle": [ - 153.01, - -27.484, - 153.034, - -27.46 - ] - }, - { - "name": "Melbourne 3D city model (aero3Dpro)", - "type": "3d-tiles", - "description": "![aero3Dpro](http://aero3dpro.com.au/images/aero3dpro-logo2.png)\n\nAero3Dpro is an Australian 3D mapping service for the generation of geographically accurate, fully textured and high resolution 3D models of natural and urban environments.\n\nIt is an end-to-end service based on aerial photogrammetry techniques including flight planning, image acquisition, 3D processing, geo-registration and final delivery.\n\nAero3Dpro models can be provided as stand-alone data for use in common 3D rendering and CAD software or as 3D GIS-ready products.\n\nhttp://aero3dpro.com.au/\n\nThese datasets use the [Cesium 3D Tiles](https://github.com/AnalyticalGraphicsInc/3d-tiles) format.", - "url": "https://sample.aero3dpro.com.au/Melbourne/Scene/recon_h_3DTiles.json", - "options": { - "maximumScreenSpaceError": 1, - "maximumNumberOfLoadedTiles": 1000 - }, - "rectangle": [ - 144.868, - -37.885, - 145.018, - -37.775 - ] - }, - { - "name": "Sydney 3D city model (aero3Dpro)", - "type": "3d-tiles", - "description": "![aero3Dpro](http://aero3dpro.com.au/images/aero3dpro-logo2.png)\n\nAero3Dpro is an Australian 3D mapping service for the generation of geographically accurate, fully textured and high resolution 3D models of natural and urban environments.\n\nIt is an end-to-end service based on aerial photogrammetry techniques including flight planning, image acquisition, 3D processing, geo-registration and final delivery.\n\nAero3Dpro models can be provided as stand-alone data for use in common 3D rendering and CAD software or as 3D GIS-ready products.\n\nhttp://aero3dpro.com.au/\n\nThese datasets use the [Cesium 3D Tiles](https://github.com/AnalyticalGraphicsInc/3d-tiles) format.", - "url": "https://sample.aero3dpro.com.au/Sydney/Scene/recon_h_3DTiles.json", - "options": { - "maximumScreenSpaceError": 1, - "maximumNumberOfLoadedTiles": 1000 - }, - "rectangle": [ - 151.161, - -33.923, - 151.3075, - -33.796 - ] - } - ] - }, - { - "name": "Small glTF 3D Models", - "description": "Demonstrations of adding 3D building data to the map using glTF.", - "type": "group", - "items": [ - { - "name": "Smooth Geelong Buildings glTF Mini Demo", - "description": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using data made available from the [City of Greater Geelong](mailto:gis@geelongcity.vic.gov.au) under a Creative Commons license. The data used to create this demo was originally obtained via email in .skp format (> 100MB so not suitable for inclusion in this repo), however there is also a lower quality dataset of the same region available on data.gov.au in .kml/.dae format (this dataset does not seem to contain building textures).\n\nSee [readme.txt](test/3d/geelong/readme.txt) for more information.", - "attribution": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using a dataset obtained from the City of Greater Geelong. The original dataset is licensed under the CC BY 3.0 AU.", - "type": "czml", - "url": "test/3d/geelong/smooth.czml", - "rectangle": [ - 144.354, - -38.147, - 144.358, - -38.150 - ] - }, - { - "name": "Terrain Geelong Buildings glTF Mini Demo", - "description": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using data made available from the [City of Greater Geelong](mailto:gis@geelongcity.vic.gov.au) under a Creative Commons license. The data used to create this demo was originally obtained via email in .skp format (> 100MB so not suitable for inclusion in this repo), however there is also a lower quality dataset of the same region available on data.gov.au in .kml/.dae format (this dataset does not seem to contain building textures).\n\nSee [readme.txt](test/3d/geelong/readme.txt) for more information.", - "attribution": "geelong_mini_demo_bin_linux_v1.0-draft_x64.gltf was created using a dataset obtained from the City of Greater Geelong. The original dataset is licensed under the CC BY 3.0 AU.", - "type": "czml", - "url": "test/3d/geelong/terrain.czml", - "rectangle": [ - 144.354, - -38.147, - 144.358, - -38.150 - ] - } - ] - }, - { - "name": "ABC Photo Stories (2009-2014)", - "description": "Australia Broadcasting Company stories from 2009-2014 with accompanying photos.\n\nThis dataset demonstrates the ability to show users a custom feature info panel when they click on a feature on the map.", - "type": "csv", - "url": "test/localphotostories20092014.csv", - "featureInfoTemplate": { - "template": "
{{Date}}{{#Primary image}}
{{Primary image caption}}
{{/Primary image}}

Read More

" - }, - "tableStyle": { - "dataVariable": "State", - "timeColumn": null - } - }, - { - "id": "54a553b4", - "name": "NEM Current Power Generation - All generation types", - "url": "http://services.aremi.data61.io/aemo/v6/csv/all", - "type": "csv", - "cacheDuration": "5m", - "featureInfoTemplate": { - "name": "{{DUID}} - {{Station Name}}: {{Current % of Max Cap}}%", - "template": "

{{Station Name}} ({{DUID}})

{{Participant}}

{{Current Output (MW)}}MW at {{Most Recent Output Time (AEST)}}
{{Current % of Reg Cap}}% of {{Reg Cap (MW)}}MW registered capacity
{{Current % of Max Cap}}% of {{Max Cap (MW)}}MW maximum capacity

Category {{Category}}
Classification {{Classification}}
Fuel Source {{Fuel Source - Primary}} ({{Fuel Source - Descriptor}})
Technology Type {{Technology Type - Primary}} ({{Technology Type - Descriptor}})
Physical Unit No. {{Physical Unit No_}}
Unit Size (MW) {{Unit Size (MW)}}
Aggregation {{Aggregation}}
Region {{Region}}
Power generation
" - }, - "polling": { - "seconds": 300, - "replace": true - }, - "rectangle": [ - "134.0", - "-47.0", - "155.0", - "-13.0" - ], - "tableStyle": { - "dataVariable": "Current % of Max Cap", - "timeColumn": null, - "replaceWithZeroValues": [], - "replaceWithNullValues": [ - "-" - ], - "nullColor": "rgba(255,255,255,0.1)", - "nullLabel": "No value", - "scaleByValue": true, - "scale": 1.5, - "colorBins": 10, - "colorMap": "rgb(94,79,162)-rgb(50,136,189)-rgb(102,194,165)-rgb(171,221,164)-rgb(230,245,152)-rgb(254,224,139)-rgb(253,174,97)-rgb(244,109,67)-rgb(213,62,79)-rgb(158,1,66)", - "columns": { - "Station Name": { - "type": "HIDDEN" - }, - "Participant": { - "type": "HIDDEN" - }, - "Physical Unit No.": { - "type": "HIDDEN" - }, - "Aggregation": { - "type": "HIDDEN" - }, - "DUID": { - "type": "HIDDEN" - }, - "CSV for last 24h": { - "type": "HIDDEN" - }, - "CSV for all data": { - "type": "HIDDEN" - }, - "Latest 24h generation": { - "type": "HIDDEN" - }, - "Unit Size (MW)": { - "type": "HIDDEN" - } - } - }, - "info": [ - { - "name": "Description", - "content": "The AEMO Actual Generation and Load data represents actual generation data for each scheduled generation unit, semi-scheduled generation unit, and non-scheduled generating systems (a non-scheduled generating system comprising non-scheduled generating units) for registered units in the National Electricity Market (NEM). The data is given in MegaWatt (MW).

Detailed information about the AEMO Generation and Load data is available here:

[http://aemo.com.au/Electricity/Data/Market-Management-System-MMS/Generation-and-Load](http://aemo.com.au/Electricity/Data/Market-Management-System-MMS/Generation-and-Load)

Visualisation of AEMO current generation data is based on data files generated every 5 minutes available here:

[http://www.nemweb.com.au/REPORTS/CURRENT/Dispatch_SCADA/](http://www.nemweb.com.au/REPORTS/CURRENT/Dispatch_SCADA/)

Visualisation of AEMO historic data is based on daily data files available here:

[http://www.nemweb.com.au/REPORTS/ARCHIVE/Dispatch_SCADA/](http://www.nemweb.com.au/REPORTS/ARCHIVE/Dispatch_SCADA/)

AEMO provides a range of data. Raw data is provided in Comma Separated Values (CSV) flat file format to enable access to a range of market data. Recent files are stored in a directory for current reports, and older files are moved into the respective archive reports directory.

All electricity data provided by AEMO is available here:

[http://aemo.com.au/Electricity/Data](http://aemo.com.au/Electricity/Data)" - }, - { - "name": "Updates", - "content": "The Actual Generation and Load data is updated in 5-minute intervals." - }, - { - "name": "Data Custodian", - "content": "AEMO is the data custodian of electricity generation data displayed on AREMI. Please refer to attribution, licensing and copyrights provisions further on this page.

The Australian Energy Market Operator (AEMO) was established by the Council of Australian Governments (COAG) to manage the National Electricity Market (NEM) and gas markets from 1 July 2009.

AEMO’s core functions can be grouped into the following areas: 1) Electricity Market Operator; 2) Gas Markets Operator; 3) National Transmission Planner; 4) Transmission Services; 5) Energy Market Development.

AEMO operates on a cost recovery basis as a corporate entity limited by guarantee under the Corporations Law. Its membership structure is split between government and industry, respectively 60 and 40 percent. Government members of AEMO include the Queensland, New South Wales, Victorian, South Australian and Tasmanian state governments, the Commonwealth and the Australian Capital Territory.

As part of the role of managing the NEM and assisting industry, AEMO publishes electricity market data updated in 5 minute intervals and on a daily, monthly and annual basis. Categories of data published are:

1) Price and demand;
2) Forecast supply and demand;
3) Market notices;
4) Ancillary services;
5) Network data;
6) Pre-dispatch demand forecasting performance;
7) Settlements;
8) Market management system (MMS) (which includes Generation & Load data).

More information on AEMO and services provided is available here:

[http://aemo.com.au/About-AEMO](http://aemo.com.au/About-AEMO)" - }, - { - "name": "Licensing, Terms & Conditions", - "content": "Australian Energy Market Operator (AEMO) is the data custodian for Generation & Load data sets, available on AEMO’s website.

AREMI is displaying the data under AEMO’s licencing and copyright conditions detailed below.

The data is provided for information only and is not intended for commercial use. AEMO does not guarantee the accuracy of the data or its availability at all times.

AEMO, or its licensors, are the owners of all copyright and all other intellectual property rights in the contents of the AEMO website (including text and images). Users may only use such contents for personal use or as authorised by AEMO. Here are the details of the AEMO’s copyright permissions:

AEMO Material comprises documents, reports, sound and video recordings and any other material created by or on behalf of AEMO and made publicly available by AEMO. All AEMO Material is protected by copyright under Australian law. A publication is protected even if it does not display the © symbol.

In addition to the uses permitted under copyright laws, AEMO confirms its general permission for anyone to use AEMO Material for any purpose, but only with accurate and appropriate attribution of the relevant AEMO Material and AEMO as its author. There is no need to obtain specific permission to use AEMO Material in this way. Confidential documents and any reports commissioned by another person or body who may own the copyright in them and NOT AEMO Material, and these permissions do not apply to those documents.

More information on conditions of use of AEMO generated data and information is available on the AEMO website: [http://aemo.com.au/About-AEMO/Legal-Notices](http://aemo.com.au/About-AEMO/Legal-Notices)" - } - ] - }, - { - "name": "Bird migration paths", - "description": "Geographic centers of occurrence estimated daily for 118 migratory bird species using eBird occurrence information for the combined period 2002 to 2014. Additional details on the data and methods can be found here:\nLa Sorte, F.A., Fink, D., Hochachka, W.M. & Kelling, S. (2016) Convergence of broad-scale migration strategies in terrestrial birds. Proceedings of the Royal Society of London B: Biological Sciences, 283, 20152588.\n\n_Don't forget to press the PLAY button below the map after addding this dataset._", - "type": "czml", - "url": "test/all_birds.czml", - "zoomOnEnable": true, - "rectangle": [ - -160, - -20, - -30, - 60 - ] - }, - { - "url": "http://services.ga.gov.au/gis/rest/services/GA_Surface_Geology/MapServer", - "type": "esri-mapServer", - "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)", - "name": "Surface Geology", - "rectangle": [ - 106, - -52, - 172, - -8 - ], - "info": [ - { - "name": "Licence", - "content": "[Creative Commons Attribution 4.0 International (CC BY 4.0)](http://creativecommons.org/licenses/by/4.0/)" - } - ] - }, - { - "layers": "WaterSummary", - "url": "http://eos.ga.gov.au/geoserver/NFRIP-WOfS/wms", - "type": "wms", - "rectangle": [ - 111, - -45, - 155, - -10 - ], - "dataCustodian": "[Geoscience Australia](http://www.ga.gov.au/)\n\n[nfrip@ga.gov.au](mailto:nfrip@ga.gov.au)", - "name": "Water Observations from Space - Summary", - "dataUrlType": "direct", - "dataUrl": "http://www.ga.gov.au/scientific-topics/hazards/flood/wofs", - "info": [ - { - "name": "Licence", - "content": "[Creative Commons Attribution 4.0 International (CC BY 4.0)](http://creativecommons.org/licenses/by/4.0/)" - } - ] - }, - { - "description": "Chlorophyll-a, reflecting wavelengths in the green part of the visible light spectrum, is the substance that helps plants capture the sun’s energy. In the water, it indicates the presence of microscopic green algae (phytoplankton). While these plants are a natural part of the reef ecosystem, elevated numbers (a bloom) of phytoplankton signal elevated nutrient levels, especially nitrogen, in the water. Typical sources are runoff from excess fertiliser being applied to crops and, to a lesser extent in the Great Barrier Reef region, sewage contamination from urban areas.", - "layers": "Chl_MIM_mean", - "name": "Chlorophyll-a concentration (annual)", - "parameters": { - "ABOVEMAXCOLOR": "0xAF324B", - "BELOWMINCOLOR": "transparent", - "COLORSCALERANGE": "0,1", - "FORMAT": "image/png", - "LAYERS": "Chl_MIM_median", - "LOGSCALE": "false", - "NUMCOLORBANDS": "16", - "PALETTE": "mwq_chl", - "STYLES": "boxfill/mwq_chl", - "TRANSPARENT": "true", - "VERSION": "1.1.1" - }, - "type": "wms", - "url": "http://ereeftds.bom.gov.au/ereefs/tds/wms/ereefs/mwq_gridAgg_P1A" - }, - { - "layer": "s2cloudless", - "name": "Sentinel-2 cloudless world 2016", - "type": "wmts", - "url": "https://a.s2maps-tiles.eu/wmts/", - "tileMatrixSetID": "WGS84", - "tilingScheme": "geographic", - "style": "default", - "opacity": 1 - }, - { - "layer": "s2cloudless-2018", - "name": "Sentinel-2 cloudless world 2018", - "type": "wmts", - "url": "https://a.s2maps-tiles.eu/wmts/", - "tileMatrixSetID": "WGS84", - "tilingScheme": "geographic", - "style": "default", - "opacity": 1 - } - ] - } - ] -} \ No newline at end of file diff --git a/wwwroot/init/test.json b/wwwroot/init/test.json deleted file mode 100644 index 683b80709e..0000000000 --- a/wwwroot/init/test.json +++ /dev/null @@ -1,489 +0,0 @@ -{ - "catalog": [ - { - "name": "Test Data", - "type": "group", - "items": [ - { - "name": "Tile Sets", - "type": "group", - "items": [ - { - "name": "Topography", - "type": "esri-mapServer", - "url": "http://services.thelist.tas.gov.au/arcgis/rest/services/Basemaps/Topographic/ImageServer", - "legendUrl": "http://services.thelist.tas.gov.au/arcgis/rest/services/Basemaps/Topographic/ImageServer/legend", - "rectangle": [ - 140, - -44, - 150, - -40 - ] - } - ] - }, - { - "name": "Temporal", - "type": "group", - "items": [ - { - "name": "Chlorophyll-a concentration (monthly)", - "type": "wms", - "url": "http://ereeftds.bom.gov.au/ereefs/tds/wms/ereefs/mwq_gridAgg_P1M", - "description": "...", - "abstract": "Chlorophyll-a, reflecting wavelengths in the green part of the visible light spectrum, is the substance that helps plants capture the sun’s energy. In the water, it indicates the presence of microscopic green algae (phytoplankton). While these plants are a natural part of the reef ecosystem, elevated numbers (a bloom) of phytoplankton signal elevated nutrient levels, especially nitrogen, in the water. Typical sources are runoff from excess fertiliser being applied to crops and, to a lesser extent in the Great Barrier Reef region, sewage contamination from urban areas.", - "layers": "Chl_MIM_mean", - "getFeatureInfoAsGeoJson": false, - "parameters": { - "ABOVEMAXCOLOR": "0xAF324B", - "BELOWMINCOLOR": "transparent", - "COLORSCALERANGE": "0,1", - "FORMAT": "image/png", - "LOGSCALE": "false", - "NUMCOLORBANDS": "16", - "PALETTE": "mwq_chl", - "STYLES": "boxfill/mwq_chl", - "TRANSPARENT": "true", - "VERSION": "1.1.1" - } - }, - { - "name": "Pacific Earthquakes (CSV)", - "type": "csv", - "url": "test/earthquakes.csv", - "disableUserChanges": true, - "tableStyle": { - "dataVariable": "Magnitude", - "scaleByValue": true - }, - "displayDuration": 2880 - }, - { - "name": "Auto Incidents (CSV)", - "type": "csv", - "url": "test/incidents.csv", - "tableStyle": { - "colorMap": [ - { - "color": "rgba(0,0,200,1.0)", - "offset": 0 - }, - { - "color": "rgba(200,200,200,1.00)", - "offset": 0.5 - }, - { - "color": "rgba(200,0,0,1.00)", - "offset": 1 - } - ], - "dataVariable": "incident_duration", - "scale": 1.2, - "scaleByValue": true, - "imageUrl": "test/images/pow32.png", - "minDisplayValue": 0, - "maxDisplayValue": 1500, - "legendTicks": 4, - "featureInfoFields": { - "incident_date": "Date", - "incident_severity": "Severity" - } - } - } - ] - }, - { - "name": "Region mapping (CSV)", - "type": "group", - "items": [ - { - "name": "SEIFA 2011 (POA)", - "type": "csv", - "url": "test/SEIFA_POA_2011.csv", - "tableStyle": { - "colorMap": [ - { - "color": "rgba(0,0,0,1.00)", - "offset": 0 - }, - { - "color": "rgba(0,200,0,1.0)", - "offset": 1 - } - ], - "dataVariable": "Socio-economic_Disadvantage", - "regionVariable": "POA_CODE", - "regionType": "POA" - } - }, - { - "name": "NEXIS NSW 2012 (LGA)", - "type": "csv", - "url": "test/NSW_LGA_NEXIS_201212.csv" - }, - { - "name": "2011 Census AUST (STE)", - "type": "csv", - "url": "test/2011Census_AUST_STE.csv" - }, - { - "name": "2011 Census AUST (CED)", - "type": "csv", - "url": "test/2011Census_AUST_CED.csv" - }, - { - "name": "2011 Census AUST (SA4)", - "type": "csv", - "url": "test/2011Census_AUST_SA4.csv" - }, - { - "name": "States STEM 2013", - "type": "csv", - "url": "test/states_stem_2013.csv" - }, - { - "name": "Country Regions", - "type": "csv", - "url": "test/countries.csv", - "tableStyle": { - "dataVariable": "ITU-T Telephone Code" - } - }, - { - "name": "Droughts by Country", - "type": "csv", - "url": "test/droughts.csv", - "tableStyle": { - "featureInfoFields": { - "Country name": "Country", - "date": "Date", - "Total deaths": "Deaths", - "Total damage": "Cost" - }, - "dataVariable": "Total affected", - "displayDuration": 525600 - } - }, - { - "name": "State Mask Test", - "type": "csv", - "url": "test/states_stem_2013.csv", - "tableStyle": { - "colorMap": [ - { - "color": "rgba(0,0,0,0.0)", - "offset": 0 - }, - { - "color": "rgba(0,0,0,1.0)", - "offset": 1 - } - ], - "dataVariable": "Mask" - }, - "keepOnTop": true, - "opacity": 1 - } - ] - }, - { - "name": "KML/KMZ files", - "type": "group", - "items": [ - { - "name": "Simple Test (KML)", - "type": "kml", - "url": "test/simple.kml" - }, - { - "name": "Vic Police (KML)", - "type": "kml", - "url": "test/vic_police.kml" - }, - { - "name": "Vic Police (KMZ)", - "type": "kml", - "url": "test/vic_police.kmz" - } - ] - }, - { - "name": "CZML files", - "type": "group", - "items": [ - { - "name": "Simple Test (CZML)", - "type": "czml", - "url": "test/simple.czml" - }, - { - "name": "Large feature info box (CZML)", - "type": "czml", - "url": "test/bigInfobox.czml" - }, - { - "name": "Embedded CZML", - "type": "czml", - "data": [ - { - "id": "document", - "version": "1.0" - }, - { - "position": { - "cartographicDegrees": [133.0, -25.0, 0.0] - }, - "point": { - "pixelSize": 5, - "color": { - "rgba": [255, 0, 0, 255] - } - } - } - ] - } - ] - }, - { - "name": "WMS", - "type": "group", - "items": [ - { - "layers": "mybroadband:MyBroadband_Map", - "parameters": { - "tiled": true - }, - "dataUrlType": "none", - "clipToRectangle": true, - "description": "[MyBroadband Map](https://www.mybroadband.communications.gov.au)", - "name": "Broadband with html feature info", - "rectangle": [ - 96.79939, - -43.59821, - 153.63925, - -9.21592 - ], - "getFeatureInfoFormats": [{"type": "html"}], - "dataCustodian": "[Department of Communications](http://www.communications.gov.au/)", - "url": "https://programs.communications.gov.au/geoserver/ows", - "type": "wms", - "info": [ - { - "name": "Licence", - "content": "[Creative Commons Attribution 3.0 Australia (CC BY 3.0 AU)](http://creativecommons.org/licenses/by/3.0/au/)" - } - ] - } - ] - }, - { - "name": "GeoJSON files", - "type": "group", - "items": [ - { - "name": "Cemeteries (GeoJSON)", - "type": "geojson", - "url": "test/cemeteries.geojson", - "initialMessage": { - "title": "title", - "content": "testing", - "key": "MyTestingKey" - } - }, - { - "name": "Centrelink Sites (GME->GeoJSON)", - "type": "geojson", - "url": "test/gme.geojson" - }, - { - "name": "Bike Racks (GeoJSON:reproj)", - "type": "geojson", - "url": "test/bike_racks.geojson" - }, - { - "name": "Ferry Routes (GeoJSON via WFS)", - "type": "wfs", - "url": "http://www.ga.gov.au/gis/services/topography/Australian_Topography/MapServer/WFSServer", - "typeNames": "topography_Australian_Topography:Ferry_Routes" - }, - { - "name": "Airports (OGR->GeoJSON, zipped)", - "type": "ogr", - "url": "test/airports.zip" - } - ] - }, - { - "name": "Miscellaneous files", - "type": "group", - "items": [ - { - "name": "Auto Incidents No Time (CSV)", - "type": "csv", - "url": "test/incidents_notime.csv", - "tableStyle": { - "colorMap": [ - { - "color": "hsla(60,80%,80%,1.00)", - "offset": 0 - } - ] - } - }, - { - "name": "Route in England (GPX)", - "type": "gpx", - "url": "test/sample.gpx" - } - ] - } - ], - "isOpen": true - }, - { - "name": "Test Providers", - "type": "group", - "isOpen": true, - "items": [ - { - "name": "Topography (GA)", - "type": "wfs-getCapabilities", - "url": "http://www.ga.gov.au/gis/services/topography/Australian_Topography/MapServer/WFSServer" - }, - { - "name": "data.gov.au", - "type": "wfs-getCapabilities", - "url": "http://data.gov.au/geoserver/ows" - }, - { - "name": "Western Australia", - "type": "wfs-getCapabilities", - "url": "http://www2.landgate.wa.gov.au/ows/wfspublic_4326/wfs" - } - ] - }, - { - "name": "TerriaJS test data", - "type": "group", - "isOpen": true, - "items": [ - { - "name": "GeoJSON", - "type": "group", - "items": [ - { - "name": "Test styled and unstyled features", - "type": "geojson", - "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson" - }, - { - "name": "Test overriding styled and unstyled features", - "type": "geojson", - "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson", - "style": { - "marker-size": "200", - "marker-color": "#ff3333", - "marker-symbol": "rail" - } - }, - { - "name": "Testing stroke styles applied to embedded unstyled point.", - "type": "geojson", - "url": "build/TerriaJS/test/GeoJSON/test-styles.geojson", - "style": { - "stroke-width": "20", - "stroke": "red", - "marker-size": 200 - }, - "data": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { "name": "Thick red border, unspecified centre"}, - "geometry": { - "type": "Point", - "coordinates": [ - 146.469, - -40.830 - ] - } - } - ] - } - } - ] - }, - - { - "name": "Csv-geo-au", - "type": "group", - "items": [ - { "name": "Commonwealth Electoral District (CED) 2011", "type": "csv", "url": "test/csv-geo-au/ced_code_2011.csv" }, - { "name": "Commonwealth Electoral District (CED) 2013", "type": "csv", "url": "test/csv-geo-au/ced_code_2013.csv" }, - { "name": "Greater capital city statistical area (GCCSA)", "type": "csv", "url": "test/csv-geo-au/gccsa.csv" }, - { "name": "Indigenous area (IARE)", "type": "csv", "url": "test/csv-geo-au/iare.csv" }, - { "name": "Indigenous location (ILOC)", "type": "csv", "url": "test/csv-geo-au/iloc.csv" }, - { "name": "Indigenous region (IREG)", "type": "csv", "url": "test/csv-geo-au/ireg.csv" }, - { "name": "Local government area 2011 (LGA_2011)", "type": "csv", "url": "test/csv-geo-au/lga_code_2011.csv" }, - { "name": "Local government area 2013 (LGA_2013)", "type": "csv", "url": "test/csv-geo-au/lga_code_2013.csv" }, - { "name": "Local government area 2015 (LGA_2015)", "type": "csv", "url": "test/csv-geo-au/lga_code_2015.csv" }, - { "name": "Primary Health Network (PHN)", "type": "csv", "url": "test/csv-geo-au/phn.csv" }, - { "name": "Remoteness area (RA)", "type": "csv", "url": "test/csv-geo-au/ra.csv" }, - { "name": "Section of state (SOS)", "type": "csv", "url": "test/csv-geo-au/sos.csv" }, - { "name": "Section of state range (SOSR)", "type": "csv", "url": "test/csv-geo-au/sosr.csv" }, - { "name": "Significant urban area (SUA)", "type": "csv", "url": "test/csv-geo-au/sua.csv" }, - { "name": "Significant urban area by name (SUA_NAME)", "type": "csv", "url": "test/csv-geo-au/sua_name.csv" }, - { "name": "Tourism region (TR) 2015", "type": "csv", "url": "test/csv-geo-au/tr_code_2015.csv" }, - { "name": "Tourism region (TR) 2013", "type": "csv", "url": "test/csv-geo-au/tr_code_2013.csv" }, - { "name": "Urban centre and locality (UCL)", "type": "csv", "url": "test/csv-geo-au/ucl.csv" }, - { "name": "Statistical local area (SLA, obsolete)", "type": "csv", "url": "test/csv-geo-au/sla.csv" }, - { "name": "Census collection district (CD, obsolete)", "type": "csv", "url": "test/csv-geo-au/cd.csv" } - ] - } - ] - }, - { - "name": "Terria Analytics", - "type": "group", - "preserveOrder": true, - "items": [ - { - "name": "Regions like this", - "type": "places-like-me-function", - "url": "http://parlmap.terria.io:31113/jobs" - }, - { - "name": "What makes this region unique or special?", - "type": "why-am-i-special-function", - "url": "http://parlmap.terria.io:31113/jobs" - }, - { - "name": "Spatial Detailing", - "type": "spatial-detailing-function", - "url": "http://parlmap.terria.io:31113/jobs" - }, - { - "name": "Sample Data", - "type": "group", - "items": [ - { - "name": "NSW NEXIS 2012 (LGA)", - "type": "csv", - "url": "test/NSW_LGA_NEXIS_201212.csv" - }, - { - "name": "Victoria Crime (LGA)", - "type": "csv", - "url": "test/vic_assault.csv" - } - ] - } - ] - }, - { - "name": "Empty Group", - "type": "group" - } - ] -} \ No newline at end of file diff --git a/wwwroot/init/tind.json b/wwwroot/init/tind.json deleted file mode 100644 index 5c0e29fb1c..0000000000 --- a/wwwroot/init/tind.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "corsDomains" : [ - "corsproxy.com", - "programs.communications.gov.au", - "www.asris.csiro.au" - ], - "homeCamera": { - "west": 105, - "south": -45, - "east": 155, - "north": -5 - }, - "catalog": [ - { - "name": "Telecommunications in New Developments", - "type": "ckan", - "url": "http://www.data.gov.au", - "filterQuery": ["fq=organization%3adepartment-of-communications+(res_format%3AWMS%20OR%20res_format%3Awms)+tags%3atind"], - "filterByWmsGetCapabilities": false, - "minimumMaxScaleDenominator": 1e10, - "includeKml": false, - "includeWms": true, - "includeEsriMapServer": false, - "groupBy": "none", - "useResourceName": true, - "isOpen": true, - "itemProperties": { - "cacheDuration": "1d" - } - } - ] -} diff --git a/wwwroot/init/vic.json b/wwwroot/init/vic.json deleted file mode 100644 index e01cdb60bb..0000000000 --- a/wwwroot/init/vic.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "homeCamera": { - "west": 140, - "south": -39, - "east": 150, - "north": -34 - }, - "catalog": [ - { - "name": "Victorian Government", - "type": "ckan", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} \ No newline at end of file diff --git a/wwwroot/init/wa.json b/wwwroot/init/wa.json deleted file mode 100644 index 5309473523..0000000000 --- a/wwwroot/init/wa.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "homeCamera": { - "west": 112, - "south": -35.3, - "east": 129, - "north": -13.4 - }, - "services": [], - "catalog": [ - { - "name": "Western Australian Government", - "type": "group", - "isPromoted": true, - "isOpen": true - }, - { - "name": "National Data Sets", - "type": "group", - "isOpen": false - } - ] -} diff --git a/wwwroot/languages/en/languageOverrides.json b/wwwroot/languages/en/languageOverrides.json new file mode 100644 index 0000000000..26bb206dde --- /dev/null +++ b/wwwroot/languages/en/languageOverrides.json @@ -0,0 +1,119 @@ +{ + "gettingstarted": { + "title": "Getting started with the map", + "markdownText": "## Getting started with the map\n\nIf you're new to the map or using spatial data, our Getting Started video quickly covers the basic functionality you'll need to use to add and interrogate data sets.\n\nIf you don't have time to watch the video, we suggest exploring the following areas:\n\n1. Search for a location to quickly find an area of interest\n2. Use 'Explore map data' to view the catalogue of available data sets and add them to the map\n3. Interact with the data layer, including opacity and toggling on and off on the left in your workbench\n4. Click on the data on the map to view more detailed data, including the raw data\n5. Change your basemap using options in 'Map Settings' to help make some data sets more visible\n6. Zoom and change your view, including tilting the view angle using the controls on the right-hand side of the screen", + "videoUrl": "https://www.youtube-nocookie.com/embed/FjSxaviSLhc", + "placeholderImage": "https://img.youtube.com/vi/FjSxaviSLhc/maxresdefault.jpg" + }, + "stepbystepguide": { + "title": "Step by step guide", + "markdownText": "## Step by step guide\n\nLaunch a step by step guide for various popular workflows below:", + "gettingstarted": { + "title": "Getting started with the map", + "step1": { + "markdownDescription": "The search is at the top of the workbench on the left.", + "title": "Search for a location to find an area of interest" + }, + "step2": { + "markdownDescription": "You can view the catalogue at any time", + "title": "Use \"Explore map data\" to view data catalogue" + }, + "step3": { + "markdownDescription": "Find a dataset of interest", + "title": "Search for data or browse catalogue" + }, + "step4": { + "title": "Add data to map by clicking on + sign or \"Add to map\" button in preview window", + "markdownDescription": "" + }, + "step5": { + "title": "Interact with data, including opacity and toggling on & off on the left in your workbench" + }, + "step6": { + "title": "Click on data on the map to view more details by triggering Feature Information panel" + }, + "step7": { + "title": "Change your basemap using options in \"Map Settings\" to improve contrast" + }, + "step8": { + "title": "Zoom and change view using the controls on the right-hand side of the screen" + } + }, + "satelliteimagery": { + "title": "Adding satellite imagery", + "footnote": "Important: Satellite imagery can take a little while to load so please be patient. If images don’t seem to be loading, zoom out a little bit", + "step1": { + "title": "Find the location to view satellite imagery", + "markdownDescription": "- Use the location search or zoom and pan around the map using your mouse or the zoom controls" + }, + "step2": { + "title": "Add the satellite imagery to the map", + "markdownDescription": "- Open the data catalogue using \"Explore map data\" button\n- Navigate through datasets to select your satellite option: Landsat or Sentinel, and daily or composite images. This can depend on resolution of the image you need (10m or 25m) and whether you want daily, 16 day composite, or annual average images\n - Select \"Add to the map\" to view the satellite imagery" + }, + "step3": { + "title": "Filter images to find satellite imagery", + "markdownDescription": "- Filter images by location to quickly find satellite images for that location\n - Satellites circle the globe many times a day. You can expect satellite imagery to be available for one location every two weeks\n - If you haven't already selected your point of interest on the map, zoom in to select one. You will see the filter applied in blue in the Workbench on the left" + }, + "step4": { + "title": "Select a time and date", + "markdownDescription": "- Use the date picker to select a time and date. Cycle backwards through previous years using the back arrow\n - Choose another date if your imagery is obscured by clouds. You can quickly cycle back and forward using the arrows next to the date picker" + } + }, + "comparetimeseries": { + "title": "View and compare different points in time", + "footnote": "Important: Any time series data can be compared using the Split Screen Mode, not just satellite imagery", + "step1": { + "title": "Add a time series dataset to the map", + "markdownDescription": "- Satellite imagery is a good example of time series data, with many satellites going back decades\n- Find your location of interest and filter available imagery by this location\n-See our Adding Satellite Imagery to the Map guide for more" + }, + "step2": { + "title": "Select the time and date", + "markdownDescription": "- In the workbench on the left, select the time and date which will open the date picker\n- Select a year, month and date, or navigate back to other years and even centuries using the back arrow\n- Available dates appear in blue" + }, + "step3": { + "title": "Compare different dates at one location", + "markdownDescription": "- From the 3 dots drop-down menu in the workbench, press 'Compare' to activate Split Screen Mode\n- A duplicate copy of your dataset will appear in the workbench\n- Choose the dates you want to compare on the left and right of the screen\n- Drag the slider using the white button to swipe and compare the two image dates" + }, + "step4": { + "title": "Close Split Screen Mode", + "markdownDescription": "- Escape the Split Screen Mode by pressing the 'x' of Split Screen Mode title in the workbench\n- Remove the duplicate copy of your dataset in the workbench using the 3 dots drop-down menu" + } + } + }, + "helpContentTerm1": { + "term": "dataset", + "aliases": ["data set", "data sets", "datasets"], + "content": "A collection of related information, organised as one using a common data structure, e.g. \"average house prices in Sydney for 2019\" or \"minimum and maximum daily temperature\"" + }, + "helpContentTerm2": { + "term": "time series", + "aliases": ["timeseries"], + "content": "A sequence of data collected over different points in time, e.g. temperature sensor data or a gallery of images of the same location" + }, + "helpContentTerm3": { + "term": "workbench", + "content": "The panel on the left side of the screen that shows what datasets you have added to the map" + }, + "helpContentTerm4": { + "term": "4D", + "content": "3D data that also has a time-series component" + }, + "helpContentTerm5": { + "term": "catalog", + "aliases": ["catalogue"], + "content": "the inventory of all datasets available to be added to the map" + }, + "helpContentTerm6": { + "term": "base maps", + "aliases": ["basemap", "base map", "basemaps"], + "content": "Different map options for the blank base map, such as Bing imagery, roads, dark or light maps" + }, + "helpContentTerm7": { + "term": "source dataset", + "content": "The dataset you added to your workbench that allows for difference calculations" + }, + "helpContentTerm8": { + "term": "preview style", + "content": "The way the dataset appears in the preview window. We recommend true colour to search for cloud-free images" + } +} diff --git a/wwwroot/lowpoly_bus/attribution.txt b/wwwroot/lowpoly_bus/attribution.txt new file mode 100644 index 0000000000..9c51fea2c3 --- /dev/null +++ b/wwwroot/lowpoly_bus/attribution.txt @@ -0,0 +1,3 @@ +Model from Sketchfab user rkmorello: +https://sketchfab.com/models/5c8b8d30a37543feae428846484d316b +Available under Creative Commons Attribution license diff --git a/wwwroot/lowpoly_bus/scene.bin b/wwwroot/lowpoly_bus/scene.bin new file mode 100644 index 0000000000..8a946b7c72 Binary files /dev/null and b/wwwroot/lowpoly_bus/scene.bin differ diff --git a/wwwroot/lowpoly_bus/scene.gltf b/wwwroot/lowpoly_bus/scene.gltf new file mode 100644 index 0000000000..02f6851e53 --- /dev/null +++ b/wwwroot/lowpoly_bus/scene.gltf @@ -0,0 +1,1048 @@ +{ + "accessors": [ + { + "bufferView": 2, + "componentType": 5126, + "count": 272, + "max": [5.9240851402282715, 11.998027801513672, 19.241035461425781], + "min": [-5.9240851402282715, 1.163273811340332, -20.682136535644531], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 3264, + "componentType": 5126, + "count": 272, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "componentType": 5126, + "count": 272, + "max": [1, 0.99066698551177979, 0.11974979937076569, 1], + "min": [-1, -1, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "componentType": 5126, + "count": 272, + "max": [0.97834271192550659, 0.97596597671508789], + "min": [0.037539530545473099, 0.083631925284862518], + "type": "VEC2" + }, + { + "bufferView": 0, + "componentType": 5125, + "count": 816, + "max": [271], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 6528, + "componentType": 5126, + "count": 330, + "max": [0.99999994039535522, 1.0870294570922852, 1.0000004768371582], + "min": [-1.0000004768371582, -1.0870294570922852, -0.9999997615814209], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 10488, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 4352, + "componentType": 5126, + "count": 330, + "max": [1, 0.90620929002761841, 1, 1], + "min": [-0.8090171217918396, -0.90621006488800049, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 2176, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 3264, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 14448, + "componentType": 5126, + "count": 330, + "max": [0.99999994039535522, 1.0870294570922852, 1.0000002384185791], + "min": [-1.0000004768371582, -1.0870294570922852, -1.0000004768371582], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 18408, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 9632, + "componentType": 5126, + "count": 330, + "max": [1, 0.90620607137680054, 1, 1], + "min": [-0.80901700258255005, -0.90621018409729004, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 4816, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 8064, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 22368, + "componentType": 5126, + "count": 330, + "max": [0.99999994039535522, 1.0870299339294434, 1.0000002384185791], + "min": [-1.0000004768371582, -1.0870296955108643, -1.0000004768371582], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 26328, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 14912, + "componentType": 5126, + "count": 330, + "max": [1, 0.90620535612106323, 1, 1], + "min": [-0.80901700258255005, -0.90620934963226318, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 7456, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 12864, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 30288, + "componentType": 5126, + "count": 57, + "max": [0.60210943222045898, 0.50000333786010742, 0.65618896484375], + "min": [-0.9512934684753418, -0.55716848373413086, -0.50368499755859375], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 30972, + "componentType": 5126, + "count": 57, + "max": [0.9999997615814209, 1, 0.99773943424224854], + "min": [-0.98364025354385376, -1, -0.99983423948287964], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 20192, + "componentType": 5126, + "count": 57, + "max": [1, 0.031978789716959, 1, 1], + "min": [-0.14214237034320831, -0.010358999483287334, -1, 1], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 17664, + "componentType": 5125, + "count": 108, + "max": [56], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 31656, + "componentType": 5126, + "count": 6, + "max": [0.5476374626159668, 0.42255926132202148, -0.25970458984375], + "min": [-0.54525470733642578, -0.42272520065307617, -0.406951904296875], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 31728, + "componentType": 5126, + "count": 6, + "max": [0.1756255030632019, 0.3447304368019104, -0.93575990200042725], + "min": [ + -0.042376726865768433, -0.33185142278671265, -0.99983423948287964 + ], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 21104, + "componentType": 5126, + "count": 6, + "max": [ + 0.99964606761932373, 0.057467572391033173, 0.17562128603458405, 1 + ], + "min": [ + 0.98398339748382568, -0.04529077559709549, -0.025616737082600594, 1 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 18096, + "componentType": 5125, + "count": 12, + "max": [5], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 31800, + "componentType": 5126, + "count": 330, + "max": [-4.3630986213684082, 3.976670503616333, -7.1296463012695312], + "min": [-6.3503212928771973, -0.436981201171875, -11.543298721313477], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 35760, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 21200, + "componentType": 5126, + "count": 330, + "max": [0.66386717557907104, 1, 1, 1], + "min": [-0.66387146711349487, -0.80901682376861572, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 10096, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 18144, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 39720, + "componentType": 5126, + "count": 330, + "max": [-4.3630986213684082, 3.976670503616333, 12.116310119628906], + "min": [-6.3503212928771973, -0.436981201171875, 7.7026586532592773], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 43680, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 26480, + "componentType": 5126, + "count": 330, + "max": [0.66387224197387695, 1, 1, 1], + "min": [-0.66387045383453369, -0.80901724100112915, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 12736, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 22944, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 47640, + "componentType": 5126, + "count": 330, + "max": [-2.2072379589080811, 3.976670503616333, -7.1296463012695312], + "min": [-4.1944608688354492, -0.436981201171875, -11.543298721313477], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 51600, + "componentType": 5126, + "count": 330, + "max": [1, 1, 1], + "min": [-1, -1, -1], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 31760, + "componentType": 5126, + "count": 330, + "max": [0.66386497020721436, 1, 1, 1], + "min": [-0.66386938095092773, -0.80901682376861572, -1, -1], + "type": "VEC4" + }, + { + "bufferView": 1, + "byteOffset": 15376, + "componentType": 5126, + "count": 330, + "max": [0.9728388786315918, 0.94777458906173706], + "min": [0.019637569785118103, 0.034085437655448914], + "type": "VEC2" + }, + { + "bufferView": 0, + "byteOffset": 27744, + "componentType": 5125, + "count": 1200, + "max": [329], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 55560, + "componentType": 5126, + "count": 57, + "max": [-5.9115653038024902, 7.1434955596923828, 18.876438140869141], + "min": [-7.1564688682556152, 4.8426332473754883, 18.166740417480469], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 56244, + "componentType": 5126, + "count": 57, + "max": [0.99690020084381104, 0.99815160036087036, 0.97614425420761108], + "min": [-0.91938716173171997, -0.99815356731414795, -0.99876970052719116], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 37040, + "componentType": 5126, + "count": 57, + "max": [0.39280486106872559, 0.11684779077768326, 0.99662613868713379, 1], + "min": [ + -0.93511044979095459, -0.045863572508096695, -0.91848057508468628, -1 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 32544, + "componentType": 5125, + "count": 108, + "max": [56], + "min": [0], + "type": "SCALAR" + }, + { + "bufferView": 2, + "byteOffset": 56928, + "componentType": 5126, + "count": 6, + "max": [-6.1368069648742676, 6.9674863815307617, 18.581253051757812], + "min": [-7.025947093963623, 5.1427998542785645, 18.204771041870117], + "type": "VEC3" + }, + { + "bufferView": 2, + "byteOffset": 57000, + "componentType": 5126, + "count": 6, + "max": [ + 0.41181245446205139, -0.0040094791911542416, -0.91125732660293579 + ], + "min": [0.33996084332466125, -0.086641311645507812, -0.936900794506073], + "type": "VEC3" + }, + { + "bufferView": 3, + "byteOffset": 37952, + "componentType": 5126, + "count": 6, + "max": [ + -0.90670961141586304, 0.11596157401800156, -0.34707611799240112, -1 + ], + "min": [ + -0.93606686592102051, 0.038248881697654724, -0.4102473258972168, -1 + ], + "type": "VEC4" + }, + { + "bufferView": 0, + "byteOffset": 32976, + "componentType": 5125, + "count": 12, + "max": [5], + "min": [0], + "type": "SCALAR" + } + ], + "asset": { + "extras": { + "author": "rkmorello (https://sketchfab.com/rkmorello)", + "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)", + "source": "https://sketchfab.com/models/5c8b8d30a37543feae428846484d316b", + "title": "LowPoly Bus" + }, + "generator": "Sketchfab-3.26.4", + "version": "2.0" + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 33024, + "byteOffset": 0, + "name": "floatBufferViews", + "target": 34963 + }, + { + "buffer": 0, + "byteLength": 18016, + "byteOffset": 33024, + "byteStride": 8, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 57072, + "byteOffset": 51040, + "byteStride": 12, + "name": "floatBufferViews", + "target": 34962 + }, + { + "buffer": 0, + "byteLength": 38048, + "byteOffset": 108112, + "byteStride": 16, + "name": "floatBufferViews", + "target": 34962 + } + ], + "buffers": [ + { + "byteLength": 146160, + "uri": "scene.bin" + } + ], + "images": [ + { + "uri": "textures/CARRO3PCARRO1P1C1greytire_baseColor.png" + }, + { + "uri": "textures/onibus1body1_baseColor.png" + } + ], + "materials": [ + { + "doubleSided": true, + "emissiveFactor": [0, 0, 0], + "name": "onibus1body1", + "pbrMetallicRoughness": { + "baseColorFactor": [1, 1, 1, 1], + "baseColorTexture": { + "index": 1, + "texCoord": 0 + }, + "metallicFactor": 1, + "roughnessFactor": 0.40415396339999998 + } + }, + { + "doubleSided": true, + "emissiveFactor": [0, 0, 0], + "name": "CARRO3PCARRO1P1C1greytire", + "pbrMetallicRoughness": { + "baseColorFactor": [1, 1, 1, 1], + "baseColorTexture": { + "index": 0, + "texCoord": 0 + }, + "metallicFactor": 0, + "roughnessFactor": 0.58098323169999999 + } + }, + { + "doubleSided": true, + "emissiveFactor": [0, 0, 0], + "name": "onibus1grey1", + "pbrMetallicRoughness": { + "baseColorFactor": [0.1196299186, 0.1196299186, 0.1196299186, 1], + "metallicFactor": 0.59927591459999996, + "roughnessFactor": 0.33098323169999999 + } + }, + { + "doubleSided": true, + "emissiveFactor": [0, 0, 0], + "name": "CARRO3PCARRO1P1C1espelho1", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.80737700000000001, 0.80737700000000001, 0.80737700000000001, 1 + ], + "metallicFactor": 1, + "roughnessFactor": 0 + } + } + ], + "meshes": [ + { + "name": "pCube10_onibus1body1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 1, + "POSITION": 0, + "TANGENT": 2, + "TEXCOORD_0": 3 + }, + "indices": 4, + "material": 0, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCylinder3_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 6, + "POSITION": 5, + "TANGENT": 7, + "TEXCOORD_0": 8 + }, + "indices": 9, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCylinder7_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 11, + "POSITION": 10, + "TANGENT": 12, + "TEXCOORD_0": 13 + }, + "indices": 14, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "pCylinder7_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 16, + "POSITION": 15, + "TANGENT": 17, + "TEXCOORD_0": 18 + }, + "indices": 19, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCube16_onibus1grey1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 21, + "POSITION": 20, + "TANGENT": 22 + }, + "indices": 23, + "material": 2, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCube16_CARRO3P:CARRO1P1:C1espelho1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 25, + "POSITION": 24, + "TANGENT": 26 + }, + "indices": 27, + "material": 3, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCylinder11_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 29, + "POSITION": 28, + "TANGENT": 30, + "TEXCOORD_0": 31 + }, + "indices": 32, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCylinder12_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 34, + "POSITION": 33, + "TANGENT": 35, + "TEXCOORD_0": 36 + }, + "indices": 37, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "pCylinder8_CARRO3P:CARRO1P1:C1greytire_0", + "primitives": [ + { + "attributes": { + "NORMAL": 39, + "POSITION": 38, + "TANGENT": 40, + "TEXCOORD_0": 41 + }, + "indices": 42, + "material": 1, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCube54_onibus1grey1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 44, + "POSITION": 43, + "TANGENT": 45 + }, + "indices": 46, + "material": 2, + "mode": 4 + } + ] + }, + { + "name": "CARRO3P:CARRO1P1:pCube54_CARRO3P:CARRO1P1:C1espelho1_0", + "primitives": [ + { + "attributes": { + "NORMAL": 48, + "POSITION": 47, + "TANGENT": 49 + }, + "indices": 50, + "material": 3, + "mode": 4 + } + ] + } + ], + "nodes": [ + { + "children": [1], + "name": "RootNode (gltf orientation matrix)", + "rotation": [-0.70710678118654746, -0, -0, 0.70710678118654757] + }, + { + "children": [2], + "name": "RootNode (model correction matrix)" + }, + { + "children": [3], + "matrix": [1, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1], + "name": "06ba130991be4665b16f23b11e3f07bc.fbx" + }, + { + "children": [4, 6, 25, 35, 37, 39, 41], + "name": "RootNode" + }, + { + "children": [5], + "name": "pCube10" + }, + { + "mesh": 0, + "name": "pCube10_onibus1body1_0" + }, + { + "children": [7], + "matrix": [ + 3.0266141566621257e-16, 1.3630658388137817, 0, 0, -0.57450854778289795, + 1.2756652351850705e-16, 0, 0, 0, 0, 1.3630658388137817, 0, + 3.6113312244415283, 1.4043442010879517, 3.9685454368591309, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder1" + }, + { + "children": [8], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [9, 15], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [10], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [11], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [12], + "matrix": [ + 1.6190160512924194, 0, 0, 0, 0, 1.5910308361053467, 0, 0, 0, 0, + 1.6190160512924194, 0, 0.2681463360786438, -3.0380380153656006, + 4.3585114479064941, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [13], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "children": [14], + "name": "CARRO3P:CARRO1P1:pCylinder3" + }, + { + "mesh": 1, + "name": "CARRO3P:CARRO1P1:pCylinder3_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [16], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, -7.3029742240905762, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder7" + }, + { + "children": [17], + "matrix": [ + 1, 2.4651903288156624e-32, 0, 0, -2.4651903288156624e-32, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder7" + }, + { + "children": [18, 21], + "matrix": [ + 1.6190160512924194, 0, 0, 0, 0, 1.5910308361053467, 0, 0, 0, 0, + 1.6190160512924194, 0, 0.2681463360786438, -3.0380380153656006, + -2.4581229686737061, 1 + ], + "name": "CARRO3P:CARRO1P1:pCylinder7" + }, + { + "children": [19], + "name": "CARRO3P:CARRO1P1:pCylinder7" + }, + { + "children": [20], + "name": "CARRO3P:CARRO1P1:pCylinder7" + }, + { + "mesh": 2, + "name": "CARRO3P:CARRO1P1:pCylinder7_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [22], + "matrix": [ + 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -3.3306690738754696e-16, + 2.4716863632202148, 0, 1 + ], + "name": "pCylinder7" + }, + { + "children": [23], + "matrix": [ + 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.11313367635011673, 0, 1 + ], + "name": "pCylinder7" + }, + { + "children": [24], + "name": "pCylinder7" + }, + { + "mesh": 3, + "name": "pCylinder7_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [26], + "matrix": [ + 0.71496849039470733, 0.03103785698578241, -0.30732287426325794, 0, + -0.027030184070191199, 0.4932094093748503, -0.013072788015432067, 0, + 0.094639245723595791, 0.011052055640877603, 0.22128880231419895, 0, + 4.5117888450622559, 4.4253931045532227, 1.6272951364517212, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube15" + }, + { + "children": [27], + "matrix": [ + 1, -1.0408340855860841e-17, -2.2204460492503126e-16, 0, + 1.0408340855860844e-17, 1, 2.0816681711721685e-17, 0, + 2.2204460492503126e-16, -2.0816681711721685e-17, 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [28], + "matrix": [ + 1, 3.4694469519536134e-18, 0, 0, -3.4694469519536134e-18, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [29], + "matrix": [ + 0.86796152591705322, -1.7347235023058348e-18, -2.2204460829514686e-16, + 0, 1.9986179692388951e-18, 1, -6.9388939039072284e-18, 0, + 2.5582310006257878e-16, 6.9388939039072284e-18, 1, 0, + -0.59349238872528076, -0.45452570915222168, 3.1209301948547363, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [30], + "matrix": [ + 1.2995795011520386, 2.4286129701093713e-17, 0, 0, + -8.036039082893105e-17, 4.3001794815063477, -2.7755576075981569e-17, 0, + -1.2061994350674206e-34, 6.4545157232039129e-18, 1, 0, + -6.2066173553466797, 2.6219625473022461, 64.853065490722656, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [31], + "matrix": [ + 1, 1.7347234759768071e-18, 0, 0, -1.7347234759768071e-18, 1, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [32], + "matrix": [ + 1, -1.7347234759768071e-18, 0, 0, 1.7347234759768071e-18, 1, + -2.775557561562892e-17, 0, 4.8148248609680907e-35, + 2.775557561562892e-17, 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "children": [33, 34], + "matrix": [ + 1, -5.2041704279304213e-18, 0, 0, 5.2041704279304213e-18, 1, + -2.775557561562892e-17, 0, 1.4444474582904273e-34, + 2.775557561562892e-17, 1, 0, 0, 0, 0, 1 + ], + "name": "CARRO3P:CARRO1P1:pCube16" + }, + { + "mesh": 4, + "name": "CARRO3P:CARRO1P1:pCube16_onibus1grey1_0" + }, + { + "mesh": 5, + "name": "CARRO3P:CARRO1P1:pCube16_CARRO3P:CARRO1P1:C1espelho1_0" + }, + { + "children": [36], + "name": "CARRO3P:CARRO1P1:pCylinder11" + }, + { + "mesh": 6, + "name": "CARRO3P:CARRO1P1:pCylinder11_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [38], + "name": "CARRO3P:CARRO1P1:pCylinder12" + }, + { + "mesh": 7, + "name": "CARRO3P:CARRO1P1:pCylinder12_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [40], + "name": "pCylinder8" + }, + { + "mesh": 8, + "name": "pCylinder8_CARRO3P:CARRO1P1:C1greytire_0" + }, + { + "children": [42, 43], + "name": "CARRO3P:CARRO1P1:pCube54" + }, + { + "mesh": 9, + "name": "CARRO3P:CARRO1P1:pCube54_onibus1grey1_0" + }, + { + "mesh": 10, + "name": "CARRO3P:CARRO1P1:pCube54_CARRO3P:CARRO1P1:C1espelho1_0" + } + ], + "samplers": [ + { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + ], + "scene": 0, + "scenes": [ + { + "name": "OSG_Scene", + "nodes": [0] + } + ], + "textures": [ + { + "sampler": 0, + "source": 0 + }, + { + "sampler": 0, + "source": 1 + } + ] +} diff --git a/wwwroot/lowpoly_bus/textures/CARRO3PCARRO1P1C1greytire_baseColor.png b/wwwroot/lowpoly_bus/textures/CARRO3PCARRO1P1C1greytire_baseColor.png new file mode 100644 index 0000000000..7898663a2c Binary files /dev/null and b/wwwroot/lowpoly_bus/textures/CARRO3PCARRO1P1C1greytire_baseColor.png differ diff --git a/wwwroot/lowpoly_bus/textures/onibus1body1_baseColor.png b/wwwroot/lowpoly_bus/textures/onibus1body1_baseColor.png new file mode 100755 index 0000000000..a6e30973dc Binary files /dev/null and b/wwwroot/lowpoly_bus/textures/onibus1body1_baseColor.png differ diff --git a/wwwroot/privacy.html b/wwwroot/privacy.html deleted file mode 100644 index 0679ca53d7..0000000000 --- a/wwwroot/privacy.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - The NationalMap - - - - - - - - - -
- - -
-
-
- -

Privacy

- -

The Department of the Prime Minister and Cabinet is covered by the Privacy Act 1988 (Cth) (‘the Privacy Act’). The Privacy Act contains 13 Australian Privacy Principles (‘the APPs’) which governs how Australian Government agencies should collect, use, store and disclose personal information, and how individuals can access records containing their personal information. General information about the Privacy Act and the APPs can be found on the website of the Office of the Australian Information Commissioner.

- -

We are committed to protecting your privacy. Our Privacy Policy can be accessed via this link. The NationalMap website (this website) complies with the Australian Information Commissioner’s APP Guidelines and with our APP Privacy Policy.

- -

You are reminded that there are risks involved in sending information over the internet.

- -

Any data collected by us as described in this notice is stored securely, and archived for a period of at least five years, and possible up to ten years.

- -

Use and disclosure

- -

We only use personal information that we collect through this website for the purposes for which it was given to us or for related purposes, such as the maintenance, upgrade or improvements of this website or any policy development associated with this website.

- -

We do not share personal information about any individual which we collect through this website to any third party, such as other Australian Government agencies or organisations unless one of the following applies:

- -

• the individual has consented;

- -

• the individual would reasonably expect, or has been told that information of that kind is usually passed to those other individuals, agencies, organisations;

- -

• is required or authorised by law;

- -

• a Permitted General Situation (as defined under section 16A of the Privacy Act) exists (for example, it will prevent or lessen a serious and imminent threat to somebody’s life or health); or

- -

• the disclosure is reasonably necessary for the enforcement of the criminal law or of a law imposing a pecuniary penalty, or for the protection of public revenue.

- -

Information logged when browsing the NationalMap website

- -

We do not collect personal information about you if you only browse this website.

- -

When you browse this website, our server logs the following information:

- -

• the type of browser and operating system you are using;

- -

• the address of the referring site (for example, the previous site that you visited); and

- -

• your IP (Internet Protocol) address, which is a number unique to the machine on which you connect to the internet.

- -

Our server also logs the following information:

- -

• the date and time of your visit; and

- -

• the address of the pages accessed and the documents downloaded.

- -

We use the information we collect from your browsing of this website for statistical analysis, system administration, monitoring of this website’s security, customisation of this website to users’ needs, and the evaluation, research and development of this website.

- -

In order to give you a better experience, we use a URL shortening service provided by a third party. That service may also track the clicks and referrers (sharers) of the NationalMap.

- -

No attempt will be made to identify users due to their browsing activities on this website, except in the unlikely event of an investigation, for example, where a law enforcement agency may exercise a warrant or subpoena. The information we collect from your browsing of this website will only be disclosed to a third party if it is required or authorised by law.

- -

Cookies

- -

A cookie is an electronic token that is passed to your browser and your browser passes it back to the server whenever a page is sent to you.

- -

For this website, our server creates a cookie that is used to keep track of the pages you have accessed. This cookie allows you to page back and forward through this website and return to pages you have already visited. This cookie exists only for the time that you are accessing our server.

- -

Please note that some browsers can be configured to allow cookies to be accessed by servers other than the originating server. Most browsers can also be configured to notify the user when a cookie is received, allowing you to either accept or reject it. You do not need to have configured your browser to enable the accepting or sending of cookies in order to use this website.

- -

Cookies are not used for any other purposes on this website, for example, we do not use cookies on this website to collect your personal information.

- -

Online forms, email address and contact us

- -

When using this website (for example, the online forms or contact us function), you may provide us with your personal information, for example, your name and email address etc. When you do this, you agree to provide us with your consent to disclose your personal information to other areas of the Department and potentially other appropriate third parties, for example, the National ICT Australia, Geoscience Australia, Bureau of Meteorology, Australian Bureau of Statistics, data.gov.au website etc. so that we can appropriately respond to your request or query. You also agree to provide us with your consent to disclose your personal information for the administration, regulation and evaluation processes associated with this website or for related purposes such as any policy development associated with this website.

- -

You have the right not to identify yourself or to use an alias (pseudonym) when you contact us or use online forms in relation to this website. However, where it is impractical for us to deal with your request in that way, or the law requires or authorise us to collect your personal information, then we may require you to identify yourself.

- -

Searches

- -

The search terms that you enter when using this website’s search engine are collected so that we can find out what users are looking for on this website.

- -

Links

- -

This website contains links to other websites for the attribution of the data source or may use social media sites to make it easy to share information. These other sites may use web measurement tools, customisation technologies and persistent cookies to inform the services that they provide to their users. We are not responsible for the privacy practices or the content of other sites. This website does not use, maintain or share Personally Identifiable Information made through the other websites, such as, Facebook, Twitter or YouTube etc.

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

© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.

-

- Terms and conditions – - Privacy -

-
-
-
- - - - - diff --git a/wwwroot/public/css/bootstrap.css b/wwwroot/public/css/bootstrap.css deleted file mode 100644 index ad2dae45ff..0000000000 --- a/wwwroot/public/css/bootstrap.css +++ /dev/null @@ -1,6287 +0,0 @@ -/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template { - display: none; -} -a { - background-color: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -mark { - background: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 1em 40px; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} -pre { - overflow: auto; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input { - line-height: normal; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} -input[type="search"] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - background: transparent !important; - color: #000 !important; - box-shadow: none !important; - text-shadow: none !important; - } - a, - a:visited { - text-decoration: underline; - } - a[href]:after { - content: " (" attr(href) ")"; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - img { - max-width: 100% !important; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - select { - background: #fff !important; - } - .navbar { - display: none; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"; -} -.glyphicon-plus:before { - content: "\2b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333333; - background-color: #ffffff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - padding: 4px; - line-height: 1.42857143; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - background-color: #fcf8e3; - padding: .2em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #777777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #eeeeee; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #ffffff; - background-color: #333333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - word-break: break-all; - word-wrap: break-word; - color: #333333; - background-color: #f5f5f5; - border: 1px solid #cccccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.row { - margin-left: -15px; - margin-right: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0%; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0%; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #dddddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #dddddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #dddddd; -} -.table .table { - background-color: #ffffff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-child(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - float: none; - display: table-column; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - float: none; - display: table-cell; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - overflow-x: auto; - min-height: 0.01%; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #dddddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555555; - background-color: #ffffff; - background-image: none; - border: 1px solid #cccccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999999; -} -.form-control::-webkit-input-placeholder { - color: #999999; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - cursor: not-allowed; - background-color: #eeeeee; - opacity: 1; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"], - input[type="time"], - input[type="datetime-local"], - input[type="month"] { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-left: 0; - padding-right: 0; -} -.input-sm, -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm, -select.form-group-sm .form-control { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -textarea.form-group-sm .form-control, -select[multiple].input-sm, -select[multiple].form-group-sm .form-control { - height: auto; -} -.input-lg, -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -select.input-lg, -select.form-group-lg .form-control { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -textarea.form-group-lg .form-control, -select[multiple].input-lg, -select[multiple].form-group-lg .form-control { - height: auto; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 14.3px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - } -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333333; - text-decoration: none; -} -.btn:active, -.btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default { - color: #333333; - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default:hover, -.btn-default:focus, -.btn-default.focus, -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default .badge { - color: #ffffff; - background-color: #333333; -} -.btn-primary { - color: #ffffff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary.focus, -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #ffffff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #ffffff; -} -.btn-success { - color: #ffffff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:hover, -.btn-success:focus, -.btn-success.focus, -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #ffffff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #ffffff; -} -.btn-info { - color: #ffffff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:hover, -.btn-info:focus, -.btn-info.focus, -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #ffffff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #ffffff; -} -.btn-warning { - color: #ffffff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:hover, -.btn-warning:focus, -.btn-warning.focus, -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #ffffff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #ffffff; -} -.btn-danger { - color: #ffffff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:hover, -.btn-danger:focus, -.btn-danger.focus, -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #ffffff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #ffffff; -} -.btn-link { - color: #337ab7; - font-weight: normal; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; - visibility: hidden; -} -.collapse.in { - display: block; - visibility: visible; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px solid; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 14px; - text-align: left; - background-color: #ffffff; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857143; - color: #333333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - text-decoration: none; - color: #262626; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #ffffff; - text-decoration: none; - outline: 0; - background-color: #337ab7; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #777777; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - cursor: not-allowed; -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - left: auto; - right: 0; -} -.dropdown-menu-left { - left: 0; - right: auto; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857143; - color: #777777; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid; - content: ""; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 1px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child > .btn:last-child, -.btn-group > .btn-group:first-child > .dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn-group:last-child > .btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-bottom-left-radius: 4px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - float: none; - display: table-cell; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-left: 0; - padding-right: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #cccccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - margin-left: -1px; -} -.nav { - margin-bottom: 0; - padding-left: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.nav > li.disabled > a { - color: #777777; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #dddddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #dddddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #555555; - background-color: #ffffff; - border: 1px solid #dddddd; - border-bottom-color: transparent; - cursor: default; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #dddddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #dddddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #ffffff; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #ffffff; - background-color: #337ab7; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #dddddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #dddddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #ffffff; - } -} -.tab-content > .tab-pane { - display: none; - visibility: hidden; -} -.tab-content > .active { - display: block; - visibility: visible; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - visibility: visible !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; - height: 50px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 7.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} -.navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777777; -} -.navbar-default .navbar-nav > li > a { - color: #777777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #cccccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #dddddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #dddddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - background-color: #e7e7e7; - color: #555555; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #cccccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777777; -} -.navbar-default .navbar-link:hover { - color: #333333; -} -.navbar-default .btn-link { - color: #777777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #cccccc; -} -.navbar-inverse { - background-color: #222222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #ffffff; - background-color: #080808; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #ffffff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - background-color: #080808; - color: #ffffff; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #ffffff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #ffffff; - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #ffffff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #ffffff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - content: "../../\00a0"; - padding: 0 5px; - color: #cccccc; -} -.breadcrumb > .active { - color: #777777; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - line-height: 1.42857143; - text-decoration: none; - color: #337ab7; - background-color: #ffffff; - border: 1px solid #dddddd; - margin-left: -1px; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - color: #23527c; - background-color: #eeeeee; - border-color: #dddddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 2; - color: #ffffff; - background-color: #337ab7; - border-color: #337ab7; - cursor: default; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777777; - background-color: #ffffff; - border-color: #dddddd; - cursor: not-allowed; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-bottom-left-radius: 6px; - border-top-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-bottom-right-radius: 6px; - border-top-right-radius: 6px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} -.pager { - padding-left: 0; - margin: 20px 0; - list-style: none; - text-align: center; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777777; - background-color: #ffffff; - cursor: not-allowed; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #ffffff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #777777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - color: #ffffff; - line-height: 1; - vertical-align: baseline; - white-space: nowrap; - text-align: center; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #ffffff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding: 30px 15px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, -.container-fluid .jumbotron { - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding: 48px 0; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-left: 60px; - padding-right: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-left: auto; - margin-right: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - overflow: hidden; - height: 20px; - margin-bottom: 20px; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #ffffff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - margin-bottom: 20px; - padding-left: 0; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #ffffff; - border: 1px solid #dddddd; -} -.list-group-item:first-child { - border-top-right-radius: 4px; - border-top-left-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -a.list-group-item { - color: #555555; -} -a.list-group-item .list-group-item-heading { - color: #333333; -} -a.list-group-item:hover, -a.list-group-item:focus { - text-decoration: none; - color: #555555; - background-color: #f5f5f5; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - background-color: #eeeeee; - color: #777777; - cursor: not-allowed; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #777777; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #ffffff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -a.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -a.list-group-item-success.active:hover, -a.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -a.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -a.list-group-item-info.active:hover, -a.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -a.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -a.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #ffffff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #dddddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-left: 15px; - padding-right: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #dddddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #dddddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #dddddd; -} -.panel-default { - border-color: #dddddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #dddddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #dddddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #dddddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #ffffff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #ffffff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0; -} -.embed-responsive.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-lg { - padding: 24px; - border-radius: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover, -.close:focus { - color: #000000; - text-decoration: none; - cursor: pointer; - opacity: 0.5; - filter: alpha(opacity=50); -} -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} -.modal-open { - overflow: hidden; -} -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #ffffff; - border: 1px solid #999999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; - outline: 0; -} -.modal-backdrop { - position: absolute; - top: 0; - right: 0; - left: 0; - background-color: #000000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: 0.5; - filter: alpha(opacity=50); -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; - min-height: 16.42857143px; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.42857143; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - visibility: visible; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12px; - font-weight: normal; - line-height: 1.4; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.9; - filter: alpha(opacity=90); -} -.tooltip.top { - margin-top: -3px; - padding: 5px 0; -} -.tooltip.right { - margin-left: 3px; - padding: 0 5px; -} -.tooltip.bottom { - margin-top: 3px; - padding: 5px 0; -} -.tooltip.left { - margin-left: -3px; - padding: 0 5px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #ffffff; - text-align: center; - text-decoration: none; - background-color: #000000; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - right: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - background-color: #ffffff; - background-clip: padding-box; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - white-space: normal; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - margin: 0; - padding: 8px 14px; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - border-width: 10px; - content: ""; -} -.popover.top > .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - bottom: -11px; -} -.popover.top > .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #ffffff; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); -} -.popover.right > .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #ffffff; -} -.popover.bottom > .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); - top: -11px; -} -.popover.bottom > .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #ffffff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.popover.left > .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #ffffff; - bottom: -10px; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; -} -.carousel-inner > .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - transition: transform 0.6s ease-in-out; - backface-visibility: hidden; - perspective: 1000; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - transform: translate3d(0, 0, 0); - left: 0; - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: 0.5; - filter: alpha(opacity=50); - font-size: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, -.carousel-control:focus { - outline: 0; - color: #ffffff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #ffffff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); -} -.carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #ffffff; -} -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -15px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -15px; - } - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-footer:before, -.modal-footer:after { - content: " "; - display: table; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; - visibility: hidden !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} diff --git a/wwwroot/public/css/bootstrap.min.css b/wwwroot/public/css/bootstrap.min.css deleted file mode 100644 index f5e1a6423a..0000000000 --- a/wwwroot/public/css/bootstrap.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Bootstrap v3.3.1 (http://getbootstrap.com) - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:before,:after{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio].disabled,input[type=checkbox].disabled,fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,select.form-group-lg .form-control{height:46px;line-height:46px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important;visibility:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"../../../../\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/wwwroot/public/css/custom.css b/wwwroot/public/css/custom.css deleted file mode 100644 index c892824c74..0000000000 --- a/wwwroot/public/css/custom.css +++ /dev/null @@ -1,292 +0,0 @@ -/*! - * Start Bootstrap - Shop Item HTML Template (http://startbootstrap.com) - * Code licensed under the Apache License v2.0. - * For details, see http://www.apache.org/licenses/LICENSE-2.0. - */ - -html { - position: relative; - min-height: 100%; -} - -body { - padding-top: 100px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */ - padding-bottom: 20px; - margin-bottom: 60px; /* Margin bottom by footer height */ -} - -.container { - padding: 0; -} - -.logo-block { - margin-top: 35px; -} - -a { - outline: none; -} - -ul { - padding-left: 20px; -} - -.anchor { - padding-top: 30px; -} - -.anchor:focus { - outline: 0; -} - -/* footer */ - -.footer { - position: absolute; - bottom: 0; - width: 100%; - height: 90px; - background-color: #f5f5f5; -} - -.footer p { - margin-top: 10px; -} - -@media (min-width: 768px) { - .footer { - height: 90px; - padding-top: 10px; - } -} - -/* navbar */ - -.navbar { - min-height: 60px; -} - -.navbar-inverse { - background-color: #353B43; - border-color: #080808; -} - -.navbar-brand { - padding-top: 10px; -} - -.navbar-brand img { - height: 40px; -} - -.navbar-inverse .navbar-text { - color: #ccc; -} -.navbar-inverse .navbar-nav > li > a { - color: #ccc; -} - -.navbar-inverse .navbar-nav> .active > a { - background-color: #202428; -} - -.navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; -} - -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } - - .navbar-nav > li > a { - padding-top: 20px; - padding-bottom: 20px; - } -} - -/* navbar toggle (mobile) */ - - -.navbar-header { - padding-left: 15px; - padding-right: 15px; -} - -.navbar-nav { - padding-left: 10px; - padding-right: 10px; -} - -.navbar-toggle { - margin-top: 13px; -} - - -/* headings */ - -h1, h2, h3, h4, h5, h6 { - font-weight: 300; - font-family: 'Roboto', sans-serif; -} - -h1 { - font-size: 24px; - margin-top: 0; - margin-bottom: 20px; -} - -h2 { - font-size: 20px; -} - -h3 { - font-size: 18px; -} - -/* sub nav */ - -.list-group-item:first-child { - border-top-left-radius: 2px; - border-top-right-radius: 2px; -} - -.list-group-item:last-child { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; -} - -/* terms */ - -.terms { - text-decoration: none; -} - -/* sidebar */ - -#sidebar { - margin-bottom: 40px; -} - -#sidebar p { - font-size: 15px; -} - -#sidebar expl { - font-size: 12px; -} - -.sidebar-list { - list-style: none; - padding-left: 0; -} - -.sidebar-list li { - font-size: 13px; -} - -@media (min-width: 768px) { - #sidebar { - margin-top: 48px; - } -} - -/* logos */ - -.logo { - margin-bottom: 20px; -} - -/* First level of nav */ -.sidenav { - margin-top: 30px; - margin-bottom: 30px; - padding-top: 10px; - padding-bottom: 10px; -} - -/* Responsive iframe fix */ - -.video-container { - position: relative; - padding-bottom: 56.25%; - margin-bottom: 15px; - padding-top: 35px; - height: 0; - overflow: hidden; -} - -.video-container iframe { - position: absolute; - top:0; - left: 0; - width: 100%; - height: 100%; -} - -/* help and faq */ - -.faq-grouping { - color: #b1b1b1; - margin-top: 30px; - margin-bottom: 20px; -} - -.panel-title { - line-height: 1.5em; -} - -.text-indent p { - margin-left: 10px; -} - -p.no-indent { - margin-left: 0; -} - -.img-group { - margin-top: 20px; - margin-bottom: 20px; -} - -.howto { - margin-bottom: 13px; -} - -/* lists */ - -.starter-template ul li { - padding-bottom: 10px; -} - -/* accordion */ - -#accordion { - margin-bottom: 30px; -} - -.panel-default { - border: none; -} - -.panel-heading { - padding: 15px 0; -} - -.panel-group { - margin-top: -10px; - z-index: 100; -} - -.panel-group a { - z-index: 1000; -} - -.panel-default>.panel-heading { - background-color: #FFFFFF; -} - -.panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group { - border-top: none; -} diff --git a/wwwroot/public/fonts/glyphicons-halflings-regular.eot b/wwwroot/public/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index 4a4ca865d6..0000000000 Binary files a/wwwroot/public/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/wwwroot/public/fonts/glyphicons-halflings-regular.svg b/wwwroot/public/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index e3e2dc739d..0000000000 --- a/wwwroot/public/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/wwwroot/public/fonts/glyphicons-halflings-regular.ttf b/wwwroot/public/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 67fa00bf83..0000000000 Binary files a/wwwroot/public/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/wwwroot/public/fonts/glyphicons-halflings-regular.woff b/wwwroot/public/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 8c54182aa5..0000000000 Binary files a/wwwroot/public/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/wwwroot/public/img/Comms.jpg b/wwwroot/public/img/Comms.jpg deleted file mode 100644 index 6715bab671..0000000000 Binary files a/wwwroot/public/img/Comms.jpg and /dev/null differ diff --git a/wwwroot/public/img/Finalist-Innovation.gif b/wwwroot/public/img/Finalist-Innovation.gif deleted file mode 100644 index f1c89c0f01..0000000000 Binary files a/wwwroot/public/img/Finalist-Innovation.gif and /dev/null differ diff --git a/wwwroot/public/img/GA-dark.png b/wwwroot/public/img/GA-dark.png deleted file mode 100644 index 1a39f3b58d..0000000000 Binary files a/wwwroot/public/img/GA-dark.png and /dev/null differ diff --git a/wwwroot/public/img/GA.png b/wwwroot/public/img/GA.png deleted file mode 100644 index b012b6ff49..0000000000 Binary files a/wwwroot/public/img/GA.png and /dev/null differ diff --git a/wwwroot/public/img/Gov_NICTA_NM_logos.png b/wwwroot/public/img/Gov_NICTA_NM_logos.png deleted file mode 100755 index a78ba1582d..0000000000 Binary files a/wwwroot/public/img/Gov_NICTA_NM_logos.png and /dev/null differ diff --git a/wwwroot/public/img/InfoButton.png b/wwwroot/public/img/InfoButton.png deleted file mode 100755 index dd259ee291..0000000000 Binary files a/wwwroot/public/img/InfoButton.png and /dev/null differ diff --git a/wwwroot/public/img/ZoomHome.png b/wwwroot/public/img/ZoomHome.png deleted file mode 100755 index 3f799d81cc..0000000000 Binary files a/wwwroot/public/img/ZoomHome.png and /dev/null differ diff --git a/wwwroot/public/img/ZoomIn.png b/wwwroot/public/img/ZoomIn.png deleted file mode 100755 index 9995c007b3..0000000000 Binary files a/wwwroot/public/img/ZoomIn.png and /dev/null differ diff --git a/wwwroot/public/img/ZoomOut.png b/wwwroot/public/img/ZoomOut.png deleted file mode 100755 index eaeb0dacce..0000000000 Binary files a/wwwroot/public/img/ZoomOut.png and /dev/null differ diff --git a/wwwroot/public/img/base-maps.png b/wwwroot/public/img/base-maps.png deleted file mode 100644 index 3a9712ebcc..0000000000 Binary files a/wwwroot/public/img/base-maps.png and /dev/null differ diff --git a/wwwroot/public/img/compass-control.png b/wwwroot/public/img/compass-control.png deleted file mode 100644 index de13d38362..0000000000 Binary files a/wwwroot/public/img/compass-control.png and /dev/null differ diff --git a/wwwroot/public/img/data-catalogue-groups.png b/wwwroot/public/img/data-catalogue-groups.png deleted file mode 100644 index b94a8211b9..0000000000 Binary files a/wwwroot/public/img/data-catalogue-groups.png and /dev/null differ diff --git a/wwwroot/public/img/data-catalogue-subgroups.png b/wwwroot/public/img/data-catalogue-subgroups.png deleted file mode 100644 index 34dae5bed4..0000000000 Binary files a/wwwroot/public/img/data-catalogue-subgroups.png and /dev/null differ diff --git a/wwwroot/public/img/data61-white.jpg b/wwwroot/public/img/data61-white.jpg deleted file mode 100644 index 9b683ca8dd..0000000000 Binary files a/wwwroot/public/img/data61-white.jpg and /dev/null differ diff --git a/wwwroot/public/img/data61.png b/wwwroot/public/img/data61.png deleted file mode 100644 index 687648c659..0000000000 Binary files a/wwwroot/public/img/data61.png and /dev/null differ diff --git a/wwwroot/public/img/dragIcon.png b/wwwroot/public/img/dragIcon.png deleted file mode 100755 index 6338049e25..0000000000 Binary files a/wwwroot/public/img/dragIcon.png and /dev/null differ diff --git a/wwwroot/public/img/dragIconLight.png b/wwwroot/public/img/dragIconLight.png deleted file mode 100755 index 14c58280ae..0000000000 Binary files a/wwwroot/public/img/dragIconLight.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_067_cleaning.png b/wwwroot/public/img/glyphicons_067_cleaning.png deleted file mode 100755 index b6346de0ca..0000000000 Binary files a/wwwroot/public/img/glyphicons_067_cleaning.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_094_vector_path_square.png b/wwwroot/public/img/glyphicons_094_vector_path_square.png deleted file mode 100755 index efdcce829b..0000000000 Binary files a/wwwroot/public/img/glyphicons_094_vector_path_square.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_095_vector_path_circle.png b/wwwroot/public/img/glyphicons_095_vector_path_circle.png deleted file mode 100755 index d199540463..0000000000 Binary files a/wwwroot/public/img/glyphicons_095_vector_path_circle.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_096_vector_path_polygon.png b/wwwroot/public/img/glyphicons_096_vector_path_polygon.png deleted file mode 100755 index 0662eb579e..0000000000 Binary files a/wwwroot/public/img/glyphicons_096_vector_path_polygon.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_097_vector_path_line.png b/wwwroot/public/img/glyphicons_097_vector_path_line.png deleted file mode 100755 index 77711170d6..0000000000 Binary files a/wwwroot/public/img/glyphicons_097_vector_path_line.png and /dev/null differ diff --git a/wwwroot/public/img/glyphicons_242_google_maps.png b/wwwroot/public/img/glyphicons_242_google_maps.png deleted file mode 100755 index 372bea3d41..0000000000 Binary files a/wwwroot/public/img/glyphicons_242_google_maps.png and /dev/null differ diff --git a/wwwroot/public/img/iawards.png b/wwwroot/public/img/iawards.png deleted file mode 100644 index 0e1a4e9275..0000000000 Binary files a/wwwroot/public/img/iawards.png and /dev/null differ diff --git a/wwwroot/public/img/nm-logo.png b/wwwroot/public/img/nm-logo.png deleted file mode 100644 index 7736f10110..0000000000 Binary files a/wwwroot/public/img/nm-logo.png and /dev/null differ diff --git a/wwwroot/public/img/now-viewing.png b/wwwroot/public/img/now-viewing.png deleted file mode 100644 index 0d8bf40f9c..0000000000 Binary files a/wwwroot/public/img/now-viewing.png and /dev/null differ diff --git a/wwwroot/public/img/pmc-stacked.jpg b/wwwroot/public/img/pmc-stacked.jpg deleted file mode 100755 index 0ce6507a8f..0000000000 Binary files a/wwwroot/public/img/pmc-stacked.jpg and /dev/null differ diff --git a/wwwroot/public/img/search-tab.png b/wwwroot/public/img/search-tab.png deleted file mode 100644 index c4cb23d543..0000000000 Binary files a/wwwroot/public/img/search-tab.png and /dev/null differ diff --git a/wwwroot/public/js/bootstrap.js b/wwwroot/public/js/bootstrap.js deleted file mode 100644 index 5b4b1faac0..0000000000 --- a/wwwroot/public/js/bootstrap.js +++ /dev/null @@ -1,2303 +0,0 @@ -/* ======================================================================== - * Bootstrap: transition.js v3.3.1 - * http://getbootstrap.com/javascript/#transitions - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) - // ============================================================ - - function transitionEnd() { - var el = document.createElement('bootstrap') - - var transEndEventNames = { - WebkitTransition : 'webkitTransitionEnd', - MozTransition : 'transitionend', - OTransition : 'oTransitionEnd otransitionend', - transition : 'transitionend' - } - - for (var name in transEndEventNames) { - if (el.style[name] !== undefined) { - return { end: transEndEventNames[name] } - } - } - - return false // explicit for ie8 ( ._.) - } - - // http://blog.alexmaccaw.com/css-transitions - $.fn.emulateTransitionEnd = function (duration) { - var called = false - var $el = this - $(this).one('bsTransitionEnd', function () { called = true }) - var callback = function () { if (!called) $($el).trigger($.support.transition.end) } - setTimeout(callback, duration) - return this - } - - $(function () { - $.support.transition = transitionEnd() - - if (!$.support.transition) return - - $.event.special.bsTransitionEnd = { - bindType: $.support.transition.end, - delegateType: $.support.transition.end, - handle: function (e) { - if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) - } - } - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: alert.js v3.3.1 - * http://getbootstrap.com/javascript/#alerts - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // ALERT CLASS DEFINITION - // ====================== - - var dismiss = '[data-dismiss="alert"]' - var Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.VERSION = '3.3.1' - - Alert.TRANSITION_DURATION = 150 - - Alert.prototype.close = function (e) { - var $this = $(this) - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = $(selector) - - if (e) e.preventDefault() - - if (!$parent.length) { - $parent = $this.closest('.alert') - } - - $parent.trigger(e = $.Event('close.bs.alert')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - // detach from parent, fire event then clean up data - $parent.detach().trigger('closed.bs.alert').remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent - .one('bsTransitionEnd', removeElement) - .emulateTransitionEnd(Alert.TRANSITION_DURATION) : - removeElement() - } - - - // ALERT PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.alert') - - if (!data) $this.data('bs.alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.alert - - $.fn.alert = Plugin - $.fn.alert.Constructor = Alert - - - // ALERT NO CONFLICT - // ================= - - $.fn.alert.noConflict = function () { - $.fn.alert = old - return this - } - - - // ALERT DATA-API - // ============== - - $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: button.js v3.3.1 - * http://getbootstrap.com/javascript/#buttons - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // BUTTON PUBLIC CLASS DEFINITION - // ============================== - - var Button = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Button.DEFAULTS, options) - this.isLoading = false - } - - Button.VERSION = '3.3.1' - - Button.DEFAULTS = { - loadingText: 'loading...' - } - - Button.prototype.setState = function (state) { - var d = 'disabled' - var $el = this.$element - var val = $el.is('input') ? 'val' : 'html' - var data = $el.data() - - state = state + 'Text' - - if (data.resetText == null) $el.data('resetText', $el[val]()) - - // push to event loop to allow forms to submit - setTimeout($.proxy(function () { - $el[val](data[state] == null ? this.options[state] : data[state]) - - if (state == 'loadingText') { - this.isLoading = true - $el.addClass(d).attr(d, d) - } else if (this.isLoading) { - this.isLoading = false - $el.removeClass(d).removeAttr(d) - } - }, this), 0) - } - - Button.prototype.toggle = function () { - var changed = true - var $parent = this.$element.closest('[data-toggle="buttons"]') - - if ($parent.length) { - var $input = this.$element.find('input') - if ($input.prop('type') == 'radio') { - if ($input.prop('checked') && this.$element.hasClass('active')) changed = false - else $parent.find('.active').removeClass('active') - } - if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') - } else { - this.$element.attr('aria-pressed', !this.$element.hasClass('active')) - } - - if (changed) this.$element.toggleClass('active') - } - - - // BUTTON PLUGIN DEFINITION - // ======================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.button') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.button', (data = new Button(this, options))) - - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - var old = $.fn.button - - $.fn.button = Plugin - $.fn.button.Constructor = Button - - - // BUTTON NO CONFLICT - // ================== - - $.fn.button.noConflict = function () { - $.fn.button = old - return this - } - - - // BUTTON DATA-API - // =============== - - $(document) - .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { - var $btn = $(e.target) - if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') - Plugin.call($btn, 'toggle') - e.preventDefault() - }) - .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { - $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: carousel.js v3.3.1 - * http://getbootstrap.com/javascript/#carousel - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CAROUSEL CLASS DEFINITION - // ========================= - - var Carousel = function (element, options) { - this.$element = $(element) - this.$indicators = this.$element.find('.carousel-indicators') - this.options = options - this.paused = - this.sliding = - this.interval = - this.$active = - this.$items = null - - this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) - - this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element - .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) - .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) - } - - Carousel.VERSION = '3.3.1' - - Carousel.TRANSITION_DURATION = 600 - - Carousel.DEFAULTS = { - interval: 5000, - pause: 'hover', - wrap: true, - keyboard: true - } - - Carousel.prototype.keydown = function (e) { - if (/input|textarea/i.test(e.target.tagName)) return - switch (e.which) { - case 37: this.prev(); break - case 39: this.next(); break - default: return - } - - e.preventDefault() - } - - Carousel.prototype.cycle = function (e) { - e || (this.paused = false) - - this.interval && clearInterval(this.interval) - - this.options.interval - && !this.paused - && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) - - return this - } - - Carousel.prototype.getItemIndex = function (item) { - this.$items = item.parent().children('.item') - return this.$items.index(item || this.$active) - } - - Carousel.prototype.getItemForDirection = function (direction, active) { - var delta = direction == 'prev' ? -1 : 1 - var activeIndex = this.getItemIndex(active) - var itemIndex = (activeIndex + delta) % this.$items.length - return this.$items.eq(itemIndex) - } - - Carousel.prototype.to = function (pos) { - var that = this - var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) - - if (pos > (this.$items.length - 1) || pos < 0) return - - if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" - if (activeIndex == pos) return this.pause().cycle() - - return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) - } - - Carousel.prototype.pause = function (e) { - e || (this.paused = true) - - if (this.$element.find('.next, .prev').length && $.support.transition) { - this.$element.trigger($.support.transition.end) - this.cycle(true) - } - - this.interval = clearInterval(this.interval) - - return this - } - - Carousel.prototype.next = function () { - if (this.sliding) return - return this.slide('next') - } - - Carousel.prototype.prev = function () { - if (this.sliding) return - return this.slide('prev') - } - - Carousel.prototype.slide = function (type, next) { - var $active = this.$element.find('.item.active') - var $next = next || this.getItemForDirection(type, $active) - var isCycling = this.interval - var direction = type == 'next' ? 'left' : 'right' - var fallback = type == 'next' ? 'first' : 'last' - var that = this - - if (!$next.length) { - if (!this.options.wrap) return - $next = this.$element.find('.item')[fallback]() - } - - if ($next.hasClass('active')) return (this.sliding = false) - - var relatedTarget = $next[0] - var slideEvent = $.Event('slide.bs.carousel', { - relatedTarget: relatedTarget, - direction: direction - }) - this.$element.trigger(slideEvent) - if (slideEvent.isDefaultPrevented()) return - - this.sliding = true - - isCycling && this.pause() - - if (this.$indicators.length) { - this.$indicators.find('.active').removeClass('active') - var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) - $nextIndicator && $nextIndicator.addClass('active') - } - - var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" - if ($.support.transition && this.$element.hasClass('slide')) { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - $active - .one('bsTransitionEnd', function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { - that.$element.trigger(slidEvent) - }, 0) - }) - .emulateTransitionEnd(Carousel.TRANSITION_DURATION) - } else { - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger(slidEvent) - } - - isCycling && this.cycle() - - return this - } - - - // CAROUSEL PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.carousel') - var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) - var action = typeof option == 'string' ? option : options.slide - - if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (action) data[action]() - else if (options.interval) data.pause().cycle() - }) - } - - var old = $.fn.carousel - - $.fn.carousel = Plugin - $.fn.carousel.Constructor = Carousel - - - // CAROUSEL NO CONFLICT - // ==================== - - $.fn.carousel.noConflict = function () { - $.fn.carousel = old - return this - } - - - // CAROUSEL DATA-API - // ================= - - var clickHandler = function (e) { - var href - var $this = $(this) - var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 - if (!$target.hasClass('carousel')) return - var options = $.extend({}, $target.data(), $this.data()) - var slideIndex = $this.attr('data-slide-to') - if (slideIndex) options.interval = false - - Plugin.call($target, options) - - if (slideIndex) { - $target.data('bs.carousel').to(slideIndex) - } - - e.preventDefault() - } - - $(document) - .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) - .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) - - $(window).on('load', function () { - $('[data-ride="carousel"]').each(function () { - var $carousel = $(this) - Plugin.call($carousel, $carousel.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: collapse.js v3.3.1 - * http://getbootstrap.com/javascript/#collapse - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // COLLAPSE PUBLIC CLASS DEFINITION - // ================================ - - var Collapse = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Collapse.DEFAULTS, options) - this.$trigger = $(this.options.trigger).filter('[href="#' + element.id + '"], [data-target="#' + element.id + '"]') - this.transitioning = null - - if (this.options.parent) { - this.$parent = this.getParent() - } else { - this.addAriaAndCollapsedClass(this.$element, this.$trigger) - } - - if (this.options.toggle) this.toggle() - } - - Collapse.VERSION = '3.3.1' - - Collapse.TRANSITION_DURATION = 350 - - Collapse.DEFAULTS = { - toggle: true, - trigger: '[data-toggle="collapse"]' - } - - Collapse.prototype.dimension = function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - Collapse.prototype.show = function () { - if (this.transitioning || this.$element.hasClass('in')) return - - var activesData - var actives = this.$parent && this.$parent.find('> .panel').children('.in, .collapsing') - - if (actives && actives.length) { - activesData = actives.data('bs.collapse') - if (activesData && activesData.transitioning) return - } - - var startEvent = $.Event('show.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - if (actives && actives.length) { - Plugin.call(actives, 'hide') - activesData || actives.data('bs.collapse', null) - } - - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - .addClass('collapsing')[dimension](0) - .attr('aria-expanded', true) - - this.$trigger - .removeClass('collapsed') - .attr('aria-expanded', true) - - this.transitioning = 1 - - var complete = function () { - this.$element - .removeClass('collapsing') - .addClass('collapse in')[dimension]('') - this.transitioning = 0 - this.$element - .trigger('shown.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - var scrollSize = $.camelCase(['scroll', dimension].join('-')) - - this.$element - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) - } - - Collapse.prototype.hide = function () { - if (this.transitioning || !this.$element.hasClass('in')) return - - var startEvent = $.Event('hide.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var dimension = this.dimension() - - this.$element[dimension](this.$element[dimension]())[0].offsetHeight - - this.$element - .addClass('collapsing') - .removeClass('collapse in') - .attr('aria-expanded', false) - - this.$trigger - .addClass('collapsed') - .attr('aria-expanded', false) - - this.transitioning = 1 - - var complete = function () { - this.transitioning = 0 - this.$element - .removeClass('collapsing') - .addClass('collapse') - .trigger('hidden.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - this.$element - [dimension](0) - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION) - } - - Collapse.prototype.toggle = function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - Collapse.prototype.getParent = function () { - return $(this.options.parent) - .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') - .each($.proxy(function (i, element) { - var $element = $(element) - this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) - }, this)) - .end() - } - - Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { - var isOpen = $element.hasClass('in') - - $element.attr('aria-expanded', isOpen) - $trigger - .toggleClass('collapsed', !isOpen) - .attr('aria-expanded', isOpen) - } - - function getTargetFromTrigger($trigger) { - var href - var target = $trigger.attr('data-target') - || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 - - return $(target) - } - - - // COLLAPSE PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.collapse') - var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data && options.toggle && option == 'show') options.toggle = false - if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.collapse - - $.fn.collapse = Plugin - $.fn.collapse.Constructor = Collapse - - - // COLLAPSE NO CONFLICT - // ==================== - - $.fn.collapse.noConflict = function () { - $.fn.collapse = old - return this - } - - - // COLLAPSE DATA-API - // ================= - - $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { - var $this = $(this) - - if (!$this.attr('data-target')) e.preventDefault() - - var $target = getTargetFromTrigger($this) - var data = $target.data('bs.collapse') - var option = data ? 'toggle' : $.extend({}, $this.data(), { trigger: this }) - - Plugin.call($target, option) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: dropdown.js v3.3.1 - * http://getbootstrap.com/javascript/#dropdowns - * ======================================================================== - * Copyright 2011-2014 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // DROPDOWN CLASS DEFINITION - // ========================= - - var backdrop = '.dropdown-backdrop' - var toggle = '[data-toggle="dropdown"]' - var Dropdown = function (element) { - $(element).on('click.bs.dropdown', this.toggle) - } - - Dropdown.VERSION = '3.3.1' - - Dropdown.prototype.toggle = function (e) { - var $this = $(this) - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { - // if mobile we use a backdrop because click events don't delegate - $('