diff --git a/.gitignore b/.gitignore index a781ffd..d441595 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .DS_Store node_modules -**/dist # local env files .env.local diff --git a/dist/demo.html b/dist/demo.html new file mode 100644 index 0000000..6a35716 --- /dev/null +++ b/dist/demo.html @@ -0,0 +1,19 @@ + +vueCronEditorBootstrap demo + + + + + + +
+ +
+ + diff --git a/dist/vueCronEditorBootstrap.common.js b/dist/vueCronEditorBootstrap.common.js new file mode 100644 index 0000000..aa29043 --- /dev/null +++ b/dist/vueCronEditorBootstrap.common.js @@ -0,0 +1,22282 @@ +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; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); +/******/ } +/******/ }; +/******/ +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ +/******/ // create a fake namespace object +/******/ // mode & 1: value is a module id, require it +/******/ // mode & 2: merge all properties of value into the ns +/******/ // mode & 4: return value when already ns object +/******/ // mode & 8|1: behave like require +/******/ __webpack_require__.t = function(value, mode) { +/******/ if(mode & 1) value = __webpack_require__(value); +/******/ if(mode & 8) return value; +/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; +/******/ var ns = Object.create(null); +/******/ __webpack_require__.r(ns); +/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); +/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); +/******/ return ns; +/******/ }; +/******/ +/******/ // 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 = "fb15"); +/******/ }) +/************************************************************************/ +/******/ ({ + +/***/ "01a8": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(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); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +// This comes from the fact that parseInt trims characters coming +// after digits and consider it a valid int, so `1*` becomes `1`. +var safeParseInt = function (value) { + if (/^\d+$/.test(value)) { + return Number(value); + } + else { + return NaN; + } +}; +var isWildcard = function (value) { + return value === '*'; +}; +var isQuestionMark = function (value) { + return value === '?'; +}; +var isInRange = function (value, start, stop) { + return value >= start && value <= stop; +}; +var isValidRange = function (value, start, stop) { + var sides = value.split('-'); + switch (sides.length) { + case 1: + return isWildcard(value) || isInRange(safeParseInt(value), start, stop); + case 2: + var _a = sides.map(function (side) { return safeParseInt(side); }), small = _a[0], big = _a[1]; + return small <= big && isInRange(small, start, stop) && isInRange(big, start, stop); + default: + return false; + } +}; +var isValidStep = function (value) { + return value === undefined || value.search(/[^\d]/) === -1; +}; +var validateForRange = function (value, start, stop) { + if (value.search(/[^\d-,\/*]/) !== -1) { + return false; + } + var list = value.split(','); + return list.every(function (condition) { + var splits = condition.split('/'); + // Prevents `*/ * * * *` from being accepted. + if (condition.trim().endsWith('/')) { + return false; + } + // Prevents `*/*/* * * * *` from being accepted + if (splits.length > 2) { + return false; + } + // If we don't have a `/`, right will be undefined which is considered a valid step if we don't a `/`. + var left = splits[0], right = splits[1]; + return isValidRange(left, start, stop) && isValidStep(right); + }); +}; +var hasValidSeconds = function (seconds) { + return validateForRange(seconds, 0, 59); +}; +var hasValidMinutes = function (minutes) { + return validateForRange(minutes, 0, 59); +}; +var hasValidHours = function (hours) { + return validateForRange(hours, 0, 23); +}; +var hasValidDays = function (days, allowBlankDay) { + return (allowBlankDay && isQuestionMark(days)) || validateForRange(days, 1, 31); +}; +var monthAlias = { + jan: '1', + feb: '2', + mar: '3', + apr: '4', + may: '5', + jun: '6', + jul: '7', + aug: '8', + sep: '9', + oct: '10', + nov: '11', + dec: '12' +}; +var hasValidMonths = function (months, alias) { + // Prevents alias to be used as steps + if (months.search(/\/[a-zA-Z]/) !== -1) { + return false; + } + if (alias) { + var remappedMonths = months.toLowerCase().replace(/[a-z]{3}/g, function (match) { + return monthAlias[match] === undefined ? match : monthAlias[match]; + }); + // If any invalid alias was used, it won't pass the other checks as there will be non-numeric values in the months + return validateForRange(remappedMonths, 1, 12); + } + return validateForRange(months, 1, 12); +}; +var weekdaysAlias = { + sun: '0', + mon: '1', + tue: '2', + wed: '3', + thu: '4', + fri: '5', + sat: '6' +}; +var hasValidWeekdays = function (weekdays, alias, allowBlankDay) { + // If there is a question mark, checks if the allowBlankDay flag is set + if (allowBlankDay && isQuestionMark(weekdays)) { + return true; + } + else if (!allowBlankDay && isQuestionMark(weekdays)) { + return false; + } + // Prevents alias to be used as steps + if (weekdays.search(/\/[a-zA-Z]/) !== -1) { + return false; + } + if (alias) { + var remappedWeekdays = weekdays.toLowerCase().replace(/[a-z]{3}/g, function (match) { + return weekdaysAlias[match] === undefined ? match : weekdaysAlias[match]; + }); + // If any invalid alias was used, it won't pass the other checks as there will be non-numeric values in the weekdays + return validateForRange(remappedWeekdays, 0, 6); + } + return validateForRange(weekdays, 0, 6); +}; +var hasCompatibleDayFormat = function (days, weekdays, allowBlankDay) { + return !(allowBlankDay && isQuestionMark(days) && isQuestionMark(weekdays)); +}; +var split = function (cron) { + return cron.trim().split(/\s+/); +}; +var defaultOptions = { + alias: false, + seconds: false, + allowBlankDay: false +}; +exports.isValidCron = function (cron, options) { + options = __assign(__assign({}, defaultOptions), options); + var splits = split(cron); + if (splits.length > (options.seconds ? 6 : 5) || splits.length < 5) { + return false; + } + var checks = []; + if (splits.length === 6) { + var seconds = splits.shift(); + if (seconds) { + checks.push(hasValidSeconds(seconds)); + } + } + // We could only check the steps gradually and return false on the first invalid block, + // However, this won't have any performance impact so why bother for now. + var minutes = splits[0], hours = splits[1], days = splits[2], months = splits[3], weekdays = splits[4]; + checks.push(hasValidMinutes(minutes)); + checks.push(hasValidHours(hours)); + checks.push(hasValidDays(days, options.allowBlankDay)); + checks.push(hasValidMonths(months, options.alias)); + checks.push(hasValidWeekdays(weekdays, options.alias, options.allowBlankDay)); + checks.push(hasCompatibleDayFormat(days, weekdays, options.allowBlankDay)); + return checks.every(Boolean); +}; +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ "0366": +/***/ (function(module, exports, __webpack_require__) { + +var aFunction = __webpack_require__("1c0b"); + +// optional / simple context binding +module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 0: return function () { + return fn.call(that); + }; + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; +}; + + +/***/ }), + +/***/ "057f": +/***/ (function(module, exports, __webpack_require__) { + +var toIndexedObject = __webpack_require__("fc6a"); +var nativeGetOwnPropertyNames = __webpack_require__("241c").f; + +var toString = {}.toString; + +var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames + ? Object.getOwnPropertyNames(window) : []; + +var getWindowNames = function (it) { + try { + return nativeGetOwnPropertyNames(it); + } catch (error) { + return windowNames.slice(); + } +}; + +// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window +module.exports.f = function getOwnPropertyNames(it) { + return windowNames && toString.call(it) == '[object Window]' + ? getWindowNames(it) + : nativeGetOwnPropertyNames(toIndexedObject(it)); +}; + + +/***/ }), + +/***/ "06cf": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var propertyIsEnumerableModule = __webpack_require__("d1e7"); +var createPropertyDescriptor = __webpack_require__("5c6c"); +var toIndexedObject = __webpack_require__("fc6a"); +var toPrimitive = __webpack_require__("c04e"); +var has = __webpack_require__("5135"); +var IE8_DOM_DEFINE = __webpack_require__("0cfb"); + +var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + +// `Object.getOwnPropertyDescriptor` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor +exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) try { + return nativeGetOwnPropertyDescriptor(O, P); + } catch (error) { /* empty */ } + if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]); +}; + + +/***/ }), + +/***/ "0cfb": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var fails = __webpack_require__("d039"); +var createElement = __webpack_require__("cc12"); + +// Thank's IE8 for his funny defineProperty +module.exports = !DESCRIPTORS && !fails(function () { + return Object.defineProperty(createElement('div'), 'a', { + get: function () { return 7; } + }).a != 7; +}); + + +/***/ }), + +/***/ "122c": +/***/ (function(module, exports, __webpack_require__) { + +(function webpackUniversalModuleDefinition(root, factory) { + if(true) + module.exports = factory(); + else {} +})(typeof self !== 'undefined' ? self : this, function() { +return /******/ (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; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); +/******/ } +/******/ }; +/******/ +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ +/******/ // create a fake namespace object +/******/ // mode & 1: value is a module id, require it +/******/ // mode & 2: merge all properties of value into the ns +/******/ // mode & 4: return value when already ns object +/******/ // mode & 8|1: behave like require +/******/ __webpack_require__.t = function(value, mode) { +/******/ if(mode & 1) value = __webpack_require__(value); +/******/ if(mode & 8) return value; +/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; +/******/ var ns = Object.create(null); +/******/ __webpack_require__.r(ns); +/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); +/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); +/******/ return ns; +/******/ }; +/******/ +/******/ // 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 = 6); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var stringUtilities_1 = __webpack_require__(1); +var cronParser_1 = __webpack_require__(2); +var ExpressionDescriptor = (function () { + function ExpressionDescriptor(expression, options) { + this.expression = expression; + this.options = options; + this.expressionParts = new Array(5); + if (ExpressionDescriptor.locales[options.locale]) { + this.i18n = ExpressionDescriptor.locales[options.locale]; + } + else { + console.warn("Locale '" + options.locale + "' could not be found; falling back to 'en'."); + this.i18n = ExpressionDescriptor.locales["en"]; + } + if (options.use24HourTimeFormat === undefined) { + options.use24HourTimeFormat = this.i18n.use24HourTimeFormatByDefault(); + } + } + ExpressionDescriptor.toString = function (expression, _a) { + var _b = _a === void 0 ? {} : _a, _c = _b.throwExceptionOnParseError, throwExceptionOnParseError = _c === void 0 ? true : _c, _d = _b.verbose, verbose = _d === void 0 ? false : _d, _e = _b.dayOfWeekStartIndexZero, dayOfWeekStartIndexZero = _e === void 0 ? true : _e, use24HourTimeFormat = _b.use24HourTimeFormat, _f = _b.locale, locale = _f === void 0 ? "en" : _f; + var options = { + throwExceptionOnParseError: throwExceptionOnParseError, + verbose: verbose, + dayOfWeekStartIndexZero: dayOfWeekStartIndexZero, + use24HourTimeFormat: use24HourTimeFormat, + locale: locale + }; + var descripter = new ExpressionDescriptor(expression, options); + return descripter.getFullDescription(); + }; + ExpressionDescriptor.initialize = function (localesLoader) { + ExpressionDescriptor.specialCharacters = ["/", "-", ",", "*"]; + localesLoader.load(ExpressionDescriptor.locales); + }; + ExpressionDescriptor.prototype.getFullDescription = function () { + var description = ""; + try { + var parser = new cronParser_1.CronParser(this.expression, this.options.dayOfWeekStartIndexZero); + this.expressionParts = parser.parse(); + var timeSegment = this.getTimeOfDayDescription(); + var dayOfMonthDesc = this.getDayOfMonthDescription(); + var monthDesc = this.getMonthDescription(); + var dayOfWeekDesc = this.getDayOfWeekDescription(); + var yearDesc = this.getYearDescription(); + description += timeSegment + dayOfMonthDesc + dayOfWeekDesc + monthDesc + yearDesc; + description = this.transformVerbosity(description, this.options.verbose); + description = description.charAt(0).toLocaleUpperCase() + description.substr(1); + } + catch (ex) { + if (!this.options.throwExceptionOnParseError) { + description = this.i18n.anErrorOccuredWhenGeneratingTheExpressionD(); + } + else { + throw "" + ex; + } + } + return description; + }; + ExpressionDescriptor.prototype.getTimeOfDayDescription = function () { + var secondsExpression = this.expressionParts[0]; + var minuteExpression = this.expressionParts[1]; + var hourExpression = this.expressionParts[2]; + var description = ""; + if (!stringUtilities_1.StringUtilities.containsAny(minuteExpression, ExpressionDescriptor.specialCharacters) && + !stringUtilities_1.StringUtilities.containsAny(hourExpression, ExpressionDescriptor.specialCharacters) && + !stringUtilities_1.StringUtilities.containsAny(secondsExpression, ExpressionDescriptor.specialCharacters)) { + description += this.i18n.atSpace() + this.formatTime(hourExpression, minuteExpression, secondsExpression); + } + else if (!secondsExpression && + minuteExpression.indexOf("-") > -1 && + !(minuteExpression.indexOf(",") > -1) && + !(minuteExpression.indexOf("/") > -1) && + !stringUtilities_1.StringUtilities.containsAny(hourExpression, ExpressionDescriptor.specialCharacters)) { + var minuteParts = minuteExpression.split("-"); + description += stringUtilities_1.StringUtilities.format(this.i18n.everyMinuteBetweenX0AndX1(), this.formatTime(hourExpression, minuteParts[0], ""), this.formatTime(hourExpression, minuteParts[1], "")); + } + else if (!secondsExpression && + hourExpression.indexOf(",") > -1 && + hourExpression.indexOf("-") == -1 && + hourExpression.indexOf("/") == -1 && + !stringUtilities_1.StringUtilities.containsAny(minuteExpression, ExpressionDescriptor.specialCharacters)) { + var hourParts = hourExpression.split(","); + description += this.i18n.at(); + for (var i = 0; i < hourParts.length; i++) { + description += " "; + description += this.formatTime(hourParts[i], minuteExpression, ""); + if (i < hourParts.length - 2) { + description += ","; + } + if (i == hourParts.length - 2) { + description += this.i18n.spaceAnd(); + } + } + } + else { + var secondsDescription = this.getSecondsDescription(); + var minutesDescription = this.getMinutesDescription(); + var hoursDescription = this.getHoursDescription(); + description += secondsDescription; + if (description.length > 0 && minutesDescription.length > 0) { + description += ", "; + } + description += minutesDescription; + if (description.length > 0 && hoursDescription.length > 0) { + description += ", "; + } + description += hoursDescription; + } + return description; + }; + ExpressionDescriptor.prototype.getSecondsDescription = function () { + var _this = this; + var description = this.getSegmentDescription(this.expressionParts[0], this.i18n.everySecond(), function (s) { + return s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Seconds(), s); + }, function (s) { + return _this.i18n.secondsX0ThroughX1PastTheMinute(); + }, function (s) { + return s == "0" + ? "" + : parseInt(s) < 20 + ? _this.i18n.atX0SecondsPastTheMinute() + : _this.i18n.atX0SecondsPastTheMinuteGt20() || _this.i18n.atX0SecondsPastTheMinute(); + }); + return description; + }; + ExpressionDescriptor.prototype.getMinutesDescription = function () { + var _this = this; + var secondsExpression = this.expressionParts[0]; + var hourExpression = this.expressionParts[2]; + var description = this.getSegmentDescription(this.expressionParts[1], this.i18n.everyMinute(), function (s) { + return s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Minutes(), s); + }, function (s) { + return _this.i18n.minutesX0ThroughX1PastTheHour(); + }, function (s) { + try { + return s == "0" && hourExpression.indexOf("/") == -1 && secondsExpression == "" + ? _this.i18n.everyHour() + : parseInt(s) < 20 + ? _this.i18n.atX0MinutesPastTheHour() + : _this.i18n.atX0MinutesPastTheHourGt20() || _this.i18n.atX0MinutesPastTheHour(); + } + catch (e) { + return _this.i18n.atX0MinutesPastTheHour(); + } + }); + return description; + }; + ExpressionDescriptor.prototype.getHoursDescription = function () { + var _this = this; + var expression = this.expressionParts[2]; + var description = this.getSegmentDescription(expression, this.i18n.everyHour(), function (s) { + return _this.formatTime(s, "0", ""); + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Hours(), s); + }, function (s) { + return _this.i18n.betweenX0AndX1(); + }, function (s) { + return _this.i18n.atX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getDayOfWeekDescription = function () { + var _this = this; + var daysOfWeekNames = this.i18n.daysOfTheWeek(); + var description = null; + if (this.expressionParts[5] == "*") { + description = ""; + } + else { + description = this.getSegmentDescription(this.expressionParts[5], this.i18n.commaEveryDay(), function (s) { + var exp = s; + if (s.indexOf("#") > -1) { + exp = s.substr(0, s.indexOf("#")); + } + else if (s.indexOf("L") > -1) { + exp = exp.replace("L", ""); + } + return daysOfWeekNames[parseInt(exp)]; + }, function (s) { + if (parseInt(s) == 1) { + return ""; + } + else { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0DaysOfTheWeek(), s); + } + }, function (s) { + return _this.i18n.commaX0ThroughX1(); + }, function (s) { + var format = null; + if (s.indexOf("#") > -1) { + var dayOfWeekOfMonthNumber = s.substring(s.indexOf("#") + 1); + var dayOfWeekOfMonthDescription = null; + switch (dayOfWeekOfMonthNumber) { + case "1": + dayOfWeekOfMonthDescription = _this.i18n.first(); + break; + case "2": + dayOfWeekOfMonthDescription = _this.i18n.second(); + break; + case "3": + dayOfWeekOfMonthDescription = _this.i18n.third(); + break; + case "4": + dayOfWeekOfMonthDescription = _this.i18n.fourth(); + break; + case "5": + dayOfWeekOfMonthDescription = _this.i18n.fifth(); + break; + } + format = _this.i18n.commaOnThe() + dayOfWeekOfMonthDescription + _this.i18n.spaceX0OfTheMonth(); + } + else if (s.indexOf("L") > -1) { + format = _this.i18n.commaOnTheLastX0OfTheMonth(); + } + else { + var domSpecified = _this.expressionParts[3] != "*"; + format = domSpecified ? _this.i18n.commaAndOnX0() : _this.i18n.commaOnlyOnX0(); + } + return format; + }); + } + return description; + }; + ExpressionDescriptor.prototype.getMonthDescription = function () { + var _this = this; + var monthNames = this.i18n.monthsOfTheYear(); + var description = this.getSegmentDescription(this.expressionParts[4], "", function (s) { + return monthNames[parseInt(s) - 1]; + }, function (s) { + if (parseInt(s) == 1) { + return ""; + } + else { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0Months(), s); + } + }, function (s) { + return _this.i18n.commaMonthX0ThroughMonthX1() || _this.i18n.commaX0ThroughX1(); + }, function (s) { + return _this.i18n.commaOnlyInMonthX0 ? _this.i18n.commaOnlyInMonthX0() : _this.i18n.commaOnlyInX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getDayOfMonthDescription = function () { + var _this = this; + var description = null; + var expression = this.expressionParts[3]; + switch (expression) { + case "L": + description = this.i18n.commaOnTheLastDayOfTheMonth(); + break; + case "WL": + case "LW": + description = this.i18n.commaOnTheLastWeekdayOfTheMonth(); + break; + default: + var weekDayNumberMatches = expression.match(/(\d{1,2}W)|(W\d{1,2})/); + if (weekDayNumberMatches) { + var dayNumber = parseInt(weekDayNumberMatches[0].replace("W", "")); + var dayString = dayNumber == 1 + ? this.i18n.firstWeekday() + : stringUtilities_1.StringUtilities.format(this.i18n.weekdayNearestDayX0(), dayNumber.toString()); + description = stringUtilities_1.StringUtilities.format(this.i18n.commaOnTheX0OfTheMonth(), dayString); + break; + } + else { + var lastDayOffSetMatches = expression.match(/L-(\d{1,2})/); + if (lastDayOffSetMatches) { + var offSetDays = lastDayOffSetMatches[1]; + description = stringUtilities_1.StringUtilities.format(this.i18n.commaDaysBeforeTheLastDayOfTheMonth(), offSetDays); + break; + } + else if (expression == "*" && this.expressionParts[5] != "*") { + return ""; + } + else { + description = this.getSegmentDescription(expression, this.i18n.commaEveryDay(), function (s) { + return s == "L" ? _this.i18n.lastDay() : ((_this.i18n.dayX0) ? stringUtilities_1.StringUtilities.format(_this.i18n.dayX0(), s) : s); + }, function (s) { + return s == "1" ? _this.i18n.commaEveryDay() : _this.i18n.commaEveryX0Days(); + }, function (s) { + return _this.i18n.commaBetweenDayX0AndX1OfTheMonth(); + }, function (s) { + return _this.i18n.commaOnDayX0OfTheMonth(); + }); + } + break; + } + } + return description; + }; + ExpressionDescriptor.prototype.getYearDescription = function () { + var _this = this; + var description = this.getSegmentDescription(this.expressionParts[6], "", function (s) { + return /^\d+$/.test(s) ? new Date(parseInt(s), 1).getFullYear().toString() : s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0Years(), s); + }, function (s) { + return _this.i18n.commaYearX0ThroughYearX1() || _this.i18n.commaX0ThroughX1(); + }, function (s) { + return _this.i18n.commaOnlyInYearX0 ? _this.i18n.commaOnlyInYearX0() : _this.i18n.commaOnlyInX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getSegmentDescription = function (expression, allDescription, getSingleItemDescription, getIntervalDescriptionFormat, getBetweenDescriptionFormat, getDescriptionFormat) { + var _this = this; + var description = null; + if (!expression) { + description = ""; + } + else if (expression === "*") { + description = allDescription; + } + else if (!stringUtilities_1.StringUtilities.containsAny(expression, ["/", "-", ","])) { + description = stringUtilities_1.StringUtilities.format(getDescriptionFormat(expression), getSingleItemDescription(expression)); + } + else if (expression.indexOf("/") > -1) { + var segments = expression.split("/"); + description = stringUtilities_1.StringUtilities.format(getIntervalDescriptionFormat(segments[1]), segments[1]); + if (segments[0].indexOf("-") > -1) { + var betweenSegmentDescription = this.generateBetweenSegmentDescription(segments[0], getBetweenDescriptionFormat, getSingleItemDescription); + if (betweenSegmentDescription.indexOf(", ") != 0) { + description += ", "; + } + description += betweenSegmentDescription; + } + else if (!stringUtilities_1.StringUtilities.containsAny(segments[0], ["*", ","])) { + var rangeItemDescription = stringUtilities_1.StringUtilities.format(getDescriptionFormat(segments[0]), getSingleItemDescription(segments[0])); + rangeItemDescription = rangeItemDescription.replace(", ", ""); + description += stringUtilities_1.StringUtilities.format(this.i18n.commaStartingX0(), rangeItemDescription); + } + } + else if (expression.indexOf(",") > -1) { + var segments = expression.split(","); + var descriptionContent = ""; + for (var i = 0; i < segments.length; i++) { + if (i > 0 && segments.length > 2) { + descriptionContent += ","; + if (i < segments.length - 1) { + descriptionContent += " "; + } + } + if (i > 0 && segments.length > 1 && (i == segments.length - 1 || segments.length == 2)) { + descriptionContent += this.i18n.spaceAnd() + " "; + } + if (segments[i].indexOf("-") > -1) { + var betweenSegmentDescription = this.generateBetweenSegmentDescription(segments[i], function (s) { + return _this.i18n.commaX0ThroughX1(); + }, getSingleItemDescription); + betweenSegmentDescription = betweenSegmentDescription.replace(", ", ""); + descriptionContent += betweenSegmentDescription; + } + else { + descriptionContent += getSingleItemDescription(segments[i]); + } + } + description = stringUtilities_1.StringUtilities.format(getDescriptionFormat(expression), descriptionContent); + } + else if (expression.indexOf("-") > -1) { + description = this.generateBetweenSegmentDescription(expression, getBetweenDescriptionFormat, getSingleItemDescription); + } + return description; + }; + ExpressionDescriptor.prototype.generateBetweenSegmentDescription = function (betweenExpression, getBetweenDescriptionFormat, getSingleItemDescription) { + var description = ""; + var betweenSegments = betweenExpression.split("-"); + var betweenSegment1Description = getSingleItemDescription(betweenSegments[0]); + var betweenSegment2Description = getSingleItemDescription(betweenSegments[1]); + betweenSegment2Description = betweenSegment2Description.replace(":00", ":59"); + var betweenDescriptionFormat = getBetweenDescriptionFormat(betweenExpression); + description += stringUtilities_1.StringUtilities.format(betweenDescriptionFormat, betweenSegment1Description, betweenSegment2Description); + return description; + }; + ExpressionDescriptor.prototype.formatTime = function (hourExpression, minuteExpression, secondExpression) { + var hour = parseInt(hourExpression); + var period = ""; + var setPeriodBeforeTime = false; + if (!this.options.use24HourTimeFormat) { + setPeriodBeforeTime = this.i18n.setPeriodBeforeTime && this.i18n.setPeriodBeforeTime(); + period = setPeriodBeforeTime ? this.getPeriod(hour) + " " : " " + this.getPeriod(hour); + if (hour > 12) { + hour -= 12; + } + if (hour === 0) { + hour = 12; + } + } + var minute = minuteExpression; + var second = ""; + if (secondExpression) { + second = ":" + ("00" + secondExpression).substring(secondExpression.length); + } + return "" + (setPeriodBeforeTime ? period : "") + ("00" + hour.toString()).substring(hour.toString().length) + ":" + ("00" + minute.toString()).substring(minute.toString().length) + second + (!setPeriodBeforeTime ? period : ""); + }; + ExpressionDescriptor.prototype.transformVerbosity = function (description, useVerboseFormat) { + if (!useVerboseFormat) { + description = description.replace(new RegExp(", " + this.i18n.everyMinute(), "g"), ""); + description = description.replace(new RegExp(", " + this.i18n.everyHour(), "g"), ""); + description = description.replace(new RegExp(this.i18n.commaEveryDay(), "g"), ""); + description = description.replace(/\, ?$/, ""); + } + return description; + }; + ExpressionDescriptor.prototype.getPeriod = function (hour) { + return hour >= 12 ? this.i18n.pm && this.i18n.pm() || "PM" : this.i18n.am && this.i18n.am() || "AM"; + }; + ExpressionDescriptor.locales = {}; + return ExpressionDescriptor; +}()); +exports.ExpressionDescriptor = ExpressionDescriptor; + + +/***/ }), +/* 1 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var StringUtilities = (function () { + function StringUtilities() { + } + StringUtilities.format = function (template) { + var values = []; + for (var _i = 1; _i < arguments.length; _i++) { + values[_i - 1] = arguments[_i]; + } + return template.replace(/%s/g, function () { + return values.shift(); + }); + }; + StringUtilities.containsAny = function (text, searchStrings) { + return searchStrings.some(function (c) { + return text.indexOf(c) > -1; + }); + }; + return StringUtilities; +}()); +exports.StringUtilities = StringUtilities; + + +/***/ }), +/* 2 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var CronParser = (function () { + function CronParser(expression, dayOfWeekStartIndexZero) { + if (dayOfWeekStartIndexZero === void 0) { dayOfWeekStartIndexZero = true; } + this.expression = expression; + this.dayOfWeekStartIndexZero = dayOfWeekStartIndexZero; + } + CronParser.prototype.parse = function () { + var parsed = this.extractParts(this.expression); + this.normalize(parsed); + this.validate(parsed); + return parsed; + }; + CronParser.prototype.extractParts = function (expression) { + if (!this.expression) { + throw new Error("Expression is empty"); + } + var parsed = expression.trim().split(/[ ]+/); + if (parsed.length < 5) { + throw new Error("Expression has only " + parsed.length + " part" + (parsed.length == 1 ? "" : "s") + ". At least 5 parts are required."); + } + else if (parsed.length == 5) { + parsed.unshift(""); + parsed.push(""); + } + else if (parsed.length == 6) { + if (/\d{4}$/.test(parsed[5])) { + parsed.unshift(""); + } + else { + parsed.push(""); + } + } + else if (parsed.length > 7) { + throw new Error("Expression has " + parsed.length + " parts; too many!"); + } + return parsed; + }; + CronParser.prototype.normalize = function (expressionParts) { + var _this = this; + expressionParts[3] = expressionParts[3].replace("?", "*"); + expressionParts[5] = expressionParts[5].replace("?", "*"); + expressionParts[2] = expressionParts[2].replace("?", "*"); + if (expressionParts[0].indexOf("0/") == 0) { + expressionParts[0] = expressionParts[0].replace("0/", "*/"); + } + if (expressionParts[1].indexOf("0/") == 0) { + expressionParts[1] = expressionParts[1].replace("0/", "*/"); + } + if (expressionParts[2].indexOf("0/") == 0) { + expressionParts[2] = expressionParts[2].replace("0/", "*/"); + } + if (expressionParts[3].indexOf("1/") == 0) { + expressionParts[3] = expressionParts[3].replace("1/", "*/"); + } + if (expressionParts[4].indexOf("1/") == 0) { + expressionParts[4] = expressionParts[4].replace("1/", "*/"); + } + if (expressionParts[5].indexOf("1/") == 0) { + expressionParts[5] = expressionParts[5].replace("1/", "*/"); + } + if (expressionParts[6].indexOf("1/") == 0) { + expressionParts[6] = expressionParts[6].replace("1/", "*/"); + } + expressionParts[5] = expressionParts[5].replace(/(^\d)|([^#/\s]\d)/g, function (t) { + var dowDigits = t.replace(/\D/, ""); + var dowDigitsAdjusted = dowDigits; + if (_this.dayOfWeekStartIndexZero) { + if (dowDigits == "7") { + dowDigitsAdjusted = "0"; + } + } + else { + dowDigitsAdjusted = (parseInt(dowDigits) - 1).toString(); + } + return t.replace(dowDigits, dowDigitsAdjusted); + }); + if (expressionParts[5] == "L") { + expressionParts[5] = "6"; + } + if (expressionParts[3] == "?") { + expressionParts[3] = "*"; + } + if (expressionParts[3].indexOf("W") > -1 && + (expressionParts[3].indexOf(",") > -1 || expressionParts[3].indexOf("-") > -1)) { + throw new Error("The 'W' character can be specified only when the day-of-month is a single day, not a range or list of days."); + } + var days = { + SUN: 0, + MON: 1, + TUE: 2, + WED: 3, + THU: 4, + FRI: 5, + SAT: 6 + }; + for (var day in days) { + expressionParts[5] = expressionParts[5].replace(new RegExp(day, "gi"), days[day].toString()); + } + var months = { + JAN: 1, + FEB: 2, + MAR: 3, + APR: 4, + MAY: 5, + JUN: 6, + JUL: 7, + AUG: 8, + SEP: 9, + OCT: 10, + NOV: 11, + DEC: 12 + }; + for (var month in months) { + expressionParts[4] = expressionParts[4].replace(new RegExp(month, "gi"), months[month].toString()); + } + if (expressionParts[0] == "0") { + expressionParts[0] = ""; + } + if (!/\*|\-|\,|\//.test(expressionParts[2]) && + (/\*|\//.test(expressionParts[1]) || /\*|\//.test(expressionParts[0]))) { + expressionParts[2] += "-" + expressionParts[2]; + } + for (var i = 0; i < expressionParts.length; i++) { + if (expressionParts[i] == "*/1") { + expressionParts[i] = "*"; + } + if (expressionParts[i].indexOf("/") > -1 && !/^\*|\-|\,/.test(expressionParts[i])) { + var stepRangeThrough = null; + switch (i) { + case 4: + stepRangeThrough = "12"; + break; + case 5: + stepRangeThrough = "6"; + break; + case 6: + stepRangeThrough = "9999"; + break; + default: + stepRangeThrough = null; + break; + } + if (stepRangeThrough != null) { + var parts = expressionParts[i].split("/"); + expressionParts[i] = parts[0] + "-" + stepRangeThrough + "/" + parts[1]; + } + } + } + }; + CronParser.prototype.validate = function (parsed) { + this.assertNoInvalidCharacters("DOW", parsed[5]); + this.assertNoInvalidCharacters("DOM", parsed[3]); + }; + CronParser.prototype.assertNoInvalidCharacters = function (partDescription, expression) { + var invalidChars = expression.match(/[A-KM-VX-Z]+/gi); + if (invalidChars && invalidChars.length) { + throw new Error(partDescription + " part contains invalid values: '" + invalidChars.toString() + "'"); + } + }; + return CronParser; +}()); +exports.CronParser = CronParser; + + +/***/ }), +/* 3 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var en = (function () { + function en() { + } + en.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + en.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + en.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + en.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + en.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + en.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "An error occured when generating the expression description. Check the cron expression syntax."; + }; + en.prototype.everyMinute = function () { + return "every minute"; + }; + en.prototype.everyHour = function () { + return "every hour"; + }; + en.prototype.atSpace = function () { + return "At "; + }; + en.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Every minute between %s and %s"; + }; + en.prototype.at = function () { + return "At"; + }; + en.prototype.spaceAnd = function () { + return " and"; + }; + en.prototype.everySecond = function () { + return "every second"; + }; + en.prototype.everyX0Seconds = function () { + return "every %s seconds"; + }; + en.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "seconds %s through %s past the minute"; + }; + en.prototype.atX0SecondsPastTheMinute = function () { + return "at %s seconds past the minute"; + }; + en.prototype.everyX0Minutes = function () { + return "every %s minutes"; + }; + en.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutes %s through %s past the hour"; + }; + en.prototype.atX0MinutesPastTheHour = function () { + return "at %s minutes past the hour"; + }; + en.prototype.everyX0Hours = function () { + return "every %s hours"; + }; + en.prototype.betweenX0AndX1 = function () { + return "between %s and %s"; + }; + en.prototype.atX0 = function () { + return "at %s"; + }; + en.prototype.commaEveryDay = function () { + return ", every day"; + }; + en.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", every %s days of the week"; + }; + en.prototype.commaX0ThroughX1 = function () { + return ", %s through %s"; + }; + en.prototype.first = function () { + return "first"; + }; + en.prototype.second = function () { + return "second"; + }; + en.prototype.third = function () { + return "third"; + }; + en.prototype.fourth = function () { + return "fourth"; + }; + en.prototype.fifth = function () { + return "fifth"; + }; + en.prototype.commaOnThe = function () { + return ", on the "; + }; + en.prototype.spaceX0OfTheMonth = function () { + return " %s of the month"; + }; + en.prototype.lastDay = function () { + return "the last day"; + }; + en.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", on the last %s of the month"; + }; + en.prototype.commaOnlyOnX0 = function () { + return ", only on %s"; + }; + en.prototype.commaAndOnX0 = function () { + return ", and on %s"; + }; + en.prototype.commaEveryX0Months = function () { + return ", every %s months"; + }; + en.prototype.commaOnlyInX0 = function () { + return ", only in %s"; + }; + en.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", on the last day of the month"; + }; + en.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", on the last weekday of the month"; + }; + en.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s days before the last day of the month"; + }; + en.prototype.firstWeekday = function () { + return "first weekday"; + }; + en.prototype.weekdayNearestDayX0 = function () { + return "weekday nearest day %s"; + }; + en.prototype.commaOnTheX0OfTheMonth = function () { + return ", on the %s of the month"; + }; + en.prototype.commaEveryX0Days = function () { + return ", every %s days"; + }; + en.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", between day %s and %s of the month"; + }; + en.prototype.commaOnDayX0OfTheMonth = function () { + return ", on day %s of the month"; + }; + en.prototype.commaEveryHour = function () { + return ", every hour"; + }; + en.prototype.commaEveryX0Years = function () { + return ", every %s years"; + }; + en.prototype.commaStartingX0 = function () { + return ", starting %s"; + }; + en.prototype.daysOfTheWeek = function () { + return ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; + }; + en.prototype.monthsOfTheYear = function () { + return [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ]; + }; + return en; +}()); +exports.en = en; + + +/***/ }), +/* 4 */, +/* 5 */, +/* 6 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var expressionDescriptor_1 = __webpack_require__(0); +var allLocalesLoader_1 = __webpack_require__(7); +expressionDescriptor_1.ExpressionDescriptor.initialize(new allLocalesLoader_1.allLocalesLoader()); +exports.default = expressionDescriptor_1.ExpressionDescriptor; +var toString = expressionDescriptor_1.ExpressionDescriptor.toString; +exports.toString = toString; + + +/***/ }), +/* 7 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var allLocales = __webpack_require__(8); +var allLocalesLoader = (function () { + function allLocalesLoader() { + } + allLocalesLoader.prototype.load = function (availableLocales) { + for (var property in allLocales) { + if (allLocales.hasOwnProperty(property)) { + availableLocales[property] = new allLocales[property](); + } + } + }; + return allLocalesLoader; +}()); +exports.allLocalesLoader = allLocalesLoader; + + +/***/ }), +/* 8 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var en_1 = __webpack_require__(3); +exports.en = en_1.en; +var da_1 = __webpack_require__(9); +exports.da = da_1.da; +var de_1 = __webpack_require__(10); +exports.de = de_1.de; +var es_1 = __webpack_require__(11); +exports.es = es_1.es; +var fr_1 = __webpack_require__(12); +exports.fr = fr_1.fr; +var it_1 = __webpack_require__(13); +exports.it = it_1.it; +var ko_1 = __webpack_require__(14); +exports.ko = ko_1.ko; +var nl_1 = __webpack_require__(15); +exports.nl = nl_1.nl; +var nb_1 = __webpack_require__(16); +exports.nb = nb_1.nb; +var sv_1 = __webpack_require__(17); +exports.sv = sv_1.sv; +var pl_1 = __webpack_require__(18); +exports.pl = pl_1.pl; +var pt_BR_1 = __webpack_require__(19); +exports.pt_BR = pt_BR_1.pt_BR; +var ro_1 = __webpack_require__(20); +exports.ro = ro_1.ro; +var ru_1 = __webpack_require__(21); +exports.ru = ru_1.ru; +var tr_1 = __webpack_require__(22); +exports.tr = tr_1.tr; +var uk_1 = __webpack_require__(23); +exports.uk = uk_1.uk; +var zh_CN_1 = __webpack_require__(24); +exports.zh_CN = zh_CN_1.zh_CN; +var zh_TW_1 = __webpack_require__(25); +exports.zh_TW = zh_TW_1.zh_TW; +var ja_1 = __webpack_require__(26); +exports.ja = ja_1.ja; +var he_1 = __webpack_require__(27); +exports.he = he_1.he; +var cs_1 = __webpack_require__(28); +exports.cs = cs_1.cs; +var sk_1 = __webpack_require__(29); +exports.sk = sk_1.sk; +var fi_1 = __webpack_require__(30); +exports.fi = fi_1.fi; +var sl_1 = __webpack_require__(31); +exports.sl = sl_1.sl; +var sw_1 = __webpack_require__(32); +exports.sw = sw_1.sw; +var fa_1 = __webpack_require__(33); +exports.fa = fa_1.fa; + + +/***/ }), +/* 9 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var da = (function () { + function da() { + } + da.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + da.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."; + }; + da.prototype.at = function () { + return "kl"; + }; + da.prototype.atSpace = function () { + return "kl "; + }; + da.prototype.atX0 = function () { + return "kl %s"; + }; + da.prototype.atX0MinutesPastTheHour = function () { + return "%s minutter efter timeskift"; + }; + da.prototype.atX0SecondsPastTheMinute = function () { + return "%s sekunder efter minutskift"; + }; + da.prototype.betweenX0AndX1 = function () { + return "mellem %s og %s"; + }; + da.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellem dag %s og %s i måneden"; + }; + da.prototype.commaEveryDay = function () { + return ", hver dag"; + }; + da.prototype.commaEveryX0Days = function () { + return ", hver %s. dag"; + }; + da.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", hver %s. ugedag"; + }; + da.prototype.commaEveryX0Months = function () { + return ", hver %s. måned"; + }; + da.prototype.commaEveryX0Years = function () { + return ", hvert %s. år"; + }; + da.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s i måneden"; + }; + da.prototype.commaOnlyInX0 = function () { + return ", kun i %s"; + }; + da.prototype.commaOnlyOnX0 = function () { + return ", kun på %s"; + }; + da.prototype.commaAndOnX0 = function () { + return ", og på %s"; + }; + da.prototype.commaOnThe = function () { + return ", på den "; + }; + da.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på den sidste dag i måneden"; + }; + da.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", på den sidste hverdag i måneden"; + }; + da.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dage før den sidste dag i måneden"; + }; + da.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på den sidste %s i måneden"; + }; + da.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s i måneden"; + }; + da.prototype.commaX0ThroughX1 = function () { + return ", %s til og med %s"; + }; + da.prototype.everyHour = function () { + return "hver time"; + }; + da.prototype.everyMinute = function () { + return "hvert minut"; + }; + da.prototype.everyMinuteBetweenX0AndX1 = function () { + return "hvert minut mellem %s og %s"; + }; + da.prototype.everySecond = function () { + return "hvert sekund"; + }; + da.prototype.everyX0Hours = function () { + return "hver %s. time"; + }; + da.prototype.everyX0Minutes = function () { + return "hvert %s. minut"; + }; + da.prototype.everyX0Seconds = function () { + return "hvert %s. sekund"; + }; + da.prototype.fifth = function () { + return "femte"; + }; + da.prototype.first = function () { + return "første"; + }; + da.prototype.firstWeekday = function () { + return "første hverdag"; + }; + da.prototype.fourth = function () { + return "fjerde"; + }; + da.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutterne fra %s til og med %s hver time"; + }; + da.prototype.second = function () { + return "anden"; + }; + da.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunderne fra %s til og med %s hvert minut"; + }; + da.prototype.spaceAnd = function () { + return " og"; + }; + da.prototype.spaceX0OfTheMonth = function () { + return " %s i måneden"; + }; + da.prototype.lastDay = function () { + return "sidste dag"; + }; + da.prototype.third = function () { + return "tredje"; + }; + da.prototype.weekdayNearestDayX0 = function () { + return "hverdag nærmest dag %s"; + }; + da.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + da.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + da.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + da.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + da.prototype.commaStartingX0 = function () { + return ", startende %s"; + }; + da.prototype.daysOfTheWeek = function () { + return ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"]; + }; + da.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "marts", + "april", + "maj", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "december" + ]; + }; + return da; +}()); +exports.da = da; + + +/***/ }), +/* 10 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var de = (function () { + function de() { + } + de.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + de.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + de.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + de.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + de.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + de.prototype.everyMinute = function () { + return "jede Minute"; + }; + de.prototype.everyHour = function () { + return "jede Stunde"; + }; + de.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."; + }; + de.prototype.atSpace = function () { + return "Um "; + }; + de.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Jede Minute zwischen %s und %s"; + }; + de.prototype.at = function () { + return "Um"; + }; + de.prototype.spaceAnd = function () { + return " und"; + }; + de.prototype.everySecond = function () { + return "Jede Sekunde"; + }; + de.prototype.everyX0Seconds = function () { + return "alle %s Sekunden"; + }; + de.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "Sekunden %s bis %s"; + }; + de.prototype.atX0SecondsPastTheMinute = function () { + return "bei Sekunde %s"; + }; + de.prototype.everyX0Minutes = function () { + return "alle %s Minuten"; + }; + de.prototype.minutesX0ThroughX1PastTheHour = function () { + return "Minuten %s bis %s"; + }; + de.prototype.atX0MinutesPastTheHour = function () { + return "bei Minute %s"; + }; + de.prototype.everyX0Hours = function () { + return "alle %s Stunden"; + }; + de.prototype.betweenX0AndX1 = function () { + return "zwischen %s und %s"; + }; + de.prototype.atX0 = function () { + return "um %s"; + }; + de.prototype.commaEveryDay = function () { + return ", jeden Tag"; + }; + de.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", alle %s Tage der Woche"; + }; + de.prototype.commaX0ThroughX1 = function () { + return ", %s bis %s"; + }; + de.prototype.first = function () { + return "ersten"; + }; + de.prototype.second = function () { + return "zweiten"; + }; + de.prototype.third = function () { + return "dritten"; + }; + de.prototype.fourth = function () { + return "vierten"; + }; + de.prototype.fifth = function () { + return "fünften"; + }; + de.prototype.commaOnThe = function () { + return ", am "; + }; + de.prototype.spaceX0OfTheMonth = function () { + return " %s des Monats"; + }; + de.prototype.lastDay = function () { + return "der letzte Tag"; + }; + de.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", am letzten %s des Monats"; + }; + de.prototype.commaOnlyOnX0 = function () { + return ", nur am %s"; + }; + de.prototype.commaAndOnX0 = function () { + return ", und am %s"; + }; + de.prototype.commaEveryX0Months = function () { + return ", alle %s Monate"; + }; + de.prototype.commaOnlyInX0 = function () { + return ", nur im %s"; + }; + de.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", am letzten Tag des Monats"; + }; + de.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", am letzten Werktag des Monats"; + }; + de.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s tage vor dem letzten Tag des Monats"; + }; + de.prototype.firstWeekday = function () { + return "ersten Werktag"; + }; + de.prototype.weekdayNearestDayX0 = function () { + return "Werktag am nächsten zum %s Tag"; + }; + de.prototype.commaOnTheX0OfTheMonth = function () { + return ", am %s des Monats"; + }; + de.prototype.commaEveryX0Days = function () { + return ", alle %s Tage"; + }; + de.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", zwischen Tag %s und %s des Monats"; + }; + de.prototype.commaOnDayX0OfTheMonth = function () { + return ", am %s Tag des Monats"; + }; + de.prototype.commaEveryX0Years = function () { + return ", alle %s Jahre"; + }; + de.prototype.commaStartingX0 = function () { + return ", beginnend %s"; + }; + de.prototype.daysOfTheWeek = function () { + return ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]; + }; + de.prototype.monthsOfTheYear = function () { + return [ + "Januar", + "Februar", + "März", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ]; + }; + return de; +}()); +exports.de = de; + + +/***/ }), +/* 11 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var es = (function () { + function es() { + } + es.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + es.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + es.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + es.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + es.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + es.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron."; + }; + es.prototype.at = function () { + return "A las"; + }; + es.prototype.atSpace = function () { + return "A las "; + }; + es.prototype.atX0 = function () { + return "a las %s"; + }; + es.prototype.atX0MinutesPastTheHour = function () { + return "a los %s minutos de la hora"; + }; + es.prototype.atX0SecondsPastTheMinute = function () { + return "a los %s segundos del minuto"; + }; + es.prototype.betweenX0AndX1 = function () { + return "entre las %s y las %s"; + }; + es.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", entre los días %s y %s del mes"; + }; + es.prototype.commaEveryDay = function () { + return ", cada día"; + }; + es.prototype.commaEveryX0Days = function () { + return ", cada %s días"; + }; + es.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", cada %s días de la semana"; + }; + es.prototype.commaEveryX0Months = function () { + return ", cada %s meses"; + }; + es.prototype.commaOnDayX0OfTheMonth = function () { + return ", el día %s del mes"; + }; + es.prototype.commaOnlyInX0 = function () { + return ", sólo en %s"; + }; + es.prototype.commaOnlyOnX0 = function () { + return ", sólo el %s"; + }; + es.prototype.commaAndOnX0 = function () { + return ", y el %s"; + }; + es.prototype.commaOnThe = function () { + return ", en el "; + }; + es.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", en el último día del mes"; + }; + es.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", en el último día de la semana del mes"; + }; + es.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s días antes del último día del mes"; + }; + es.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", en el último %s del mes"; + }; + es.prototype.commaOnTheX0OfTheMonth = function () { + return ", en el %s del mes"; + }; + es.prototype.commaX0ThroughX1 = function () { + return ", de %s a %s"; + }; + es.prototype.everyHour = function () { + return "cada hora"; + }; + es.prototype.everyMinute = function () { + return "cada minuto"; + }; + es.prototype.everyMinuteBetweenX0AndX1 = function () { + return "cada minuto entre las %s y las %s"; + }; + es.prototype.everySecond = function () { + return "cada segundo"; + }; + es.prototype.everyX0Hours = function () { + return "cada %s horas"; + }; + es.prototype.everyX0Minutes = function () { + return "cada %s minutos"; + }; + es.prototype.everyX0Seconds = function () { + return "cada %s segundos"; + }; + es.prototype.fifth = function () { + return "quinto"; + }; + es.prototype.first = function () { + return "primero"; + }; + es.prototype.firstWeekday = function () { + return "primer día de la semana"; + }; + es.prototype.fourth = function () { + return "cuarto"; + }; + es.prototype.minutesX0ThroughX1PastTheHour = function () { + return "del minuto %s al %s pasada la hora"; + }; + es.prototype.second = function () { + return "segundo"; + }; + es.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "En los segundos %s al %s de cada minuto"; + }; + es.prototype.spaceAnd = function () { + return " y"; + }; + es.prototype.spaceX0OfTheMonth = function () { + return " %s del mes"; + }; + es.prototype.lastDay = function () { + return "el último día"; + }; + es.prototype.third = function () { + return "tercer"; + }; + es.prototype.weekdayNearestDayX0 = function () { + return "día de la semana más próximo al %s"; + }; + es.prototype.commaEveryX0Years = function () { + return ", cada %s años"; + }; + es.prototype.commaStartingX0 = function () { + return ", comenzando %s"; + }; + es.prototype.daysOfTheWeek = function () { + return ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"]; + }; + es.prototype.monthsOfTheYear = function () { + return [ + "enero", + "febrero", + "marzo", + "abril", + "mayo", + "junio", + "julio", + "agosto", + "septiembre", + "octubre", + "noviembre", + "diciembre" + ]; + }; + return es; +}()); +exports.es = es; + + +/***/ }), +/* 12 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fr = (function () { + function fr() { + } + fr.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fr.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + fr.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fr.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fr.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + fr.prototype.everyMinute = function () { + return "toutes les minutes"; + }; + fr.prototype.everyHour = function () { + return "toutes les heures"; + }; + fr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe."; + }; + fr.prototype.atSpace = function () { + return "À "; + }; + fr.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Toutes les minutes entre %s et %s"; + }; + fr.prototype.at = function () { + return "À"; + }; + fr.prototype.spaceAnd = function () { + return " et"; + }; + fr.prototype.everySecond = function () { + return "toutes les secondes"; + }; + fr.prototype.everyX0Seconds = function () { + return "toutes les %s secondes"; + }; + fr.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "les secondes entre %s et %s après la minute"; + }; + fr.prototype.atX0SecondsPastTheMinute = function () { + return "%s secondes après la minute"; + }; + fr.prototype.everyX0Minutes = function () { + return "toutes les %s minutes"; + }; + fr.prototype.minutesX0ThroughX1PastTheHour = function () { + return "les minutes entre %s et %s après l'heure"; + }; + fr.prototype.atX0MinutesPastTheHour = function () { + return "%s minutes après l'heure"; + }; + fr.prototype.everyX0Hours = function () { + return "toutes les %s heures"; + }; + fr.prototype.betweenX0AndX1 = function () { + return "de %s à %s"; + }; + fr.prototype.atX0 = function () { + return "à %s"; + }; + fr.prototype.commaEveryDay = function () { + return ", tous les jours"; + }; + fr.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", every %s days of the week"; + }; + fr.prototype.commaX0ThroughX1 = function () { + return ", de %s à %s"; + }; + fr.prototype.first = function () { + return "premier"; + }; + fr.prototype.second = function () { + return "second"; + }; + fr.prototype.third = function () { + return "troisième"; + }; + fr.prototype.fourth = function () { + return "quatrième"; + }; + fr.prototype.fifth = function () { + return "cinquième"; + }; + fr.prototype.commaOnThe = function () { + return ", le "; + }; + fr.prototype.spaceX0OfTheMonth = function () { + return " %s du mois"; + }; + fr.prototype.lastDay = function () { + return "le dernier jour"; + }; + fr.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", le dernier %s du mois"; + }; + fr.prototype.commaOnlyOnX0 = function () { + return ", uniquement le %s"; + }; + fr.prototype.commaAndOnX0 = function () { + return ", et %s"; + }; + fr.prototype.commaEveryX0Months = function () { + return ", tous les %s mois"; + }; + fr.prototype.commaOnlyInX0 = function () { + return ", uniquement en %s"; + }; + fr.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", le dernier jour du mois"; + }; + fr.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", le dernier jour ouvrable du mois"; + }; + fr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s jours avant le dernier jour du mois"; + }; + fr.prototype.firstWeekday = function () { + return "premier jour ouvrable"; + }; + fr.prototype.weekdayNearestDayX0 = function () { + return "jour ouvrable le plus proche du %s"; + }; + fr.prototype.commaOnTheX0OfTheMonth = function () { + return ", le %s du mois"; + }; + fr.prototype.commaEveryX0Days = function () { + return ", tous les %s jours"; + }; + fr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", du %s au %s du mois"; + }; + fr.prototype.commaOnDayX0OfTheMonth = function () { + return ", le %s du mois"; + }; + fr.prototype.commaEveryX0Years = function () { + return ", tous les %s ans"; + }; + fr.prototype.commaDaysX0ThroughX1 = function () { + return ", du %s au %s"; + }; + fr.prototype.commaStartingX0 = function () { + return ", départ %s"; + }; + fr.prototype.daysOfTheWeek = function () { + return ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]; + }; + fr.prototype.monthsOfTheYear = function () { + return [ + "janvier", + "février", + "mars", + "avril", + "mai", + "juin", + "juillet", + "août", + "septembre", + "octobre", + "novembre", + "décembre" + ]; + }; + return fr; +}()); +exports.fr = fr; + + +/***/ }), +/* 13 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var it = (function () { + function it() { + } + it.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + it.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + it.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + it.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + it.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + it.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron."; + }; + it.prototype.at = function () { + return "Alle"; + }; + it.prototype.atSpace = function () { + return "Alle "; + }; + it.prototype.atX0 = function () { + return "alle %s"; + }; + it.prototype.atX0MinutesPastTheHour = function () { + return "al %s minuto passata l'ora"; + }; + it.prototype.atX0SecondsPastTheMinute = function () { + return "al %s secondo passato il minuto"; + }; + it.prototype.betweenX0AndX1 = function () { + return "tra le %s e le %s"; + }; + it.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", tra il giorno %s e %s del mese"; + }; + it.prototype.commaEveryDay = function () { + return ", ogni giorno"; + }; + it.prototype.commaEveryX0Days = function () { + return ", ogni %s giorni"; + }; + it.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", ogni %s giorni della settimana"; + }; + it.prototype.commaEveryX0Months = function () { + return ", ogni %s mesi"; + }; + it.prototype.commaEveryX0Years = function () { + return ", ogni %s anni"; + }; + it.prototype.commaOnDayX0OfTheMonth = function () { + return ", il giorno %s del mese"; + }; + it.prototype.commaOnlyInX0 = function () { + return ", solo in %s"; + }; + it.prototype.commaOnlyOnX0 = function () { + return ", solo il %s"; + }; + it.prototype.commaAndOnX0 = function () { + return ", e il %s"; + }; + it.prototype.commaOnThe = function () { + return ", il "; + }; + it.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", l'ultimo giorno del mese"; + }; + it.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", nell'ultima settimana del mese"; + }; + it.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s giorni prima dell'ultimo giorno del mese"; + }; + it.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", l'ultimo %s del mese"; + }; + it.prototype.commaOnTheX0OfTheMonth = function () { + return ", il %s del mese"; + }; + it.prototype.commaX0ThroughX1 = function () { + return ", %s al %s"; + }; + it.prototype.everyHour = function () { + return "ogni ora"; + }; + it.prototype.everyMinute = function () { + return "ogni minuto"; + }; + it.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Ogni minuto tra le %s e le %s"; + }; + it.prototype.everySecond = function () { + return "ogni secondo"; + }; + it.prototype.everyX0Hours = function () { + return "ogni %s ore"; + }; + it.prototype.everyX0Minutes = function () { + return "ogni %s minuti"; + }; + it.prototype.everyX0Seconds = function () { + return "ogni %s secondi"; + }; + it.prototype.fifth = function () { + return "quinto"; + }; + it.prototype.first = function () { + return "primo"; + }; + it.prototype.firstWeekday = function () { + return "primo giorno della settimana"; + }; + it.prototype.fourth = function () { + return "quarto"; + }; + it.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuti %s al %s dopo l'ora"; + }; + it.prototype.second = function () { + return "secondo"; + }; + it.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "secondi %s al %s oltre il minuto"; + }; + it.prototype.spaceAnd = function () { + return " e"; + }; + it.prototype.spaceX0OfTheMonth = function () { + return " %s del mese"; + }; + it.prototype.lastDay = function () { + return "l'ultimo giorno"; + }; + it.prototype.third = function () { + return "terzo"; + }; + it.prototype.weekdayNearestDayX0 = function () { + return "giorno della settimana più vicino al %s"; + }; + it.prototype.commaStartingX0 = function () { + return ", a partire %s"; + }; + it.prototype.daysOfTheWeek = function () { + return ["domenica", "lunedì", "martedì", "mercoledì", "giovedì", "venerdì", "sabato"]; + }; + it.prototype.monthsOfTheYear = function () { + return [ + "gennaio", + "febbraio", + "marzo", + "aprile", + "maggio", + "giugno", + "luglio", + "agosto", + "settembre", + "ottobre", + "novembre", + "dicembre" + ]; + }; + return it; +}()); +exports.it = it; + + +/***/ }), +/* 14 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ko = (function () { + function ko() { + } + ko.prototype.setPeriodBeforeTime = function () { + return true; + }; + ko.prototype.pm = function () { + return "오후"; + }; + ko.prototype.am = function () { + return "오전"; + }; + ko.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ko.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ko.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ko.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ko.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + ko.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "표현식 설명을 생성하는 중 오류가 발생했습니다. cron 표현식 구문을 확인하십시오."; + }; + ko.prototype.everyMinute = function () { + return "1분마다"; + }; + ko.prototype.everyHour = function () { + return "1시간마다"; + }; + ko.prototype.atSpace = function () { + return "에서 "; + }; + ko.prototype.everyMinuteBetweenX0AndX1 = function () { + return "%s 및 %s 사이에 매 분"; + }; + ko.prototype.at = function () { + return "에서"; + }; + ko.prototype.spaceAnd = function () { + return " 및"; + }; + ko.prototype.everySecond = function () { + return "1초마다"; + }; + ko.prototype.everyX0Seconds = function () { + return "%s초마다"; + }; + ko.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "정분 후 %s초에서 %s초까지"; + }; + ko.prototype.atX0SecondsPastTheMinute = function () { + return "정분 후 %s초에서"; + }; + ko.prototype.everyX0Minutes = function () { + return "%s분마다"; + }; + ko.prototype.minutesX0ThroughX1PastTheHour = function () { + return "정시 후 %s분에서 %s까지"; + }; + ko.prototype.atX0MinutesPastTheHour = function () { + return "정시 후 %s분에서"; + }; + ko.prototype.everyX0Hours = function () { + return "%s시간마다"; + }; + ko.prototype.betweenX0AndX1 = function () { + return "%s에서 %s 사이"; + }; + ko.prototype.atX0 = function () { + return "%s에서"; + }; + ko.prototype.commaEveryDay = function () { + return ", 매일"; + }; + ko.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 주 중 %s일마다"; + }; + ko.prototype.commaX0ThroughX1 = function () { + return ", %s에서 %s가지"; + }; + ko.prototype.first = function () { + return "첫 번째"; + }; + ko.prototype.second = function () { + return "두 번째"; + }; + ko.prototype.third = function () { + return "세 번째"; + }; + ko.prototype.fourth = function () { + return "네 번째"; + }; + ko.prototype.fifth = function () { + return "다섯 번째"; + }; + ko.prototype.commaOnThe = function () { + return ", 해당 "; + }; + ko.prototype.spaceX0OfTheMonth = function () { + return " 해당 월의 %s"; + }; + ko.prototype.lastDay = function () { + return "마지막 날"; + }; + ko.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 해당 월의 마지막 %s"; + }; + ko.prototype.commaOnlyOnX0 = function () { + return ", %s에만"; + }; + ko.prototype.commaAndOnX0 = function () { + return ", 및 %s에"; + }; + ko.prototype.commaEveryX0Months = function () { + return ", %s개월마다"; + }; + ko.prototype.commaOnlyInX0 = function () { + return ", %s에서만"; + }; + ko.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 해당 월의 마지막 날에"; + }; + ko.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 해당 월의 마지막 평일에"; + }; + ko.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", 해당 월의 마지막 날 %s일 전"; + }; + ko.prototype.firstWeekday = function () { + return "첫 번째 평일"; + }; + ko.prototype.weekdayNearestDayX0 = function () { + return "평일 가장 가까운 날 %s"; + }; + ko.prototype.commaOnTheX0OfTheMonth = function () { + return ", 해당 월의 %s에"; + }; + ko.prototype.commaEveryX0Days = function () { + return ", %s일마다"; + }; + ko.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 해당 월의 %s일 및 %s일 사이"; + }; + ko.prototype.commaOnDayX0OfTheMonth = function () { + return ", 해당 월의 %s일에"; + }; + ko.prototype.commaEveryMinute = function () { + return ", 1분마다"; + }; + ko.prototype.commaEveryHour = function () { + return ", 1시간마다"; + }; + ko.prototype.commaEveryX0Years = function () { + return ", %s년마다"; + }; + ko.prototype.commaStartingX0 = function () { + return ", %s부터"; + }; + ko.prototype.daysOfTheWeek = function () { + return ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"]; + }; + ko.prototype.monthsOfTheYear = function () { + return [ + "1월", + "2월", + "3월", + "4월", + "5월", + "6월", + "7월", + "8월", + "9월", + "10월", + "11월", + "12월" + ]; + }; + return ko; +}()); +exports.ko = ko; + + +/***/ }), +/* 15 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var nl = (function () { + function nl() { + } + nl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + nl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + nl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + nl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + nl.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + nl.prototype.everyMinute = function () { + return "elke minuut"; + }; + nl.prototype.everyHour = function () { + return "elk uur"; + }; + nl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Er is een fout opgetreden bij het vertalen van de gegevens. Controleer de gegevens."; + }; + nl.prototype.atSpace = function () { + return "Op "; + }; + nl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Elke minuut tussen %s en %s"; + }; + nl.prototype.at = function () { + return "Op"; + }; + nl.prototype.spaceAnd = function () { + return " en"; + }; + nl.prototype.everySecond = function () { + return "elke seconde"; + }; + nl.prototype.everyX0Seconds = function () { + return "elke %s seconden"; + }; + nl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "seconden %s t/m %s na de minuut"; + }; + nl.prototype.atX0SecondsPastTheMinute = function () { + return "op %s seconden na de minuut"; + }; + nl.prototype.everyX0Minutes = function () { + return "elke %s minuten"; + }; + nl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuut %s t/m %s na het uur"; + }; + nl.prototype.atX0MinutesPastTheHour = function () { + return "op %s minuten na het uur"; + }; + nl.prototype.everyX0Hours = function () { + return "elke %s uur"; + }; + nl.prototype.betweenX0AndX1 = function () { + return "tussen %s en %s"; + }; + nl.prototype.atX0 = function () { + return "op %s"; + }; + nl.prototype.commaEveryDay = function () { + return ", elke dag"; + }; + nl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", elke %s dagen van de week"; + }; + nl.prototype.commaX0ThroughX1 = function () { + return ", %s t/m %s"; + }; + nl.prototype.first = function () { + return "eerste"; + }; + nl.prototype.second = function () { + return "tweede"; + }; + nl.prototype.third = function () { + return "derde"; + }; + nl.prototype.fourth = function () { + return "vierde"; + }; + nl.prototype.fifth = function () { + return "vijfde"; + }; + nl.prototype.commaOnThe = function () { + return ", op de "; + }; + nl.prototype.spaceX0OfTheMonth = function () { + return " %s van de maand"; + }; + nl.prototype.lastDay = function () { + return "de laatste dag"; + }; + nl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", op de laatste %s van de maand"; + }; + nl.prototype.commaOnlyOnX0 = function () { + return ", alleen op %s"; + }; + nl.prototype.commaAndOnX0 = function () { + return ", en op %s"; + }; + nl.prototype.commaEveryX0Months = function () { + return ", elke %s maanden"; + }; + nl.prototype.commaOnlyInX0 = function () { + return ", alleen in %s"; + }; + nl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", op de laatste dag van de maand"; + }; + nl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", op de laatste werkdag van de maand"; + }; + nl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dagen vóór de laatste dag van de maand"; + }; + nl.prototype.firstWeekday = function () { + return "eerste werkdag"; + }; + nl.prototype.weekdayNearestDayX0 = function () { + return "werkdag dichtst bij dag %s"; + }; + nl.prototype.commaOnTheX0OfTheMonth = function () { + return ", op de %s van de maand"; + }; + nl.prototype.commaEveryX0Days = function () { + return ", elke %s dagen"; + }; + nl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", tussen dag %s en %s van de maand"; + }; + nl.prototype.commaOnDayX0OfTheMonth = function () { + return ", op dag %s van de maand"; + }; + nl.prototype.commaEveryX0Years = function () { + return ", elke %s jaren"; + }; + nl.prototype.commaStartingX0 = function () { + return ", beginnend %s"; + }; + nl.prototype.daysOfTheWeek = function () { + return ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"]; + }; + nl.prototype.monthsOfTheYear = function () { + return [ + "januari", + "februari", + "maart", + "april", + "mei", + "juni", + "juli", + "augustus", + "september", + "oktober", + "november", + "december" + ]; + }; + return nl; +}()); +exports.nl = nl; + + +/***/ }), +/* 16 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var nb = (function () { + function nb() { + } + nb.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + nb.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + nb.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + nb.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + nb.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + nb.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."; + }; + nb.prototype.at = function () { + return "Kl."; + }; + nb.prototype.atSpace = function () { + return "Kl."; + }; + nb.prototype.atX0 = function () { + return "på %s"; + }; + nb.prototype.atX0MinutesPastTheHour = function () { + return "på %s minutter etter timen"; + }; + nb.prototype.atX0SecondsPastTheMinute = function () { + return "på %s sekunder etter minuttet"; + }; + nb.prototype.betweenX0AndX1 = function () { + return "mellom %s og %s"; + }; + nb.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellom dag %s og %s av måneden"; + }; + nb.prototype.commaEveryDay = function () { + return ", hver dag"; + }; + nb.prototype.commaEveryX0Days = function () { + return ", hver %s dag"; + }; + nb.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", hver %s ukedag"; + }; + nb.prototype.commaEveryX0Months = function () { + return ", hver %s måned"; + }; + nb.prototype.commaEveryX0Years = function () { + return ", hvert %s år"; + }; + nb.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s av måneden"; + }; + nb.prototype.commaOnlyInX0 = function () { + return ", bare i %s"; + }; + nb.prototype.commaOnlyOnX0 = function () { + return ", på %s"; + }; + nb.prototype.commaAndOnX0 = function () { + return ", og på %s"; + }; + nb.prototype.commaOnThe = function () { + return ", på "; + }; + nb.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på den siste dagen i måneden"; + }; + nb.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", den siste ukedagen i måneden"; + }; + nb.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dager før den siste dagen i måneden"; + }; + nb.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på den siste %s av måneden"; + }; + nb.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s av måneden"; + }; + nb.prototype.commaX0ThroughX1 = function () { + return ", %s til og med %s"; + }; + nb.prototype.everyHour = function () { + return "hver time"; + }; + nb.prototype.everyMinute = function () { + return "hvert minutt"; + }; + nb.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Hvert minutt mellom %s og %s"; + }; + nb.prototype.everySecond = function () { + return "hvert sekund"; + }; + nb.prototype.everyX0Hours = function () { + return "hver %s time"; + }; + nb.prototype.everyX0Minutes = function () { + return "hvert %s minutt"; + }; + nb.prototype.everyX0Seconds = function () { + return "hvert %s sekund"; + }; + nb.prototype.fifth = function () { + return "femte"; + }; + nb.prototype.first = function () { + return "første"; + }; + nb.prototype.firstWeekday = function () { + return "første ukedag"; + }; + nb.prototype.fourth = function () { + return "fjerde"; + }; + nb.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuttene fra %s til og med %s etter timen"; + }; + nb.prototype.second = function () { + return "sekund"; + }; + nb.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundene fra %s til og med %s etter minuttet"; + }; + nb.prototype.spaceAnd = function () { + return " og"; + }; + nb.prototype.spaceX0OfTheMonth = function () { + return " %s i måneden"; + }; + nb.prototype.lastDay = function () { + return "den siste dagen"; + }; + nb.prototype.third = function () { + return "tredje"; + }; + nb.prototype.weekdayNearestDayX0 = function () { + return "ukedag nærmest dag %s"; + }; + nb.prototype.commaStartingX0 = function () { + return ", starter %s"; + }; + nb.prototype.daysOfTheWeek = function () { + return ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"]; + }; + nb.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ]; + }; + return nb; +}()); +exports.nb = nb; + + +/***/ }), +/* 17 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sv = (function () { + function sv() { + } + sv.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sv.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sv.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sv.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sv.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sv.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ett fel inträffade vid generering av uttryckets beskrivning. Kontrollera cron-uttryckets syntax."; + }; + sv.prototype.everyMinute = function () { + return "varje minut"; + }; + sv.prototype.everyHour = function () { + return "varje timme"; + }; + sv.prototype.atSpace = function () { + return "Kl "; + }; + sv.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Varje minut mellan %s och %s"; + }; + sv.prototype.at = function () { + return "Kl"; + }; + sv.prototype.spaceAnd = function () { + return " och"; + }; + sv.prototype.everySecond = function () { + return "varje sekund"; + }; + sv.prototype.everyX0Seconds = function () { + return "varje %s sekund"; + }; + sv.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunderna från %s till och med %s efter minuten"; + }; + sv.prototype.atX0SecondsPastTheMinute = function () { + return "på %s sekunder efter minuten"; + }; + sv.prototype.everyX0Minutes = function () { + return "var %s minut"; + }; + sv.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuterna från %s till och med %s efter timmen"; + }; + sv.prototype.atX0MinutesPastTheHour = function () { + return "på %s minuten efter timmen"; + }; + sv.prototype.everyX0Hours = function () { + return "var %s timme"; + }; + sv.prototype.betweenX0AndX1 = function () { + return "mellan %s och %s"; + }; + sv.prototype.atX0 = function () { + return "kl %s"; + }; + sv.prototype.commaEveryDay = function () { + return ", varje dag"; + }; + sv.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", var %s dag i veckan"; + }; + sv.prototype.commaX0ThroughX1 = function () { + return ", %s till %s"; + }; + sv.prototype.first = function () { + return "första"; + }; + sv.prototype.second = function () { + return "andra"; + }; + sv.prototype.third = function () { + return "tredje"; + }; + sv.prototype.fourth = function () { + return "fjärde"; + }; + sv.prototype.fifth = function () { + return "femte"; + }; + sv.prototype.commaOnThe = function () { + return ", den "; + }; + sv.prototype.spaceX0OfTheMonth = function () { + return " %sen av månaden"; + }; + sv.prototype.lastDay = function () { + return "den sista dagen"; + }; + sv.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på sista %s av månaden"; + }; + sv.prototype.commaOnlyOnX0 = function () { + return ", varje %s"; + }; + sv.prototype.commaAndOnX0 = function () { + return ", och på %s"; + }; + sv.prototype.commaEveryX0Months = function () { + return ", var %s månad"; + }; + sv.prototype.commaOnlyInX0 = function () { + return ", bara på %s"; + }; + sv.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på sista dagen av månaden"; + }; + sv.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", på sista veckodag av månaden"; + }; + sv.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dagar före den sista dagen i månaden"; + }; + sv.prototype.firstWeekday = function () { + return "första veckodag"; + }; + sv.prototype.weekdayNearestDayX0 = function () { + return "veckodagen närmast dag %s"; + }; + sv.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s av månaden"; + }; + sv.prototype.commaEveryX0Days = function () { + return ", var %s dag"; + }; + sv.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellan dag %s och %s av månaden"; + }; + sv.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s av månaden"; + }; + sv.prototype.commaEveryX0Years = function () { + return ", var %s år"; + }; + sv.prototype.commaStartingX0 = function () { + return ", startar %s"; + }; + sv.prototype.daysOfTheWeek = function () { + return ["söndag", "måndag", "tisdag", "onsdag", "torsdag", "fredag", "lördag"]; + }; + sv.prototype.monthsOfTheYear = function () { + return [ + "januari", + "februari", + "mars", + "april", + "maj", + "juni", + "juli", + "augusti", + "september", + "oktober", + "november", + "december" + ]; + }; + return sv; +}()); +exports.sv = sv; + + +/***/ }), +/* 18 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var pl = (function () { + function pl() { + } + pl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + pl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + pl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + pl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + pl.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + pl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Wystąpił błąd podczas generowania opisu wyrażenia cron. Sprawdź składnię wyrażenia cron."; + }; + pl.prototype.at = function () { + return "O"; + }; + pl.prototype.atSpace = function () { + return "O "; + }; + pl.prototype.atX0 = function () { + return "o %s"; + }; + pl.prototype.atX0MinutesPastTheHour = function () { + return "w %s minucie"; + }; + pl.prototype.atX0SecondsPastTheMinute = function () { + return "w %s sekundzie"; + }; + pl.prototype.betweenX0AndX1 = function () { + return "od %s do %s"; + }; + pl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", od %s-ego do %s-ego dnia miesiąca"; + }; + pl.prototype.commaEveryDay = function () { + return ", co dzień"; + }; + pl.prototype.commaEveryX0Days = function () { + return ", co %s dni"; + }; + pl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", co %s dni tygodnia"; + }; + pl.prototype.commaEveryX0Months = function () { + return ", co %s miesięcy"; + }; + pl.prototype.commaEveryX0Years = function () { + return ", co %s lat"; + }; + pl.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s-ego dnia miesiąca"; + }; + pl.prototype.commaOnlyInX0 = function () { + return ", tylko %s"; + }; + pl.prototype.commaOnlyOnX0 = function () { + return ", tylko %s"; + }; + pl.prototype.commaAndOnX0 = function () { + return ", i %s"; + }; + pl.prototype.commaOnThe = function () { + return ", "; + }; + pl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ostatni dzień miesiąca"; + }; + pl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ostatni dzień roboczy miesiąca"; + }; + pl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dni przed ostatnim dniem miesiąca"; + }; + pl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", ostatni %s miesiąca"; + }; + pl.prototype.commaOnTheX0OfTheMonth = function () { + return ", %s miesiąca"; + }; + pl.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + pl.prototype.everyHour = function () { + return "co godzinę"; + }; + pl.prototype.everyMinute = function () { + return "co minutę"; + }; + pl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Co minutę od %s do %s"; + }; + pl.prototype.everySecond = function () { + return "co sekundę"; + }; + pl.prototype.everyX0Hours = function () { + return "co %s godzin"; + }; + pl.prototype.everyX0Minutes = function () { + return "co %s minut"; + }; + pl.prototype.everyX0Seconds = function () { + return "co %s sekund"; + }; + pl.prototype.fifth = function () { + return "piąty"; + }; + pl.prototype.first = function () { + return "pierwszy"; + }; + pl.prototype.firstWeekday = function () { + return "pierwszy dzień roboczy"; + }; + pl.prototype.fourth = function () { + return "czwarty"; + }; + pl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuty od %s do %s"; + }; + pl.prototype.second = function () { + return "drugi"; + }; + pl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + pl.prototype.spaceAnd = function () { + return " i"; + }; + pl.prototype.spaceX0OfTheMonth = function () { + return " %s miesiąca"; + }; + pl.prototype.lastDay = function () { + return "ostatni dzień"; + }; + pl.prototype.third = function () { + return "trzeci"; + }; + pl.prototype.weekdayNearestDayX0 = function () { + return "dzień roboczy najbliższy %s-ego dnia"; + }; + pl.prototype.commaStartingX0 = function () { + return ", startowy %s"; + }; + pl.prototype.daysOfTheWeek = function () { + return ["niedziela", "poniedziałek", "wtorek", "środa", "czwartek", "piątek", "sobota"]; + }; + pl.prototype.monthsOfTheYear = function () { + return [ + "styczeń", + "luty", + "marzec", + "kwiecień", + "maj", + "czerwiec", + "lipiec", + "sierpień", + "wrzesień", + "październik", + "listopad", + "grudzień" + ]; + }; + return pl; +}()); +exports.pl = pl; + + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var pt_BR = (function () { + function pt_BR() { + } + pt_BR.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + pt_BR.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + pt_BR.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + pt_BR.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + pt_BR.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + pt_BR.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ocorreu um erro ao gerar a descrição da expressão Cron."; + }; + pt_BR.prototype.at = function () { + return "às"; + }; + pt_BR.prototype.atSpace = function () { + return "às "; + }; + pt_BR.prototype.atX0 = function () { + return "Às %s"; + }; + pt_BR.prototype.atX0MinutesPastTheHour = function () { + return "aos %s minutos da hora"; + }; + pt_BR.prototype.atX0SecondsPastTheMinute = function () { + return "aos %s segundos do minuto"; + }; + pt_BR.prototype.betweenX0AndX1 = function () { + return "entre %s e %s"; + }; + pt_BR.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", entre os dias %s e %s do mês"; + }; + pt_BR.prototype.commaEveryDay = function () { + return ", a cada dia"; + }; + pt_BR.prototype.commaEveryX0Days = function () { + return ", a cada %s dias"; + }; + pt_BR.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", a cada %s dias de semana"; + }; + pt_BR.prototype.commaEveryX0Months = function () { + return ", a cada %s meses"; + }; + pt_BR.prototype.commaOnDayX0OfTheMonth = function () { + return ", no dia %s do mês"; + }; + pt_BR.prototype.commaOnlyInX0 = function () { + return ", somente em %s"; + }; + pt_BR.prototype.commaOnlyOnX0 = function () { + return ", somente de %s"; + }; + pt_BR.prototype.commaAndOnX0 = function () { + return ", e de %s"; + }; + pt_BR.prototype.commaOnThe = function () { + return ", na "; + }; + pt_BR.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", no último dia do mês"; + }; + pt_BR.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", no último dia da semana do mês"; + }; + pt_BR.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dias antes do último dia do mês"; + }; + pt_BR.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", na última %s do mês"; + }; + pt_BR.prototype.commaOnTheX0OfTheMonth = function () { + return ", no %s do mês"; + }; + pt_BR.prototype.commaX0ThroughX1 = function () { + return ", de %s a %s"; + }; + pt_BR.prototype.everyHour = function () { + return "a cada hora"; + }; + pt_BR.prototype.everyMinute = function () { + return "a cada minuto"; + }; + pt_BR.prototype.everyMinuteBetweenX0AndX1 = function () { + return "a cada minuto entre %s e %s"; + }; + pt_BR.prototype.everySecond = function () { + return "a cada segundo"; + }; + pt_BR.prototype.everyX0Hours = function () { + return "a cada %s horas"; + }; + pt_BR.prototype.everyX0Minutes = function () { + return "a cada %s minutos"; + }; + pt_BR.prototype.everyX0Seconds = function () { + return "a cada %s segundos"; + }; + pt_BR.prototype.fifth = function () { + return "quinta"; + }; + pt_BR.prototype.first = function () { + return "primeira"; + }; + pt_BR.prototype.firstWeekday = function () { + return "primeiro dia da semana"; + }; + pt_BR.prototype.fourth = function () { + return "quarta"; + }; + pt_BR.prototype.minutesX0ThroughX1PastTheHour = function () { + return "do minuto %s até %s de cada hora"; + }; + pt_BR.prototype.second = function () { + return "segunda"; + }; + pt_BR.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "No segundo %s até %s de cada minuto"; + }; + pt_BR.prototype.spaceAnd = function () { + return " e"; + }; + pt_BR.prototype.spaceX0OfTheMonth = function () { + return " %s do mês"; + }; + pt_BR.prototype.lastDay = function () { + return "o último dia"; + }; + pt_BR.prototype.third = function () { + return "terceira"; + }; + pt_BR.prototype.weekdayNearestDayX0 = function () { + return "dia da semana mais próximo do dia %s"; + }; + pt_BR.prototype.commaEveryX0Years = function () { + return ", a cada %s anos"; + }; + pt_BR.prototype.commaStartingX0 = function () { + return ", iniciando %s"; + }; + pt_BR.prototype.daysOfTheWeek = function () { + return ["domingo", "segunda-feira", "terça-feira", "quarta-feira", "quinta-feira", "sexta-feira", "sábado"]; + }; + pt_BR.prototype.monthsOfTheYear = function () { + return [ + "janeiro", + "fevereiro", + "março", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ]; + }; + return pt_BR; +}()); +exports.pt_BR = pt_BR; + + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ro = (function () { + function ro() { + } + ro.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + ro.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Eroare la generarea descrierii. Verificați sintaxa."; + }; + ro.prototype.at = function () { + return "La"; + }; + ro.prototype.atSpace = function () { + return "La "; + }; + ro.prototype.atX0 = function () { + return "la %s"; + }; + ro.prototype.atX0MinutesPastTheHour = function () { + return "la și %s minute"; + }; + ro.prototype.atX0SecondsPastTheMinute = function () { + return "la și %s secunde"; + }; + ro.prototype.betweenX0AndX1 = function () { + return "între %s și %s"; + }; + ro.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", între zilele %s și %s ale lunii"; + }; + ro.prototype.commaEveryDay = function () { + return ", în fiecare zi"; + }; + ro.prototype.commaEveryX0Days = function () { + return ", la fiecare %s zile"; + }; + ro.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", la fiecare a %s-a zi a săptămânii"; + }; + ro.prototype.commaEveryX0Months = function () { + return ", la fiecare %s luni"; + }; + ro.prototype.commaEveryX0Years = function () { + return ", o dată la %s ani"; + }; + ro.prototype.commaOnDayX0OfTheMonth = function () { + return ", în ziua %s a lunii"; + }; + ro.prototype.commaOnlyInX0 = function () { + return ", doar în %s"; + }; + ro.prototype.commaOnlyOnX0 = function () { + return ", doar %s"; + }; + ro.prototype.commaAndOnX0 = function () { + return ", și %s"; + }; + ro.prototype.commaOnThe = function () { + return ", în "; + }; + ro.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", în ultima zi a lunii"; + }; + ro.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", în ultima zi lucrătoare a lunii"; + }; + ro.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s zile înainte de ultima zi a lunii"; + }; + ro.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", în ultima %s a lunii"; + }; + ro.prototype.commaOnTheX0OfTheMonth = function () { + return ", în %s a lunii"; + }; + ro.prototype.commaX0ThroughX1 = function () { + return ", de %s până %s"; + }; + ro.prototype.everyHour = function () { + return "în fiecare oră"; + }; + ro.prototype.everyMinute = function () { + return "în fiecare minut"; + }; + ro.prototype.everyMinuteBetweenX0AndX1 = function () { + return "În fiecare minut între %s și %s"; + }; + ro.prototype.everySecond = function () { + return "în fiecare secundă"; + }; + ro.prototype.everyX0Hours = function () { + return "la fiecare %s ore"; + }; + ro.prototype.everyX0Minutes = function () { + return "la fiecare %s minute"; + }; + ro.prototype.everyX0Seconds = function () { + return "la fiecare %s secunde"; + }; + ro.prototype.fifth = function () { + return "a cincea"; + }; + ro.prototype.first = function () { + return "prima"; + }; + ro.prototype.firstWeekday = function () { + return "prima zi a săptămânii"; + }; + ro.prototype.fourth = function () { + return "a patra"; + }; + ro.prototype.minutesX0ThroughX1PastTheHour = function () { + return "între minutele %s și %s"; + }; + ro.prototype.second = function () { + return "a doua"; + }; + ro.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "între secunda %s și secunda %s"; + }; + ro.prototype.spaceAnd = function () { + return " și"; + }; + ro.prototype.spaceX0OfTheMonth = function () { + return " %s a lunii"; + }; + ro.prototype.lastDay = function () { + return "ultima zi"; + }; + ro.prototype.third = function () { + return "a treia"; + }; + ro.prototype.weekdayNearestDayX0 = function () { + return "cea mai apropiată zi a săptămânii de ziua %s"; + }; + ro.prototype.commaMonthX0ThroughMonthX1 = function () { + return ", din %s până în %s"; + }; + ro.prototype.commaYearX0ThroughYearX1 = function () { + return ", din %s până în %s"; + }; + ro.prototype.atX0MinutesPastTheHourGt20 = function () { + return "la și %s de minute"; + }; + ro.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return "la și %s de secunde"; + }; + ro.prototype.commaStartingX0 = function () { + return ", pornire %s"; + }; + ro.prototype.daysOfTheWeek = function () { + return ["duminică", "luni", "marți", "miercuri", "joi", "vineri", "sâmbătă"]; + }; + ro.prototype.monthsOfTheYear = function () { + return [ + "ianuarie", + "februarie", + "martie", + "aprilie", + "mai", + "iunie", + "iulie", + "august", + "septembrie", + "octombrie", + "noiembrie", + "decembrie" + ]; + }; + return ro; +}()); +exports.ro = ro; + + +/***/ }), +/* 21 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ru = (function () { + function ru() { + } + ru.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ru.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ru.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ru.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ru.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + ru.prototype.everyMinute = function () { + return "каждую минуту"; + }; + ru.prototype.everyHour = function () { + return "каждый час"; + }; + ru.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Произошла ошибка во время генерации описания выражения. Проверьте синтаксис крон-выражения."; + }; + ru.prototype.atSpace = function () { + return "В "; + }; + ru.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Каждую минуту с %s по %s"; + }; + ru.prototype.at = function () { + return "В"; + }; + ru.prototype.spaceAnd = function () { + return " и"; + }; + ru.prototype.everySecond = function () { + return "каждую секунду"; + }; + ru.prototype.everyX0Seconds = function () { + return "каждые %s секунд"; + }; + ru.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "секунды с %s по %s"; + }; + ru.prototype.atX0SecondsPastTheMinute = function () { + return "в %s секунд"; + }; + ru.prototype.everyX0Minutes = function () { + return "каждые %s минут"; + }; + ru.prototype.minutesX0ThroughX1PastTheHour = function () { + return "минуты с %s по %s"; + }; + ru.prototype.atX0MinutesPastTheHour = function () { + return "в %s минут"; + }; + ru.prototype.everyX0Hours = function () { + return "каждые %s часов"; + }; + ru.prototype.betweenX0AndX1 = function () { + return "с %s по %s"; + }; + ru.prototype.atX0 = function () { + return "в %s"; + }; + ru.prototype.commaEveryDay = function () { + return ", каждый день"; + }; + ru.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", каждые %s дней недели"; + }; + ru.prototype.commaX0ThroughX1 = function () { + return ", %s по %s"; + }; + ru.prototype.first = function () { + return "первый"; + }; + ru.prototype.second = function () { + return "второй"; + }; + ru.prototype.third = function () { + return "третий"; + }; + ru.prototype.fourth = function () { + return "четвертый"; + }; + ru.prototype.fifth = function () { + return "пятый"; + }; + ru.prototype.commaOnThe = function () { + return ", в "; + }; + ru.prototype.spaceX0OfTheMonth = function () { + return " %s месяца"; + }; + ru.prototype.lastDay = function () { + return "последний день"; + }; + ru.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", в последний %s месяца"; + }; + ru.prototype.commaOnlyOnX0 = function () { + return ", только в %s"; + }; + ru.prototype.commaAndOnX0 = function () { + return ", и в %s"; + }; + ru.prototype.commaEveryX0Months = function () { + return ", каждые %s месяцев"; + }; + ru.prototype.commaOnlyInX0 = function () { + return ", только в %s"; + }; + ru.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", в последний день месяца"; + }; + ru.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", в последний будний день месяца"; + }; + ru.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s дней до последнего дня месяца"; + }; + ru.prototype.firstWeekday = function () { + return "первый будний день"; + }; + ru.prototype.weekdayNearestDayX0 = function () { + return "ближайший будний день к %s"; + }; + ru.prototype.commaOnTheX0OfTheMonth = function () { + return ", в %s месяца"; + }; + ru.prototype.commaEveryX0Days = function () { + return ", каждые %s дней"; + }; + ru.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", с %s по %s число месяца"; + }; + ru.prototype.commaOnDayX0OfTheMonth = function () { + return ", в %s число месяца"; + }; + ru.prototype.commaEveryX0Years = function () { + return ", каждые %s лет"; + }; + ru.prototype.commaStartingX0 = function () { + return ", начало %s"; + }; + ru.prototype.daysOfTheWeek = function () { + return ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"]; + }; + ru.prototype.monthsOfTheYear = function () { + return [ + "январь", + "февраль", + "март", + "апрель", + "май", + "июнь", + "июль", + "август", + "сентябрь", + "октябрь", + "ноябрь", + "декабрь" + ]; + }; + return ru; +}()); +exports.ru = ru; + + +/***/ }), +/* 22 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var tr = (function () { + function tr() { + } + tr.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + tr.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + tr.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + tr.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + tr.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + tr.prototype.everyMinute = function () { + return "her dakika"; + }; + tr.prototype.everyHour = function () { + return "her saat"; + }; + tr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "İfade açıklamasını oluştururken bir hata oluştu. Cron ifadesini gözden geçirin."; + }; + tr.prototype.atSpace = function () { + return "Saat "; + }; + tr.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Saat %s ve %s arasındaki her dakika"; + }; + tr.prototype.at = function () { + return "Saat"; + }; + tr.prototype.spaceAnd = function () { + return " ve"; + }; + tr.prototype.everySecond = function () { + return "her saniye"; + }; + tr.prototype.everyX0Seconds = function () { + return "her %s saniyede bir"; + }; + tr.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "dakikaların %s. ve %s. saniyeleri arası"; + }; + tr.prototype.atX0SecondsPastTheMinute = function () { + return "dakikaların %s. saniyesinde"; + }; + tr.prototype.everyX0Minutes = function () { + return "her %s dakikada bir"; + }; + tr.prototype.minutesX0ThroughX1PastTheHour = function () { + return "saatlerin %s. ve %s. dakikaları arası"; + }; + tr.prototype.atX0MinutesPastTheHour = function () { + return "saatlerin %s. dakikasında"; + }; + tr.prototype.everyX0Hours = function () { + return "her %s saatte"; + }; + tr.prototype.betweenX0AndX1 = function () { + return "%s ile %s arasında"; + }; + tr.prototype.atX0 = function () { + return "saat %s"; + }; + tr.prototype.commaEveryDay = function () { + return ", her gün"; + }; + tr.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", ayın her %s günü"; + }; + tr.prototype.commaX0ThroughX1 = function () { + return ", %s ile %s arasında"; + }; + tr.prototype.first = function () { + return "ilk"; + }; + tr.prototype.second = function () { + return "ikinci"; + }; + tr.prototype.third = function () { + return "üçüncü"; + }; + tr.prototype.fourth = function () { + return "dördüncü"; + }; + tr.prototype.fifth = function () { + return "beşinci"; + }; + tr.prototype.commaOnThe = function () { + return ", ayın "; + }; + tr.prototype.spaceX0OfTheMonth = function () { + return " %s günü"; + }; + tr.prototype.lastDay = function () { + return "son gün"; + }; + tr.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", ayın son %s günü"; + }; + tr.prototype.commaOnlyOnX0 = function () { + return ", sadece %s günü"; + }; + tr.prototype.commaAndOnX0 = function () { + return ", ve %s"; + }; + tr.prototype.commaEveryX0Months = function () { + return ", %s ayda bir"; + }; + tr.prototype.commaOnlyInX0 = function () { + return ", sadece %s için"; + }; + tr.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ayın son günü"; + }; + tr.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ayın son iş günü"; + }; + tr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s ayın son gününden önceki günler"; + }; + tr.prototype.firstWeekday = function () { + return "ilk iş günü"; + }; + tr.prototype.weekdayNearestDayX0 = function () { + return "%s. günü sonrasındaki ilk iş günü"; + }; + tr.prototype.commaOnTheX0OfTheMonth = function () { + return ", ayın %s"; + }; + tr.prototype.commaEveryX0Days = function () { + return ", %s günde bir"; + }; + tr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", ayın %s. ve %s. günleri arası"; + }; + tr.prototype.commaOnDayX0OfTheMonth = function () { + return ", ayın %s. günü"; + }; + tr.prototype.commaEveryX0Years = function () { + return ", %s yılda bir"; + }; + tr.prototype.commaStartingX0 = function () { + return ", başlangıç %s"; + }; + tr.prototype.daysOfTheWeek = function () { + return ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"]; + }; + tr.prototype.monthsOfTheYear = function () { + return [ + "Ocak", + "Şubat", + "Mart", + "Nisan", + "Mayıs", + "Haziran", + "Temmuz", + "Ağustos", + "Eylül", + "Ekim", + "Kasım", + "Aralık" + ]; + }; + return tr; +}()); +exports.tr = tr; + + +/***/ }), +/* 23 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var uk = (function () { + function uk() { + } + uk.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + uk.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + uk.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + uk.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + uk.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + uk.prototype.everyMinute = function () { + return "щохвилини"; + }; + uk.prototype.everyHour = function () { + return "щогодини"; + }; + uk.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "ВІдбулася помилка підчас генерації опису. Перевірта правильність написання cron виразу."; + }; + uk.prototype.atSpace = function () { + return "О "; + }; + uk.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Щохвилини між %s та %s"; + }; + uk.prototype.at = function () { + return "О"; + }; + uk.prototype.spaceAnd = function () { + return " та"; + }; + uk.prototype.everySecond = function () { + return "Щосекунди"; + }; + uk.prototype.everyX0Seconds = function () { + return "кожні %s секунд"; + }; + uk.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "з %s по %s секунду"; + }; + uk.prototype.atX0SecondsPastTheMinute = function () { + return "о %s секунді"; + }; + uk.prototype.everyX0Minutes = function () { + return "кожні %s хвилин"; + }; + uk.prototype.minutesX0ThroughX1PastTheHour = function () { + return "з %s по %s хвилину"; + }; + uk.prototype.atX0MinutesPastTheHour = function () { + return "о %s хвилині"; + }; + uk.prototype.everyX0Hours = function () { + return "кожні %s годин"; + }; + uk.prototype.betweenX0AndX1 = function () { + return "між %s та %s"; + }; + uk.prototype.atX0 = function () { + return "о %s"; + }; + uk.prototype.commaEveryDay = function () { + return ", щоденно"; + }; + uk.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", кожен %s день тижня"; + }; + uk.prototype.commaX0ThroughX1 = function () { + return ", %s по %s"; + }; + uk.prototype.first = function () { + return "перший"; + }; + uk.prototype.second = function () { + return "другий"; + }; + uk.prototype.third = function () { + return "третій"; + }; + uk.prototype.fourth = function () { + return "четвертий"; + }; + uk.prototype.fifth = function () { + return "п'ятий"; + }; + uk.prototype.commaOnThe = function () { + return ", в "; + }; + uk.prototype.spaceX0OfTheMonth = function () { + return " %s місяця"; + }; + uk.prototype.lastDay = function () { + return "останній день"; + }; + uk.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", в останній %s місяця"; + }; + uk.prototype.commaOnlyOnX0 = function () { + return ", тільки в %s"; + }; + uk.prototype.commaAndOnX0 = function () { + return ", і в %s"; + }; + uk.prototype.commaEveryX0Months = function () { + return ", кожен %s місяць"; + }; + uk.prototype.commaOnlyInX0 = function () { + return ", тільки в %s"; + }; + uk.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", в останній день місяця"; + }; + uk.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", в останній будень місяця"; + }; + uk.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s днів до останнього дня місяця"; + }; + uk.prototype.firstWeekday = function () { + return "перший будень"; + }; + uk.prototype.weekdayNearestDayX0 = function () { + return "будень найближчий до %s дня"; + }; + uk.prototype.commaOnTheX0OfTheMonth = function () { + return ", в %s місяця"; + }; + uk.prototype.commaEveryX0Days = function () { + return ", кожен %s день"; + }; + uk.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", між %s та %s днями місяця"; + }; + uk.prototype.commaOnDayX0OfTheMonth = function () { + return ", на %s день місяця"; + }; + uk.prototype.commaEveryX0Years = function () { + return ", кожні %s роки"; + }; + uk.prototype.commaStartingX0 = function () { + return ", початок %s"; + }; + uk.prototype.daysOfTheWeek = function () { + return ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"]; + }; + uk.prototype.monthsOfTheYear = function () { + return [ + "січень", + "лютий", + "березень", + "квітень", + "травень", + "червень", + "липень", + "серпень", + "вересень", + "жовтень", + "листопад", + "грудень" + ]; + }; + return uk; +}()); +exports.uk = uk; + + +/***/ }), +/* 24 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var zh_CN = (function () { + function zh_CN() { + } + zh_CN.prototype.setPeriodBeforeTime = function () { + return true; + }; + zh_CN.prototype.pm = function () { + return "下午"; + }; + zh_CN.prototype.am = function () { + return "上午"; + }; + zh_CN.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + zh_CN.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + zh_CN.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + zh_CN.prototype.commaYearX0ThroughYearX1 = function () { + return ", 从%s年至%s年"; + }; + zh_CN.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + zh_CN.prototype.everyMinute = function () { + return "每分钟"; + }; + zh_CN.prototype.everyHour = function () { + return "每小时"; + }; + zh_CN.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "生成表达式描述时发生了错误,请检查cron表达式语法。"; + }; + zh_CN.prototype.atSpace = function () { + return "在"; + }; + zh_CN.prototype.everyMinuteBetweenX0AndX1 = function () { + return "在 %s 至 %s 之间的每分钟"; + }; + zh_CN.prototype.at = function () { + return "在"; + }; + zh_CN.prototype.spaceAnd = function () { + return " 和"; + }; + zh_CN.prototype.everySecond = function () { + return "每秒"; + }; + zh_CN.prototype.everyX0Seconds = function () { + return "每隔 %s 秒"; + }; + zh_CN.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "在每分钟的第 %s 到 %s 秒"; + }; + zh_CN.prototype.atX0SecondsPastTheMinute = function () { + return "在每分钟的第 %s 秒"; + }; + zh_CN.prototype.everyX0Minutes = function () { + return "每隔 %s 分钟"; + }; + zh_CN.prototype.minutesX0ThroughX1PastTheHour = function () { + return "在每小时的第 %s 到 %s 分钟"; + }; + zh_CN.prototype.atX0MinutesPastTheHour = function () { + return "在每小时的第 %s 分钟"; + }; + zh_CN.prototype.everyX0Hours = function () { + return "每隔 %s 小时"; + }; + zh_CN.prototype.betweenX0AndX1 = function () { + return "在 %s 和 %s 之间"; + }; + zh_CN.prototype.atX0 = function () { + return "在%s"; + }; + zh_CN.prototype.commaEveryDay = function () { + return ", 每天"; + }; + zh_CN.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 每周的每 %s 天"; + }; + zh_CN.prototype.commaX0ThroughX1 = function () { + return ", %s至%s"; + }; + zh_CN.prototype.first = function () { + return "第一个"; + }; + zh_CN.prototype.second = function () { + return "第二个"; + }; + zh_CN.prototype.third = function () { + return "第三个"; + }; + zh_CN.prototype.fourth = function () { + return "第四个"; + }; + zh_CN.prototype.fifth = function () { + return "第五个"; + }; + zh_CN.prototype.commaOnThe = function () { + return ", 限每月的"; + }; + zh_CN.prototype.spaceX0OfTheMonth = function () { + return "%s"; + }; + zh_CN.prototype.lastDay = function () { + return "本月最后一天"; + }; + zh_CN.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 限每月的最后一个%s"; + }; + zh_CN.prototype.commaOnlyOnX0 = function () { + return ", 仅%s"; + }; + zh_CN.prototype.commaAndOnX0 = function () { + return ", 并且为%s"; + }; + zh_CN.prototype.commaEveryX0Months = function () { + return ", 每隔 %s 个月"; + }; + zh_CN.prototype.commaOnlyInX0 = function () { + return ", 仅限%s"; + }; + zh_CN.prototype.commaOnlyInMonthX0 = function () { + return ", 仅于%s份"; + }; + zh_CN.prototype.commaOnlyInYearX0 = function () { + return ", 仅于 %s 年"; + }; + zh_CN.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 限每月的最后一天"; + }; + zh_CN.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 限每月的最后一个工作日"; + }; + zh_CN.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", 限每月最后%s天"; + }; + zh_CN.prototype.firstWeekday = function () { + return "第一个工作日"; + }; + zh_CN.prototype.weekdayNearestDayX0 = function () { + return "最接近 %s 号的工作日"; + }; + zh_CN.prototype.commaOnTheX0OfTheMonth = function () { + return ", 限每月的%s"; + }; + zh_CN.prototype.commaEveryX0Days = function () { + return ", 每隔 %s 天"; + }; + zh_CN.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 限每月的 %s 至 %s 之间"; + }; + zh_CN.prototype.commaOnDayX0OfTheMonth = function () { + return ", 限每月%s"; + }; + zh_CN.prototype.commaEveryX0Years = function () { + return ", 每隔 %s 年"; + }; + zh_CN.prototype.commaStartingX0 = function () { + return ", %s开始"; + }; + zh_CN.prototype.dayX0 = function () { + return " %s 号"; + }; + zh_CN.prototype.daysOfTheWeek = function () { + return ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; + }; + zh_CN.prototype.monthsOfTheYear = function () { + return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]; + }; + return zh_CN; +}()); +exports.zh_CN = zh_CN; + + +/***/ }), +/* 25 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var zh_TW = (function () { + function zh_TW() { + } + zh_TW.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + zh_TW.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + zh_TW.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + zh_TW.prototype.commaYearX0ThroughYearX1 = function () { + return ", 从%s年至%s年"; + }; + zh_TW.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + zh_TW.prototype.everyMinute = function () { + return "每分鐘"; + }; + zh_TW.prototype.everyHour = function () { + return "每小時"; + }; + zh_TW.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "產生正規表達式描述時發生了錯誤,請檢查 cron 表達式語法。"; + }; + zh_TW.prototype.atSpace = function () { + return "在 "; + }; + zh_TW.prototype.everyMinuteBetweenX0AndX1 = function () { + return "在 %s 和 %s 之間的每分鐘"; + }; + zh_TW.prototype.at = function () { + return "在"; + }; + zh_TW.prototype.spaceAnd = function () { + return " 和"; + }; + zh_TW.prototype.everySecond = function () { + return "每秒"; + }; + zh_TW.prototype.everyX0Seconds = function () { + return "每 %s 秒"; + }; + zh_TW.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "在每分鐘的 %s 到 %s 秒"; + }; + zh_TW.prototype.atX0SecondsPastTheMinute = function () { + return "在每分鐘的 %s 秒"; + }; + zh_TW.prototype.everyX0Minutes = function () { + return "每 %s 分鐘"; + }; + zh_TW.prototype.minutesX0ThroughX1PastTheHour = function () { + return "在每小時的 %s 到 %s 分鐘"; + }; + zh_TW.prototype.atX0MinutesPastTheHour = function () { + return "在每小時的 %s 分"; + }; + zh_TW.prototype.everyX0Hours = function () { + return "每 %s 小時"; + }; + zh_TW.prototype.betweenX0AndX1 = function () { + return "在 %s 和 %s 之間"; + }; + zh_TW.prototype.atX0 = function () { + return "在 %s"; + }; + zh_TW.prototype.commaEveryDay = function () { + return ", 每天"; + }; + zh_TW.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 每週的每 %s 天"; + }; + zh_TW.prototype.commaX0ThroughX1 = function () { + return ", %s 到 %s"; + }; + zh_TW.prototype.first = function () { + return "第一個"; + }; + zh_TW.prototype.second = function () { + return "第二個"; + }; + zh_TW.prototype.third = function () { + return "第三個"; + }; + zh_TW.prototype.fourth = function () { + return "第四個"; + }; + zh_TW.prototype.fifth = function () { + return "第五個"; + }; + zh_TW.prototype.commaOnThe = function () { + return ", 在每月 "; + }; + zh_TW.prototype.spaceX0OfTheMonth = function () { + return "%s "; + }; + zh_TW.prototype.lastDay = function () { + return "最後一天"; + }; + zh_TW.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 每月的最後一個 %s "; + }; + zh_TW.prototype.commaOnlyOnX0 = function () { + return ", 僅在 %s"; + }; + zh_TW.prototype.commaAndOnX0 = function () { + return ", 和 %s"; + }; + zh_TW.prototype.commaEveryX0Months = function () { + return ", 每 %s 月"; + }; + zh_TW.prototype.commaOnlyInX0 = function () { + return ", 僅在 %s"; + }; + zh_TW.prototype.commaOnlyInMonthX0 = function () { + return ", 僅在%s"; + }; + zh_TW.prototype.commaOnlyInYearX0 = function () { + return ", 僅在 %s 年"; + }; + zh_TW.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 每月的最後一天"; + }; + zh_TW.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 每月的最後一個工作日"; + }; + zh_TW.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s 這個月的最後一天的前幾天"; + }; + zh_TW.prototype.firstWeekday = function () { + return "第一個工作日"; + }; + zh_TW.prototype.weekdayNearestDayX0 = function () { + return "最接近 %s 號的工作日"; + }; + zh_TW.prototype.commaOnTheX0OfTheMonth = function () { + return ", 每月的 %s "; + }; + zh_TW.prototype.commaEveryX0Days = function () { + return ", 每 %s 天"; + }; + zh_TW.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 在每月的 %s 和 %s 之間"; + }; + zh_TW.prototype.commaOnDayX0OfTheMonth = function () { + return ", 每月的 %s"; + }; + zh_TW.prototype.commaEveryX0Years = function () { + return ", 每 %s 年"; + }; + zh_TW.prototype.commaStartingX0 = function () { + return ", %s 開始"; + }; + zh_TW.prototype.dayX0 = function () { + return " %s 號"; + }; + zh_TW.prototype.daysOfTheWeek = function () { + return ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; + }; + zh_TW.prototype.monthsOfTheYear = function () { + return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]; + }; + return zh_TW; +}()); +exports.zh_TW = zh_TW; + + +/***/ }), +/* 26 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ja = (function () { + function ja() { + } + ja.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + ja.prototype.everyMinute = function () { + return "毎分"; + }; + ja.prototype.everyHour = function () { + return "毎時"; + }; + ja.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "式の記述を生成する際にエラーが発生しました。Cron 式の構文を確認してください。"; + }; + ja.prototype.atSpace = function () { + return "次において実施"; + }; + ja.prototype.everyMinuteBetweenX0AndX1 = function () { + return "%s から %s まで毎分"; + }; + ja.prototype.at = function () { + return "次において実施"; + }; + ja.prototype.spaceAnd = function () { + return "と"; + }; + ja.prototype.everySecond = function () { + return "毎秒"; + }; + ja.prototype.everyX0Seconds = function () { + return "%s 秒ごと"; + }; + ja.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "毎分 %s 秒から %s 秒まで"; + }; + ja.prototype.atX0SecondsPastTheMinute = function () { + return "毎分 %s 秒過ぎ"; + }; + ja.prototype.everyX0Minutes = function () { + return "%s 分ごと"; + }; + ja.prototype.minutesX0ThroughX1PastTheHour = function () { + return "毎時 %s 分から %s 分まで"; + }; + ja.prototype.atX0MinutesPastTheHour = function () { + return "毎時 %s 分過ぎ"; + }; + ja.prototype.everyX0Hours = function () { + return "%s 時間ごと"; + }; + ja.prototype.betweenX0AndX1 = function () { + return "%s と %s の間"; + }; + ja.prototype.atX0 = function () { + return "次において実施 %s"; + }; + ja.prototype.commaEveryDay = function () { + return "、毎日"; + }; + ja.prototype.commaEveryX0DaysOfTheWeek = function () { + return "、週のうち %s 日ごと"; + }; + ja.prototype.commaX0ThroughX1 = function () { + return "、%s から %s まで"; + }; + ja.prototype.first = function () { + return "1 番目"; + }; + ja.prototype.second = function () { + return "2 番目"; + }; + ja.prototype.third = function () { + return "3 番目"; + }; + ja.prototype.fourth = function () { + return "4 番目"; + }; + ja.prototype.fifth = function () { + return "5 番目"; + }; + ja.prototype.commaOnThe = function () { + return "次に"; + }; + ja.prototype.spaceX0OfTheMonth = function () { + return "月のうち %s"; + }; + ja.prototype.commaOnTheLastX0OfTheMonth = function () { + return "月の最後の %s に"; + }; + ja.prototype.commaOnlyOnX0 = function () { + return "%s にのみ"; + }; + ja.prototype.commaEveryX0Months = function () { + return "、%s か月ごと"; + }; + ja.prototype.commaOnlyInX0 = function () { + return "%s でのみ"; + }; + ja.prototype.commaOnTheLastDayOfTheMonth = function () { + return "次の最終日に"; + }; + ja.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return "月の最後の平日に"; + }; + ja.prototype.firstWeekday = function () { + return "最初の平日"; + }; + ja.prototype.weekdayNearestDayX0 = function () { + return "%s 日の直近の平日"; + }; + ja.prototype.commaOnTheX0OfTheMonth = function () { + return "月の %s に"; + }; + ja.prototype.commaEveryX0Days = function () { + return "、%s 日ごと"; + }; + ja.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return "、月の %s 日から %s 日の間"; + }; + ja.prototype.commaOnDayX0OfTheMonth = function () { + return "、月の %s 日目"; + }; + ja.prototype.spaceAndSpace = function () { + return "と"; + }; + ja.prototype.commaEveryMinute = function () { + return "、毎分"; + }; + ja.prototype.commaEveryHour = function () { + return "、毎時"; + }; + ja.prototype.commaEveryX0Years = function () { + return "、%s 年ごと"; + }; + ja.prototype.commaStartingX0 = function () { + return "、%s に開始"; + }; + ja.prototype.aMPeriod = function () { + return "AM"; + }; + ja.prototype.pMPeriod = function () { + return "PM"; + }; + ja.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return "月の最終日の %s 日前"; + }; + ja.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ja.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ja.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ja.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ja.prototype.lastDay = function () { + return "最終日"; + }; + ja.prototype.commaAndOnX0 = function () { + return "、〜と %s"; + }; + ja.prototype.daysOfTheWeek = function () { + return ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"]; + }; + ja.prototype.monthsOfTheYear = function () { + return ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"]; + }; + return ja; +}()); +exports.ja = ja; + + +/***/ }), +/* 27 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var he = (function () { + function he() { + } + he.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + he.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + he.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + he.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + he.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + he.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "אירעה שגיאה בעת יצירת תיאור הביטוי. בדוק את תחביר הביטוי cron."; + }; + he.prototype.everyMinute = function () { + return "כל דקה"; + }; + he.prototype.everyHour = function () { + return "כל שעה"; + }; + he.prototype.atSpace = function () { + return "ב "; + }; + he.prototype.everyMinuteBetweenX0AndX1 = function () { + return "כל דקה %s עד %s"; + }; + he.prototype.at = function () { + return "ב"; + }; + he.prototype.spaceAnd = function () { + return " ו"; + }; + he.prototype.everySecond = function () { + return "כל שניה"; + }; + he.prototype.everyX0Seconds = function () { + return "כל %s שניות"; + }; + he.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "%s עד %s שניות של הדקה"; + }; + he.prototype.atX0SecondsPastTheMinute = function () { + return "ב %s שניות של הדקה"; + }; + he.prototype.everyX0Minutes = function () { + return "כל %s דקות"; + }; + he.prototype.minutesX0ThroughX1PastTheHour = function () { + return "%s עד %s דקות של השעה"; + }; + he.prototype.atX0MinutesPastTheHour = function () { + return "ב %s דקות של השעה"; + }; + he.prototype.everyX0Hours = function () { + return "כל %s שעות"; + }; + he.prototype.betweenX0AndX1 = function () { + return "%s עד %s"; + }; + he.prototype.atX0 = function () { + return "ב %s"; + }; + he.prototype.commaEveryDay = function () { + return ", כל יום"; + }; + he.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", כל %s ימים בשבוע"; + }; + he.prototype.commaX0ThroughX1 = function () { + return ", %s עד %s"; + }; + he.prototype.first = function () { + return "ראשון"; + }; + he.prototype.second = function () { + return "שני"; + }; + he.prototype.third = function () { + return "שלישי"; + }; + he.prototype.fourth = function () { + return "רביעי"; + }; + he.prototype.fifth = function () { + return "חמישי"; + }; + he.prototype.commaOnThe = function () { + return ", ב "; + }; + he.prototype.spaceX0OfTheMonth = function () { + return " %s של החודש"; + }; + he.prototype.lastDay = function () { + return "היום האחרון"; + }; + he.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", רק ב %s של החודש"; + }; + he.prototype.commaOnlyOnX0 = function () { + return ", רק ב %s"; + }; + he.prototype.commaAndOnX0 = function () { + return ", וב %s"; + }; + he.prototype.commaEveryX0Months = function () { + return ", כל %s חודשים"; + }; + he.prototype.commaOnlyInX0 = function () { + return ", רק ב %s"; + }; + he.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ביום האחרון של החודש"; + }; + he.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ביום החול האחרון של החודש"; + }; + he.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s ימים לפני היום האחרון בחודש"; + }; + he.prototype.firstWeekday = function () { + return "יום החול הראשון"; + }; + he.prototype.weekdayNearestDayX0 = function () { + return "יום החול הראשון הקרוב אל %s"; + }; + he.prototype.commaOnTheX0OfTheMonth = function () { + return ", ביום ה%s של החודש"; + }; + he.prototype.commaEveryX0Days = function () { + return ", כל %s ימים"; + }; + he.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", בין היום ה%s וה%s של החודש"; + }; + he.prototype.commaOnDayX0OfTheMonth = function () { + return ", ביום ה%s של החודש"; + }; + he.prototype.commaEveryX0Years = function () { + return ", כל %s שנים"; + }; + he.prototype.commaStartingX0 = function () { + return ", החל מ %s"; + }; + he.prototype.daysOfTheWeek = function () { + return ["יום ראשון", "יום שני", "יום שלישי", "יום רביעי", "יום חמישי", "יום שישי", "יום שבת"]; + }; + he.prototype.monthsOfTheYear = function () { + return [ + "ינואר", + "פברואר", + "מרץ", + "אפריל", + "מאי", + "יוני", + "יולי", + "אוגוסט", + "ספטמבר", + "אוקטובר", + "נובמבר", + "דצמבר" + ]; + }; + return he; +}()); +exports.he = he; + + +/***/ }), +/* 28 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var cs = (function () { + function cs() { + } + cs.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + cs.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + cs.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + cs.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + cs.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + cs.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu."; + }; + cs.prototype.everyMinute = function () { + return "každou minutu"; + }; + cs.prototype.everyHour = function () { + return "každou hodinu"; + }; + cs.prototype.atSpace = function () { + return "V "; + }; + cs.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Každou minutu mezi %s a %s"; + }; + cs.prototype.at = function () { + return "V"; + }; + cs.prototype.spaceAnd = function () { + return " a"; + }; + cs.prototype.everySecond = function () { + return "každou sekundu"; + }; + cs.prototype.everyX0Seconds = function () { + return "každých %s sekund"; + }; + cs.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + cs.prototype.atX0SecondsPastTheMinute = function () { + return "v %s sekund"; + }; + cs.prototype.everyX0Minutes = function () { + return "každých %s minut"; + }; + cs.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuty od %s do %s"; + }; + cs.prototype.atX0MinutesPastTheHour = function () { + return "v %s minut"; + }; + cs.prototype.everyX0Hours = function () { + return "každých %s hodin"; + }; + cs.prototype.betweenX0AndX1 = function () { + return "mezi %s a %s"; + }; + cs.prototype.atX0 = function () { + return "v %s"; + }; + cs.prototype.commaEveryDay = function () { + return ", každý den"; + }; + cs.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", každých %s dní v týdnu"; + }; + cs.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + cs.prototype.first = function () { + return "první"; + }; + cs.prototype.second = function () { + return "druhý"; + }; + cs.prototype.third = function () { + return "třetí"; + }; + cs.prototype.fourth = function () { + return "čtvrtý"; + }; + cs.prototype.fifth = function () { + return "pátý"; + }; + cs.prototype.commaOnThe = function () { + return ", "; + }; + cs.prototype.spaceX0OfTheMonth = function () { + return " %s v měsíci"; + }; + cs.prototype.lastDay = function () { + return "poslední den"; + }; + cs.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", poslední %s v měsíci"; + }; + cs.prototype.commaOnlyOnX0 = function () { + return ", pouze v %s"; + }; + cs.prototype.commaAndOnX0 = function () { + return ", a v %s"; + }; + cs.prototype.commaEveryX0Months = function () { + return ", každých %s měsíců"; + }; + cs.prototype.commaOnlyInX0 = function () { + return ", pouze v %s"; + }; + cs.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", poslední den v měsíci"; + }; + cs.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", poslední pracovní den v měsíci"; + }; + cs.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dní před posledním dnem v měsíci"; + }; + cs.prototype.firstWeekday = function () { + return "první pracovní den"; + }; + cs.prototype.weekdayNearestDayX0 = function () { + return "pracovní den nejblíže %s. dni"; + }; + cs.prototype.commaOnTheX0OfTheMonth = function () { + return ", v %s v měsíci"; + }; + cs.prototype.commaEveryX0Days = function () { + return ", každých %s dnů"; + }; + cs.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mezi dny %s a %s v měsíci"; + }; + cs.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. den v měsíci"; + }; + cs.prototype.commaEveryX0Years = function () { + return ", každých %s roků"; + }; + cs.prototype.commaStartingX0 = function () { + return ", začínající %s"; + }; + cs.prototype.daysOfTheWeek = function () { + return ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"]; + }; + cs.prototype.monthsOfTheYear = function () { + return [ + "Leden", + "Únor", + "Březen", + "Duben", + "Květen", + "Červen", + "Červenec", + "Srpen", + "Září", + "Říjen", + "Listopad", + "Prosinec" + ]; + }; + return cs; +}()); +exports.cs = cs; + + +/***/ }), +/* 29 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sk = (function () { + function sk() { + } + sk.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sk.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sk.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sk.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sk.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sk.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Pri vytváraní popisu došlo k chybe. Skontrolujte prosím správnosť syntaxe cronu."; + }; + sk.prototype.everyMinute = function () { + return "každú minútu"; + }; + sk.prototype.everyHour = function () { + return "každú hodinu"; + }; + sk.prototype.atSpace = function () { + return "V "; + }; + sk.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Každú minútu medzi %s a %s"; + }; + sk.prototype.at = function () { + return "V"; + }; + sk.prototype.spaceAnd = function () { + return " a"; + }; + sk.prototype.everySecond = function () { + return "každú sekundu"; + }; + sk.prototype.everyX0Seconds = function () { + return "každých %s sekúnd"; + }; + sk.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + sk.prototype.atX0SecondsPastTheMinute = function () { + return "v %s sekúnd"; + }; + sk.prototype.everyX0Minutes = function () { + return "každých %s minút"; + }; + sk.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minúty od %s do %s"; + }; + sk.prototype.atX0MinutesPastTheHour = function () { + return "v %s minút"; + }; + sk.prototype.everyX0Hours = function () { + return "každých %s hodín"; + }; + sk.prototype.betweenX0AndX1 = function () { + return "medzi %s a %s"; + }; + sk.prototype.atX0 = function () { + return "v %s"; + }; + sk.prototype.commaEveryDay = function () { + return ", každý deň"; + }; + sk.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", každých %s dní v týždni"; + }; + sk.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + sk.prototype.first = function () { + return "prvý"; + }; + sk.prototype.second = function () { + return "druhý"; + }; + sk.prototype.third = function () { + return "tretí"; + }; + sk.prototype.fourth = function () { + return "štvrtý"; + }; + sk.prototype.fifth = function () { + return "piaty"; + }; + sk.prototype.commaOnThe = function () { + return ", "; + }; + sk.prototype.spaceX0OfTheMonth = function () { + return " %s v mesiaci"; + }; + sk.prototype.lastDay = function () { + return "posledný deň"; + }; + sk.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", posledný %s v mesiaci"; + }; + sk.prototype.commaOnlyOnX0 = function () { + return ", iba v %s"; + }; + sk.prototype.commaAndOnX0 = function () { + return ", a v %s"; + }; + sk.prototype.commaEveryX0Months = function () { + return ", každých %s mesiacov"; + }; + sk.prototype.commaOnlyInX0 = function () { + return ", iba v %s"; + }; + sk.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", posledný deň v mesiaci"; + }; + sk.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", posledný pracovný deň v mesiaci"; + }; + sk.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dní pred posledným dňom v mesiaci"; + }; + sk.prototype.firstWeekday = function () { + return "prvý pracovný deň"; + }; + sk.prototype.weekdayNearestDayX0 = function () { + return "pracovný deň najbližšie %s. dňu"; + }; + sk.prototype.commaOnTheX0OfTheMonth = function () { + return ", v %s v mesiaci"; + }; + sk.prototype.commaEveryX0Days = function () { + return ", každých %s dní"; + }; + sk.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", medzi dňami %s a %s v mesiaci"; + }; + sk.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. deň v mesiaci"; + }; + sk.prototype.commaEveryX0Years = function () { + return ", každých %s rokov"; + }; + sk.prototype.commaStartingX0 = function () { + return ", začínajúcich %s"; + }; + sk.prototype.daysOfTheWeek = function () { + return ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota"]; + }; + sk.prototype.monthsOfTheYear = function () { + return [ + "Január", + "Február", + "Marec", + "Apríl", + "Máj", + "Jún", + "Júl", + "August", + "September", + "Október", + "November", + "December" + ]; + }; + return sk; +}()); +exports.sk = sk; + + +/***/ }), +/* 30 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fi = (function () { + function fi() { + } + fi.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + fi.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Virhe kuvauksen generoinnissa. Tarkista cron-syntaksi."; + }; + fi.prototype.at = function () { + return "Klo"; + }; + fi.prototype.atSpace = function () { + return "Klo "; + }; + fi.prototype.atX0 = function () { + return "klo %s"; + }; + fi.prototype.atX0MinutesPastTheHour = function () { + return "%s minuuttia yli"; + }; + fi.prototype.atX0MinutesPastTheHourGt20 = function () { + return "%s minuuttia yli"; + }; + fi.prototype.atX0SecondsPastTheMinute = function () { + return "%s sekunnnin jälkeen"; + }; + fi.prototype.betweenX0AndX1 = function () { + return "%s - %s välillä"; + }; + fi.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", kuukauden päivien %s ja %s välillä"; + }; + fi.prototype.commaEveryDay = function () { + return ", joka päivä"; + }; + fi.prototype.commaEveryHour = function () { + return ", joka tunti"; + }; + fi.prototype.commaEveryMinute = function () { + return ", joka minuutti"; + }; + fi.prototype.commaEveryX0Days = function () { + return ", joka %s. päivä"; + }; + fi.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", joka %s. viikonpäivä"; + }; + fi.prototype.commaEveryX0Months = function () { + return ", joka %s. kuukausi"; + }; + fi.prototype.commaEveryX0Years = function () { + return ", joka %s. vuosi"; + }; + fi.prototype.commaOnDayX0OfTheMonth = function () { + return ", kuukauden %s päivä"; + }; + fi.prototype.commaOnlyInX0 = function () { + return ", vain %s"; + }; + fi.prototype.commaOnlyOnX0 = function () { + return ", vain %s"; + }; + fi.prototype.commaOnThe = function () { + return ","; + }; + fi.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", kuukauden viimeisenä päivänä"; + }; + fi.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", kuukauden viimeisenä viikonpäivänä"; + }; + fi.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", kuukauden viimeinen %s"; + }; + fi.prototype.commaOnTheX0OfTheMonth = function () { + return ", kuukauden %s"; + }; + fi.prototype.commaX0ThroughX1 = function () { + return ", %s - %s"; + }; + fi.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s päivää ennen kuukauden viimeistä päivää"; + }; + fi.prototype.commaStartingX0 = function () { + return ", alkaen %s"; + }; + fi.prototype.everyHour = function () { + return "joka tunti"; + }; + fi.prototype.everyMinute = function () { + return "joka minuutti"; + }; + fi.prototype.everyMinuteBetweenX0AndX1 = function () { + return "joka minuutti %s - %s välillä"; + }; + fi.prototype.everySecond = function () { + return "joka sekunti"; + }; + fi.prototype.everyX0Hours = function () { + return "joka %s. tunti"; + }; + fi.prototype.everyX0Minutes = function () { + return "joka %s. minuutti"; + }; + fi.prototype.everyX0Seconds = function () { + return "joka %s. sekunti"; + }; + fi.prototype.fifth = function () { + return "viides"; + }; + fi.prototype.first = function () { + return "ensimmäinen"; + }; + fi.prototype.firstWeekday = function () { + return "ensimmäinen viikonpäivä"; + }; + fi.prototype.fourth = function () { + return "neljäs"; + }; + fi.prototype.minutesX0ThroughX1PastTheHour = function () { + return "joka tunti minuuttien %s - %s välillä"; + }; + fi.prototype.second = function () { + return "toinen"; + }; + fi.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "joka minuutti sekunttien %s - %s välillä"; + }; + fi.prototype.spaceAnd = function () { + return " ja"; + }; + fi.prototype.spaceAndSpace = function () { + return " ja "; + }; + fi.prototype.spaceX0OfTheMonth = function () { + return " %s kuukaudessa"; + }; + fi.prototype.third = function () { + return "kolmas"; + }; + fi.prototype.weekdayNearestDayX0 = function () { + return "viikonpäivä lähintä %s päivää"; + }; + fi.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fi.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fi.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fi.prototype.lastDay = function () { + return "viimeinen päivä"; + }; + fi.prototype.commaAndOnX0 = function () { + return ", ja edelleen %s"; + }; + fi.prototype.daysOfTheWeek = function () { + return ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"]; + }; + fi.prototype.monthsOfTheYear = function () { + return [ + "tammikuu", + "helmikuu", + "maaliskuu", + "huhtikuu", + "toukokuu", + "kesäkuu", + "heinäkuu", + "elokuu", + "syyskuu", + "lokakuu", + "marraskuu", + "joulukuu" + ]; + }; + return fi; +}()); +exports.fi = fi; + + +/***/ }), +/* 31 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sl = (function () { + function sl() { + } + sl.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Pri generiranju opisa izraza je prišlo do napake. Preverite sintakso izraza cron."; + }; + sl.prototype.at = function () { + return "Ob"; + }; + sl.prototype.atSpace = function () { + return "Ob "; + }; + sl.prototype.atX0 = function () { + return "ob %s"; + }; + sl.prototype.atX0MinutesPastTheHour = function () { + return "ob %s."; + }; + sl.prototype.atX0SecondsPastTheMinute = function () { + return "ob %s."; + }; + sl.prototype.betweenX0AndX1 = function () { + return "od %s do %s"; + }; + sl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", od %s. do %s. dne v mesecu"; + }; + sl.prototype.commaEveryDay = function () { + return ", vsak dan"; + }; + sl.prototype.commaEveryX0Days = function () { + return ", vsakih %s dni"; + }; + sl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", vsakih %s dni v tednu"; + }; + sl.prototype.commaEveryX0Months = function () { + return ", vsakih %s mesecev"; + }; + sl.prototype.commaEveryX0Years = function () { + return ", vsakih %s let"; + }; + sl.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. dan v mesecu"; + }; + sl.prototype.commaOnlyInX0 = function () { + return ", samo v %s"; + }; + sl.prototype.commaOnlyOnX0 = function () { + return ", samo v %s"; + }; + sl.prototype.commaAndOnX0 = function () { + return "in naprej %s"; + }; + sl.prototype.commaOnThe = function () { + return ", "; + }; + sl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", zadnji %s v mesecu"; + }; + sl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", zadnji delovni dan v mesecu"; + }; + sl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dni pred koncem meseca"; + }; + sl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", zadnji %s v mesecu"; + }; + sl.prototype.commaOnTheX0OfTheMonth = function () { + return ", %s v mesecu"; + }; + sl.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + sl.prototype.everyHour = function () { + return "vsako uro"; + }; + sl.prototype.everyMinute = function () { + return "vsako minuto"; + }; + sl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Vsako minuto od %s do %s"; + }; + sl.prototype.everySecond = function () { + return "vsako sekundo"; + }; + sl.prototype.everyX0Hours = function () { + return "vsakih %s ur"; + }; + sl.prototype.everyX0Minutes = function () { + return "vsakih %s minut"; + }; + sl.prototype.everyX0Seconds = function () { + return "vsakih %s sekund"; + }; + sl.prototype.fifth = function () { + return "peti"; + }; + sl.prototype.first = function () { + return "prvi"; + }; + sl.prototype.firstWeekday = function () { + return "prvi delovni dan"; + }; + sl.prototype.fourth = function () { + return "četrti"; + }; + sl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minute od %s do %s"; + }; + sl.prototype.second = function () { + return "drugi"; + }; + sl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunde od %s do %s"; + }; + sl.prototype.spaceAnd = function () { + return " in"; + }; + sl.prototype.spaceX0OfTheMonth = function () { + return " %s v mesecu"; + }; + sl.prototype.lastDay = function () { + return "zadnjič"; + }; + sl.prototype.third = function () { + return "tretji"; + }; + sl.prototype.weekdayNearestDayX0 = function () { + return "delovni dan, najbližji %s. dnevu"; + }; + sl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sl.prototype.commaStartingX0 = function () { + return ", začenši %s"; + }; + sl.prototype.daysOfTheWeek = function () { + return ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota"]; + }; + sl.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "marec", + "april", + "maj", + "junij", + "julij", + "avgust", + "september", + "oktober", + "november", + "december" + ]; + }; + return sl; +}()); +exports.sl = sl; + + +/***/ }), +/* 32 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sw = (function () { + function sw() { + } + sw.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sw.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sw.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sw.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sw.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + sw.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Kuna tatizo wakati wa kutunga msemo. Angalia cron expression syntax."; + }; + sw.prototype.everyMinute = function () { + return "kila dakika"; + }; + sw.prototype.everyHour = function () { + return "kila saa"; + }; + sw.prototype.atSpace = function () { + return "Kwa "; + }; + sw.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Kila dakika kwanzia %s hadi %s"; + }; + sw.prototype.at = function () { + return "Kwa"; + }; + sw.prototype.spaceAnd = function () { + return " na"; + }; + sw.prototype.everySecond = function () { + return "kila sekunde"; + }; + sw.prototype.everyX0Seconds = function () { + return "kila sekunde %s"; + }; + sw.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunde ya %s hadi %s baada ya dakika"; + }; + sw.prototype.atX0SecondsPastTheMinute = function () { + return "at %s seconds past the minute"; + return "sekunde %s baada ya dakika"; + }; + sw.prototype.everyX0Minutes = function () { + return "kila dakika %s"; + }; + sw.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutes %s through %s past the hour"; + }; + sw.prototype.atX0MinutesPastTheHour = function () { + return "at %s minutes past the hour"; + }; + sw.prototype.everyX0Hours = function () { + return "every %s hours"; + }; + sw.prototype.betweenX0AndX1 = function () { + return "kati ya %s na %s"; + }; + sw.prototype.atX0 = function () { + return "kwenye %s"; + }; + sw.prototype.commaEveryDay = function () { + return ", kila siku"; + }; + sw.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", kila siku %s ya wiki"; + }; + sw.prototype.commaX0ThroughX1 = function () { + return ", %s hadi %s"; + }; + sw.prototype.first = function () { + return "ya kwanza"; + }; + sw.prototype.second = function () { + return "ya pili"; + }; + sw.prototype.third = function () { + return "ya tatu"; + }; + sw.prototype.fourth = function () { + return "ya nne"; + }; + sw.prototype.fifth = function () { + return "ya tano"; + }; + sw.prototype.commaOnThe = function () { + return ", kwenye "; + }; + sw.prototype.spaceX0OfTheMonth = function () { + return " siku %s ya mwezi"; + }; + sw.prototype.lastDay = function () { + return "siku ya mwisho"; + }; + sw.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaOnlyOnX0 = function () { + return ", kwa %s tu"; + }; + sw.prototype.commaAndOnX0 = function () { + return ", na pia %s"; + }; + sw.prototype.commaEveryX0Months = function () { + return ", kila mwezi wa %s"; + }; + sw.prototype.commaOnlyInX0 = function () { + return ", kwa %s tu"; + }; + sw.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", siku ya mwisho wa mwezi"; + }; + sw.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", wikendi ya mwisho wa mwezi"; + }; + sw.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", siku ya %s kabla ya siku ya mwisho wa mwezi"; + }; + sw.prototype.firstWeekday = function () { + return "siku za kazi ya kwanza"; + }; + sw.prototype.weekdayNearestDayX0 = function () { + return "siku ya kazi karibu na siku ya %s"; + }; + sw.prototype.commaOnTheX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaEveryX0Days = function () { + return ", kila siku %s"; + }; + sw.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", kati ya siku %s na %s ya mwezi"; + }; + sw.prototype.commaOnDayX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaEveryX0Years = function () { + return ", kila miaka %s"; + }; + sw.prototype.commaStartingX0 = function () { + return ", kwanzia %s"; + }; + sw.prototype.daysOfTheWeek = function () { + return ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"]; + }; + sw.prototype.monthsOfTheYear = function () { + return [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ]; + }; + return sw; +}()); +exports.sw = sw; + + +/***/ }), +/* 33 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fa = (function () { + function fa() { + } + fa.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fa.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + fa.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fa.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fa.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + fa.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "خطایی در نمایش توضیحات این وظیفه رخ داد. لطفا ساختار آن را بررسی کنید."; + }; + fa.prototype.everyMinute = function () { + return "هر دقیقه"; + }; + fa.prototype.everyHour = function () { + return "هر ساعت"; + }; + fa.prototype.atSpace = function () { + return "در "; + }; + fa.prototype.everyMinuteBetweenX0AndX1 = function () { + return "هر دقیقه بین %s و %s"; + }; + fa.prototype.at = function () { + return "در"; + }; + fa.prototype.spaceAnd = function () { + return " و"; + }; + fa.prototype.everySecond = function () { + return "هر ثانیه"; + }; + fa.prototype.everyX0Seconds = function () { + return "هر %s ثانیه"; + }; + fa.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "ثانیه %s تا %s دقیقه گذشته"; + }; + fa.prototype.atX0SecondsPastTheMinute = function () { + return "در %s قانیه از دقیقه گذشته"; + }; + fa.prototype.everyX0Minutes = function () { + return "هر %s دقیقه"; + }; + fa.prototype.minutesX0ThroughX1PastTheHour = function () { + return "دقیقه %s تا %s ساعت گذشته"; + }; + fa.prototype.atX0MinutesPastTheHour = function () { + return "در %s دقیقه پس از ساعت"; + }; + fa.prototype.everyX0Hours = function () { + return "هر %s ساعت"; + }; + fa.prototype.betweenX0AndX1 = function () { + return "بین %s و %s"; + }; + fa.prototype.atX0 = function () { + return "در %s"; + }; + fa.prototype.commaEveryDay = function () { + return ", هر روز"; + }; + fa.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", هر %s روز از هفته"; + }; + fa.prototype.commaX0ThroughX1 = function () { + return ", %s تا %s"; + }; + fa.prototype.first = function () { + return "اول"; + }; + fa.prototype.second = function () { + return "دوم"; + }; + fa.prototype.third = function () { + return "سوم"; + }; + fa.prototype.fourth = function () { + return "چهارم"; + }; + fa.prototype.fifth = function () { + return "پنجم"; + }; + fa.prototype.commaOnThe = function () { + return ", در "; + }; + fa.prototype.spaceX0OfTheMonth = function () { + return " %s ماه"; + }; + fa.prototype.lastDay = function () { + return "آخرین روز"; + }; + fa.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaOnlyOnX0 = function () { + return ", فقط در %s"; + }; + fa.prototype.commaAndOnX0 = function () { + return ", و در %s"; + }; + fa.prototype.commaEveryX0Months = function () { + return ", هر %s ماه"; + }; + fa.prototype.commaOnlyInX0 = function () { + return ", فقط در %s"; + }; + fa.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", در آخرین روز ماه"; + }; + fa.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", در آخرین روز ماه"; + }; + fa.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s روز قبل از آخرین روز ماه"; + }; + fa.prototype.firstWeekday = function () { + return "اولین روز"; + }; + fa.prototype.weekdayNearestDayX0 = function () { + return "روز نزدیک به روز %s"; + }; + fa.prototype.commaOnTheX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaEveryX0Days = function () { + return ", هر %s روز"; + }; + fa.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", بین روز %s و %s ماه"; + }; + fa.prototype.commaOnDayX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaEveryMinute = function () { + return ", هر minute"; + }; + fa.prototype.commaEveryHour = function () { + return ", هر ساعت"; + }; + fa.prototype.commaEveryX0Years = function () { + return ", هر %s سال"; + }; + fa.prototype.commaStartingX0 = function () { + return ", آغاز %s"; + }; + fa.prototype.daysOfTheWeek = function () { + return ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه"]; + }; + fa.prototype.monthsOfTheYear = function () { + return [ + "ژانویه", + "فوریه", + "مارس", + "آپریل", + "مه", + "ژوئن", + "ژوئیه", + "آگوست", + "سپتامبر", + "اکتبر", + "نوامبر", + "دسامبر" + ]; + }; + return fa; +}()); +exports.fa = fa; + + +/***/ }) +/******/ ]); +}); + +/***/ }), + +/***/ "1276": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var isRegExp = __webpack_require__("44e7"); +var anObject = __webpack_require__("825a"); +var requireObjectCoercible = __webpack_require__("1d80"); +var speciesConstructor = __webpack_require__("4840"); +var advanceStringIndex = __webpack_require__("8aa5"); +var toLength = __webpack_require__("50c4"); +var callRegExpExec = __webpack_require__("14c3"); +var regexpExec = __webpack_require__("9263"); +var fails = __webpack_require__("d039"); + +var arrayPush = [].push; +var min = Math.min; +var MAX_UINT32 = 0xFFFFFFFF; + +// babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError +var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); }); + +// @@split logic +fixRegExpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) { + var internalSplit; + if ( + 'abbc'.split(/(b)*/)[1] == 'c' || + 'test'.split(/(?:)/, -1).length != 4 || + 'ab'.split(/(?:ab)*/).length != 2 || + '.'.split(/(.?)(.?)/).length != 4 || + '.'.split(/()()/).length > 1 || + ''.split(/.?/).length + ) { + // based on es5-shim implementation, need to rework it + internalSplit = function (separator, limit) { + var string = String(requireObjectCoercible(this)); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (separator === undefined) return [string]; + // If `separator` is not a regex, use native split + if (!isRegExp(separator)) { + return nativeSplit.call(string, separator, lim); + } + var output = []; + var flags = (separator.ignoreCase ? 'i' : '') + + (separator.multiline ? 'm' : '') + + (separator.unicode ? 'u' : '') + + (separator.sticky ? 'y' : ''); + var lastLastIndex = 0; + // Make `global` and avoid `lastIndex` issues by working with a copy + var separatorCopy = new RegExp(separator.source, flags + 'g'); + var match, lastIndex, lastLength; + while (match = regexpExec.call(separatorCopy, string)) { + lastIndex = separatorCopy.lastIndex; + if (lastIndex > lastLastIndex) { + output.push(string.slice(lastLastIndex, match.index)); + if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1)); + lastLength = match[0].length; + lastLastIndex = lastIndex; + if (output.length >= lim) break; + } + if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop + } + if (lastLastIndex === string.length) { + if (lastLength || !separatorCopy.test('')) output.push(''); + } else output.push(string.slice(lastLastIndex)); + return output.length > lim ? output.slice(0, lim) : output; + }; + // Chakra, V8 + } else if ('0'.split(undefined, 0).length) { + internalSplit = function (separator, limit) { + return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit); + }; + } else internalSplit = nativeSplit; + + return [ + // `String.prototype.split` method + // https://tc39.github.io/ecma262/#sec-string.prototype.split + function split(separator, limit) { + var O = requireObjectCoercible(this); + var splitter = separator == undefined ? undefined : separator[SPLIT]; + return splitter !== undefined + ? splitter.call(separator, O, limit) + : internalSplit.call(String(O), separator, limit); + }, + // `RegExp.prototype[@@split]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split + // + // NOTE: This cannot be properly polyfilled in engines that don't support + // the 'y' flag. + function (regexp, limit) { + var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit); + if (res.done) return res.value; + + var rx = anObject(regexp); + var S = String(this); + var C = speciesConstructor(rx, RegExp); + + var unicodeMatching = rx.unicode; + var flags = (rx.ignoreCase ? 'i' : '') + + (rx.multiline ? 'm' : '') + + (rx.unicode ? 'u' : '') + + (SUPPORTS_Y ? 'y' : 'g'); + + // ^(? + rx + ) is needed, in combination with some S slicing, to + // simulate the 'y' flag. + var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : []; + var p = 0; + var q = 0; + var A = []; + while (q < S.length) { + splitter.lastIndex = SUPPORTS_Y ? q : 0; + var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q)); + var e; + if ( + z === null || + (e = min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p + ) { + q = advanceStringIndex(S, q, unicodeMatching); + } else { + A.push(S.slice(p, q)); + if (A.length === lim) return A; + for (var i = 1; i <= z.length - 1; i++) { + A.push(z[i]); + if (A.length === lim) return A; + } + q = p = e; + } + } + A.push(S.slice(p)); + return A; + } + ]; +}, !SUPPORTS_Y); + + +/***/ }), + +/***/ "14c3": +/***/ (function(module, exports, __webpack_require__) { + +var classof = __webpack_require__("c6b6"); +var regexpExec = __webpack_require__("9263"); + +// `RegExpExec` abstract operation +// https://tc39.github.io/ecma262/#sec-regexpexec +module.exports = function (R, S) { + var exec = R.exec; + if (typeof exec === 'function') { + var result = exec.call(R, S); + if (typeof result !== 'object') { + throw TypeError('RegExp exec method returned something other than an Object or null'); + } + return result; + } + + if (classof(R) !== 'RegExp') { + throw TypeError('RegExp#exec called on incompatible receiver'); + } + + return regexpExec.call(R, S); +}; + + + +/***/ }), + +/***/ "159b": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var DOMIterables = __webpack_require__("fdbc"); +var forEach = __webpack_require__("17c2"); +var createNonEnumerableProperty = __webpack_require__("9112"); + +for (var COLLECTION_NAME in DOMIterables) { + var Collection = global[COLLECTION_NAME]; + var CollectionPrototype = Collection && Collection.prototype; + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try { + createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach); + } catch (error) { + CollectionPrototype.forEach = forEach; + } +} + + +/***/ }), + +/***/ "17c2": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $forEach = __webpack_require__("b727").forEach; +var arrayMethodIsStrict = __webpack_require__("a640"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var STRICT_METHOD = arrayMethodIsStrict('forEach'); +var USES_TO_LENGTH = arrayMethodUsesToLength('forEach'); + +// `Array.prototype.forEach` method implementation +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) { + return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +} : [].forEach; + + +/***/ }), + +/***/ "1be4": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); + +module.exports = getBuiltIn('document', 'documentElement'); + + +/***/ }), + +/***/ "1c0b": +/***/ (function(module, exports) { + +module.exports = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } return it; +}; + + +/***/ }), + +/***/ "1d80": +/***/ (function(module, exports) { + +// `RequireObjectCoercible` abstract operation +// https://tc39.github.io/ecma262/#sec-requireobjectcoercible +module.exports = function (it) { + if (it == undefined) throw TypeError("Can't call method on " + it); + return it; +}; + + +/***/ }), + +/***/ "1dde": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); +var wellKnownSymbol = __webpack_require__("b622"); +var V8_VERSION = __webpack_require__("2d00"); + +var SPECIES = wellKnownSymbol('species'); + +module.exports = function (METHOD_NAME) { + // We can't use this feature detection in V8 since it causes + // deoptimization and serious performance degradation + // https://github.com/zloirock/core-js/issues/677 + return V8_VERSION >= 51 || !fails(function () { + var array = []; + var constructor = array.constructor = {}; + constructor[SPECIES] = function () { + return { foo: 1 }; + }; + return array[METHOD_NAME](Boolean).foo !== 1; + }); +}; + + +/***/ }), + +/***/ "23cb": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); + +var max = Math.max; +var min = Math.min; + +// Helper for a popular repeating case of the spec: +// Let integer be ? ToInteger(index). +// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length). +module.exports = function (index, length) { + var integer = toInteger(index); + return integer < 0 ? max(integer + length, 0) : min(integer, length); +}; + + +/***/ }), + +/***/ "23e7": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var getOwnPropertyDescriptor = __webpack_require__("06cf").f; +var createNonEnumerableProperty = __webpack_require__("9112"); +var redefine = __webpack_require__("6eeb"); +var setGlobal = __webpack_require__("ce4e"); +var copyConstructorProperties = __webpack_require__("e893"); +var isForced = __webpack_require__("94ca"); + +/* + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.noTargetGet - prevent calling a getter on target +*/ +module.exports = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var FORCED, target, key, targetProperty, sourceProperty, descriptor; + if (GLOBAL) { + target = global; + } else if (STATIC) { + target = global[TARGET] || setGlobal(TARGET, {}); + } else { + target = (global[TARGET] || {}).prototype; + } + if (target) for (key in source) { + sourceProperty = source[key]; + if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor(target, key); + targetProperty = descriptor && descriptor.value; + } else targetProperty = target[key]; + FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); + // contained in target + if (!FORCED && targetProperty !== undefined) { + if (typeof sourceProperty === typeof targetProperty) continue; + copyConstructorProperties(sourceProperty, targetProperty); + } + // add a flag to not completely full polyfills + if (options.sham || (targetProperty && targetProperty.sham)) { + createNonEnumerableProperty(sourceProperty, 'sham', true); + } + // extend global + redefine(target, key, sourceProperty, options); + } +}; + + +/***/ }), + +/***/ "241c": +/***/ (function(module, exports, __webpack_require__) { + +var internalObjectKeys = __webpack_require__("ca84"); +var enumBugKeys = __webpack_require__("7839"); + +var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + +// `Object.getOwnPropertyNames` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertynames +exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return internalObjectKeys(O, hiddenKeys); +}; + + +/***/ }), + +/***/ "2d00": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var userAgent = __webpack_require__("342f"); + +var process = global.process; +var versions = process && process.versions; +var v8 = versions && versions.v8; +var match, version; + +if (v8) { + match = v8.split('.'); + version = match[0] + match[1]; +} else if (userAgent) { + match = userAgent.match(/Edge\/(\d+)/); + if (!match || match[1] >= 74) { + match = userAgent.match(/Chrome\/(\d+)/); + if (match) version = match[1]; + } +} + +module.exports = version && +version; + + +/***/ }), + +/***/ "2dd8": +/***/ (function(module, exports, __webpack_require__) { + +// extracted by mini-css-extract-plugin + +/***/ }), + +/***/ "342f": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); + +module.exports = getBuiltIn('navigator', 'userAgent') || ''; + + +/***/ }), + +/***/ "37e8": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var definePropertyModule = __webpack_require__("9bf2"); +var anObject = __webpack_require__("825a"); +var objectKeys = __webpack_require__("df75"); + +// `Object.defineProperties` method +// https://tc39.github.io/ecma262/#sec-object.defineproperties +module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + var keys = objectKeys(Properties); + var length = keys.length; + var index = 0; + var key; + while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]); + return O; +}; + + +/***/ }), + +/***/ "3bbe": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); + +module.exports = function (it) { + if (!isObject(it) && it !== null) { + throw TypeError("Can't set " + String(it) + ' as a prototype'); + } return it; +}; + + +/***/ }), + +/***/ "4160": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var forEach = __webpack_require__("17c2"); + +// `Array.prototype.forEach` method +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +$({ target: 'Array', proto: true, forced: [].forEach != forEach }, { + forEach: forEach +}); + + +/***/ }), + +/***/ "428f": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); + +module.exports = global; + + +/***/ }), + +/***/ "4362": +/***/ (function(module, exports, __webpack_require__) { + +exports.nextTick = function nextTick(fn) { + var args = Array.prototype.slice.call(arguments); + args.shift(); + setTimeout(function () { + fn.apply(null, args); + }, 0); +}; + +exports.platform = exports.arch = +exports.execPath = exports.title = 'browser'; +exports.pid = 1; +exports.browser = true; +exports.env = {}; +exports.argv = []; + +exports.binding = function (name) { + throw new Error('No such module. (Possibly not yet loaded)') +}; + +(function () { + var cwd = '/'; + var path; + exports.cwd = function () { return cwd }; + exports.chdir = function (dir) { + if (!path) path = __webpack_require__("df7c"); + cwd = path.resolve(dir, cwd); + }; +})(); + +exports.exit = exports.kill = +exports.umask = exports.dlopen = +exports.uptime = exports.memoryUsage = +exports.uvCounters = function() {}; +exports.features = {}; + + +/***/ }), + +/***/ "44ad": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); +var classof = __webpack_require__("c6b6"); + +var split = ''.split; + +// fallback for non-array-like ES3 and non-enumerable old V8 strings +module.exports = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins + return !Object('z').propertyIsEnumerable(0); +}) ? function (it) { + return classof(it) == 'String' ? split.call(it, '') : Object(it); +} : Object; + + +/***/ }), + +/***/ "44d2": +/***/ (function(module, exports, __webpack_require__) { + +var wellKnownSymbol = __webpack_require__("b622"); +var create = __webpack_require__("7c73"); +var definePropertyModule = __webpack_require__("9bf2"); + +var UNSCOPABLES = wellKnownSymbol('unscopables'); +var ArrayPrototype = Array.prototype; + +// Array.prototype[@@unscopables] +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +if (ArrayPrototype[UNSCOPABLES] == undefined) { + definePropertyModule.f(ArrayPrototype, UNSCOPABLES, { + configurable: true, + value: create(null) + }); +} + +// add a key to Array.prototype[@@unscopables] +module.exports = function (key) { + ArrayPrototype[UNSCOPABLES][key] = true; +}; + + +/***/ }), + +/***/ "44e7": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var classof = __webpack_require__("c6b6"); +var wellKnownSymbol = __webpack_require__("b622"); + +var MATCH = wellKnownSymbol('match'); + +// `IsRegExp` abstract operation +// https://tc39.github.io/ecma262/#sec-isregexp +module.exports = function (it) { + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +}; + + +/***/ }), + +/***/ "466d": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var anObject = __webpack_require__("825a"); +var toLength = __webpack_require__("50c4"); +var requireObjectCoercible = __webpack_require__("1d80"); +var advanceStringIndex = __webpack_require__("8aa5"); +var regExpExec = __webpack_require__("14c3"); + +// @@match logic +fixRegExpWellKnownSymbolLogic('match', 1, function (MATCH, nativeMatch, maybeCallNative) { + return [ + // `String.prototype.match` method + // https://tc39.github.io/ecma262/#sec-string.prototype.match + function match(regexp) { + var O = requireObjectCoercible(this); + var matcher = regexp == undefined ? undefined : regexp[MATCH]; + return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O)); + }, + // `RegExp.prototype[@@match]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match + function (regexp) { + var res = maybeCallNative(nativeMatch, regexp, this); + if (res.done) return res.value; + + var rx = anObject(regexp); + var S = String(this); + + if (!rx.global) return regExpExec(rx, S); + + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + var A = []; + var n = 0; + var result; + while ((result = regExpExec(rx, S)) !== null) { + var matchStr = String(result[0]); + A[n] = matchStr; + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + n++; + } + return n === 0 ? null : A; + } + ]; +}); + + +/***/ }), + +/***/ "4840": +/***/ (function(module, exports, __webpack_require__) { + +var anObject = __webpack_require__("825a"); +var aFunction = __webpack_require__("1c0b"); +var wellKnownSymbol = __webpack_require__("b622"); + +var SPECIES = wellKnownSymbol('species'); + +// `SpeciesConstructor` abstract operation +// https://tc39.github.io/ecma262/#sec-speciesconstructor +module.exports = function (O, defaultConstructor) { + var C = anObject(O).constructor; + var S; + return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S); +}; + + +/***/ }), + +/***/ "4930": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); + +module.exports = !!Object.getOwnPropertySymbols && !fails(function () { + // Chrome 38 Symbol has incorrect toString conversion + // eslint-disable-next-line no-undef + return !String(Symbol()); +}); + + +/***/ }), + +/***/ "4d64": +/***/ (function(module, exports, __webpack_require__) { + +var toIndexedObject = __webpack_require__("fc6a"); +var toLength = __webpack_require__("50c4"); +var toAbsoluteIndex = __webpack_require__("23cb"); + +// `Array.prototype.{ indexOf, includes }` methods implementation +var createMethod = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = toLength(O.length); + var index = toAbsoluteIndex(fromIndex, length); + var value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } else for (;length > index; index++) { + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; + } return !IS_INCLUDES && -1; + }; +}; + +module.exports = { + // `Array.prototype.includes` method + // https://tc39.github.io/ecma262/#sec-array.prototype.includes + includes: createMethod(true), + // `Array.prototype.indexOf` method + // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + indexOf: createMethod(false) +}; + + +/***/ }), + +/***/ "4de4": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var $filter = __webpack_require__("b727").filter; +var arrayMethodHasSpeciesSupport = __webpack_require__("1dde"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter'); +// Edge 14- issue +var USES_TO_LENGTH = arrayMethodUsesToLength('filter'); + +// `Array.prototype.filter` method +// https://tc39.github.io/ecma262/#sec-array.prototype.filter +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { + filter: function filter(callbackfn /* , thisArg */) { + return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + + +/***/ }), + +/***/ "50c4": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); + +var min = Math.min; + +// `ToLength` abstract operation +// https://tc39.github.io/ecma262/#sec-tolength +module.exports = function (argument) { + return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 +}; + + +/***/ }), + +/***/ "5135": +/***/ (function(module, exports) { + +var hasOwnProperty = {}.hasOwnProperty; + +module.exports = function (it, key) { + return hasOwnProperty.call(it, key); +}; + + +/***/ }), + +/***/ "5319": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var anObject = __webpack_require__("825a"); +var toObject = __webpack_require__("7b0b"); +var toLength = __webpack_require__("50c4"); +var toInteger = __webpack_require__("a691"); +var requireObjectCoercible = __webpack_require__("1d80"); +var advanceStringIndex = __webpack_require__("8aa5"); +var regExpExec = __webpack_require__("14c3"); + +var max = Math.max; +var min = Math.min; +var floor = Math.floor; +var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g; +var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g; + +var maybeToString = function (it) { + return it === undefined ? it : String(it); +}; + +// @@replace logic +fixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) { + var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE; + var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0; + var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; + + return [ + // `String.prototype.replace` method + // https://tc39.github.io/ecma262/#sec-string.prototype.replace + function replace(searchValue, replaceValue) { + var O = requireObjectCoercible(this); + var replacer = searchValue == undefined ? undefined : searchValue[REPLACE]; + return replacer !== undefined + ? replacer.call(searchValue, O, replaceValue) + : nativeReplace.call(String(O), searchValue, replaceValue); + }, + // `RegExp.prototype[@@replace]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace + function (regexp, replaceValue) { + if ( + (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) || + (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1) + ) { + var res = maybeCallNative(nativeReplace, regexp, this, replaceValue); + if (res.done) return res.value; + } + + var rx = anObject(regexp); + var S = String(this); + + var functionalReplace = typeof replaceValue === 'function'; + if (!functionalReplace) replaceValue = String(replaceValue); + + var global = rx.global; + if (global) { + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + } + var results = []; + while (true) { + var result = regExpExec(rx, S); + if (result === null) break; + + results.push(result); + if (!global) break; + + var matchStr = String(result[0]); + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + } + + var accumulatedResult = ''; + var nextSourcePosition = 0; + for (var i = 0; i < results.length; i++) { + result = results[i]; + + var matched = String(result[0]); + var position = max(min(toInteger(result.index), S.length), 0); + var captures = []; + // NOTE: This is equivalent to + // captures = result.slice(1).map(maybeToString) + // but for some reason `nativeSlice.call(result, 1, result.length)` (called in + // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and + // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. + for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j])); + var namedCaptures = result.groups; + if (functionalReplace) { + var replacerArgs = [matched].concat(captures, position, S); + if (namedCaptures !== undefined) replacerArgs.push(namedCaptures); + var replacement = String(replaceValue.apply(undefined, replacerArgs)); + } else { + replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); + } + if (position >= nextSourcePosition) { + accumulatedResult += S.slice(nextSourcePosition, position) + replacement; + nextSourcePosition = position + matched.length; + } + } + return accumulatedResult + S.slice(nextSourcePosition); + } + ]; + + // https://tc39.github.io/ecma262/#sec-getsubstitution + function getSubstitution(matched, str, position, captures, namedCaptures, replacement) { + var tailPos = position + matched.length; + var m = captures.length; + var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; + if (namedCaptures !== undefined) { + namedCaptures = toObject(namedCaptures); + symbols = SUBSTITUTION_SYMBOLS; + } + return nativeReplace.call(replacement, symbols, function (match, ch) { + var capture; + switch (ch.charAt(0)) { + case '$': return '$'; + case '&': return matched; + case '`': return str.slice(0, position); + case "'": return str.slice(tailPos); + case '<': + capture = namedCaptures[ch.slice(1, -1)]; + break; + default: // \d\d? + var n = +ch; + if (n === 0) return match; + if (n > m) { + var f = floor(n / 10); + if (f === 0) return match; + if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1); + return match; + } + capture = captures[n - 1]; + } + return capture === undefined ? '' : capture; + }); + } +}); + + +/***/ }), + +/***/ "5692": +/***/ (function(module, exports, __webpack_require__) { + +var IS_PURE = __webpack_require__("c430"); +var store = __webpack_require__("c6cd"); + +(module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); +})('versions', []).push({ + version: '3.6.5', + mode: IS_PURE ? 'pure' : 'global', + copyright: '© 2020 Denis Pushkarev (zloirock.ru)' +}); + + +/***/ }), + +/***/ "56ef": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); +var getOwnPropertyNamesModule = __webpack_require__("241c"); +var getOwnPropertySymbolsModule = __webpack_require__("7418"); +var anObject = __webpack_require__("825a"); + +// all object keys, includes non-enumerable and symbols +module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) { + var keys = getOwnPropertyNamesModule.f(anObject(it)); + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys; +}; + + +/***/ }), + +/***/ "5899": +/***/ (function(module, exports) { + +// a string of all valid unicode whitespaces +// eslint-disable-next-line max-len +module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + + +/***/ }), + +/***/ "58a8": +/***/ (function(module, exports, __webpack_require__) { + +var requireObjectCoercible = __webpack_require__("1d80"); +var whitespaces = __webpack_require__("5899"); + +var whitespace = '[' + whitespaces + ']'; +var ltrim = RegExp('^' + whitespace + whitespace + '*'); +var rtrim = RegExp(whitespace + whitespace + '*$'); + +// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation +var createMethod = function (TYPE) { + return function ($this) { + var string = String(requireObjectCoercible($this)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; +}; + +module.exports = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart + start: createMethod(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimend + end: createMethod(2), + // `String.prototype.trim` method + // https://tc39.github.io/ecma262/#sec-string.prototype.trim + trim: createMethod(3) +}; + + +/***/ }), + +/***/ "5c6c": +/***/ (function(module, exports) { + +module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value + }; +}; + + +/***/ }), + +/***/ "60da": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var DESCRIPTORS = __webpack_require__("83ab"); +var fails = __webpack_require__("d039"); +var objectKeys = __webpack_require__("df75"); +var getOwnPropertySymbolsModule = __webpack_require__("7418"); +var propertyIsEnumerableModule = __webpack_require__("d1e7"); +var toObject = __webpack_require__("7b0b"); +var IndexedObject = __webpack_require__("44ad"); + +var nativeAssign = Object.assign; +var defineProperty = Object.defineProperty; + +// `Object.assign` method +// https://tc39.github.io/ecma262/#sec-object.assign +module.exports = !nativeAssign || fails(function () { + // should have correct order of operations (Edge bug) + if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', { + enumerable: true, + get: function () { + defineProperty(this, 'b', { + value: 3, + enumerable: false + }); + } + }), { b: 2 })).b !== 1) return true; + // should work with symbols and should have deterministic property order (V8 bug) + var A = {}; + var B = {}; + // eslint-disable-next-line no-undef + var symbol = Symbol(); + var alphabet = 'abcdefghijklmnopqrst'; + A[symbol] = 7; + alphabet.split('').forEach(function (chr) { B[chr] = chr; }); + return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet; +}) ? function assign(target, source) { // eslint-disable-line no-unused-vars + var T = toObject(target); + var argumentsLength = arguments.length; + var index = 1; + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + var propertyIsEnumerable = propertyIsEnumerableModule.f; + while (argumentsLength > index) { + var S = IndexedObject(arguments[index++]); + var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S); + var length = keys.length; + var j = 0; + var key; + while (length > j) { + key = keys[j++]; + if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key]; + } + } return T; +} : nativeAssign; + + +/***/ }), + +/***/ "6547": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); +var requireObjectCoercible = __webpack_require__("1d80"); + +// `String.prototype.{ codePointAt, at }` methods implementation +var createMethod = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = String(requireObjectCoercible($this)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size + || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING ? S.charAt(position) : first + : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; +}; + +module.exports = { + // `String.prototype.codePointAt` method + // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod(true) +}; + + +/***/ }), + +/***/ "65f0": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var isArray = __webpack_require__("e8b5"); +var wellKnownSymbol = __webpack_require__("b622"); + +var SPECIES = wellKnownSymbol('species'); + +// `ArraySpeciesCreate` abstract operation +// https://tc39.github.io/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray, length) { + var C; + if (isArray(originalArray)) { + C = originalArray.constructor; + // cross-realm fallback + if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined; + else if (isObject(C)) { + C = C[SPECIES]; + if (C === null) C = undefined; + } + } return new (C === undefined ? Array : C)(length === 0 ? 0 : length); +}; + + +/***/ }), + +/***/ "69f3": +/***/ (function(module, exports, __webpack_require__) { + +var NATIVE_WEAK_MAP = __webpack_require__("7f9a"); +var global = __webpack_require__("da84"); +var isObject = __webpack_require__("861d"); +var createNonEnumerableProperty = __webpack_require__("9112"); +var objectHas = __webpack_require__("5135"); +var sharedKey = __webpack_require__("f772"); +var hiddenKeys = __webpack_require__("d012"); + +var WeakMap = global.WeakMap; +var set, get, has; + +var enforce = function (it) { + return has(it) ? get(it) : set(it, {}); +}; + +var getterFor = function (TYPE) { + return function (it) { + var state; + if (!isObject(it) || (state = get(it)).type !== TYPE) { + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); + } return state; + }; +}; + +if (NATIVE_WEAK_MAP) { + var store = new WeakMap(); + var wmget = store.get; + var wmhas = store.has; + var wmset = store.set; + set = function (it, metadata) { + wmset.call(store, it, metadata); + return metadata; + }; + get = function (it) { + return wmget.call(store, it) || {}; + }; + has = function (it) { + return wmhas.call(store, it); + }; +} else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + set = function (it, metadata) { + createNonEnumerableProperty(it, STATE, metadata); + return metadata; + }; + get = function (it) { + return objectHas(it, STATE) ? it[STATE] : {}; + }; + has = function (it) { + return objectHas(it, STATE); + }; +} + +module.exports = { + set: set, + get: get, + has: has, + enforce: enforce, + getterFor: getterFor +}; + + +/***/ }), + +/***/ "6eeb": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var createNonEnumerableProperty = __webpack_require__("9112"); +var has = __webpack_require__("5135"); +var setGlobal = __webpack_require__("ce4e"); +var inspectSource = __webpack_require__("8925"); +var InternalStateModule = __webpack_require__("69f3"); + +var getInternalState = InternalStateModule.get; +var enforceInternalState = InternalStateModule.enforce; +var TEMPLATE = String(String).split('String'); + +(module.exports = function (O, key, value, options) { + var unsafe = options ? !!options.unsafe : false; + var simple = options ? !!options.enumerable : false; + var noTargetGet = options ? !!options.noTargetGet : false; + if (typeof value == 'function') { + if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key); + enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : ''); + } + if (O === global) { + if (simple) O[key] = value; + else setGlobal(key, value); + return; + } else if (!unsafe) { + delete O[key]; + } else if (!noTargetGet && O[key]) { + simple = true; + } + if (simple) O[key] = value; + else createNonEnumerableProperty(O, key, value); +// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative +})(Function.prototype, 'toString', function toString() { + return typeof this == 'function' && getInternalState(this).source || inspectSource(this); +}); + + +/***/ }), + +/***/ "7156": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var setPrototypeOf = __webpack_require__("d2bb"); + +// makes subclassing work correct for wrapped built-ins +module.exports = function ($this, dummy, Wrapper) { + var NewTarget, NewTargetPrototype; + if ( + // it can work only with native `setPrototypeOf` + setPrototypeOf && + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this + typeof (NewTarget = dummy.constructor) == 'function' && + NewTarget !== Wrapper && + isObject(NewTargetPrototype = NewTarget.prototype) && + NewTargetPrototype !== Wrapper.prototype + ) setPrototypeOf($this, NewTargetPrototype); + return $this; +}; + + +/***/ }), + +/***/ "7418": +/***/ (function(module, exports) { + +exports.f = Object.getOwnPropertySymbols; + + +/***/ }), + +/***/ "746f": +/***/ (function(module, exports, __webpack_require__) { + +var path = __webpack_require__("428f"); +var has = __webpack_require__("5135"); +var wrappedWellKnownSymbolModule = __webpack_require__("e538"); +var defineProperty = __webpack_require__("9bf2").f; + +module.exports = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wrappedWellKnownSymbolModule.f(NAME) + }); +}; + + +/***/ }), + +/***/ "7839": +/***/ (function(module, exports) { + +// IE8- don't enum bug keys +module.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf' +]; + + +/***/ }), + +/***/ "7aa9": +/***/ (function(module, exports, __webpack_require__) { + +// This file allows dist/cronstrue-i18n.js to be required from Node as: +// var cronstrue = require('cronstrue/i18n'); + +var cronstrueWithLocales = __webpack_require__("122c"); +module.exports = cronstrueWithLocales; + + +/***/ }), + +/***/ "7b0b": +/***/ (function(module, exports, __webpack_require__) { + +var requireObjectCoercible = __webpack_require__("1d80"); + +// `ToObject` abstract operation +// https://tc39.github.io/ecma262/#sec-toobject +module.exports = function (argument) { + return Object(requireObjectCoercible(argument)); +}; + + +/***/ }), + +/***/ "7c73": +/***/ (function(module, exports, __webpack_require__) { + +var anObject = __webpack_require__("825a"); +var defineProperties = __webpack_require__("37e8"); +var enumBugKeys = __webpack_require__("7839"); +var hiddenKeys = __webpack_require__("d012"); +var html = __webpack_require__("1be4"); +var documentCreateElement = __webpack_require__("cc12"); +var sharedKey = __webpack_require__("f772"); + +var GT = '>'; +var LT = '<'; +var PROTOTYPE = 'prototype'; +var SCRIPT = 'script'; +var IE_PROTO = sharedKey('IE_PROTO'); + +var EmptyConstructor = function () { /* empty */ }; + +var scriptTag = function (content) { + return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; +}; + +// Create object with fake `null` prototype: use ActiveX Object with cleared prototype +var NullProtoObjectViaActiveX = function (activeXDocument) { + activeXDocument.write(scriptTag('')); + activeXDocument.close(); + var temp = activeXDocument.parentWindow.Object; + activeXDocument = null; // avoid memory leak + return temp; +}; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var NullProtoObjectViaIFrame = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var JS = 'java' + SCRIPT + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + // https://github.com/zloirock/core-js/issues/475 + iframe.src = String(JS); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(scriptTag('document.F=Object')); + iframeDocument.close(); + return iframeDocument.F; +}; + +// Check for document.domain and active x support +// No need to use active x approach when document.domain is not set +// see https://github.com/es-shims/es5-shim/issues/150 +// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 +// avoid IE GC bug +var activeXDocument; +var NullProtoObject = function () { + try { + /* global ActiveXObject */ + activeXDocument = document.domain && new ActiveXObject('htmlfile'); + } catch (error) { /* ignore */ } + NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame(); + var length = enumBugKeys.length; + while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; + return NullProtoObject(); +}; + +hiddenKeys[IE_PROTO] = true; + +// `Object.create` method +// https://tc39.github.io/ecma262/#sec-object.create +module.exports = Object.create || function create(O, Properties) { + var result; + if (O !== null) { + EmptyConstructor[PROTOTYPE] = anObject(O); + result = new EmptyConstructor(); + EmptyConstructor[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = NullProtoObject(); + return Properties === undefined ? result : defineProperties(result, Properties); +}; + + +/***/ }), + +/***/ "7db0": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var $find = __webpack_require__("b727").find; +var addToUnscopables = __webpack_require__("44d2"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var FIND = 'find'; +var SKIPS_HOLES = true; + +var USES_TO_LENGTH = arrayMethodUsesToLength(FIND); + +// Shouldn't skip holes +if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; }); + +// `Array.prototype.find` method +// https://tc39.github.io/ecma262/#sec-array.prototype.find +$({ target: 'Array', proto: true, forced: SKIPS_HOLES || !USES_TO_LENGTH }, { + find: function find(callbackfn /* , that = undefined */) { + return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables(FIND); + + +/***/ }), + +/***/ "7f9a": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var inspectSource = __webpack_require__("8925"); + +var WeakMap = global.WeakMap; + +module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap)); + + +/***/ }), + +/***/ "825a": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); + +module.exports = function (it) { + if (!isObject(it)) { + throw TypeError(String(it) + ' is not an object'); + } return it; +}; + + +/***/ }), + +/***/ "83ab": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); + +// Thank's IE8 for his funny defineProperty +module.exports = !fails(function () { + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; +}); + + +/***/ }), + +/***/ "8418": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var toPrimitive = __webpack_require__("c04e"); +var definePropertyModule = __webpack_require__("9bf2"); +var createPropertyDescriptor = __webpack_require__("5c6c"); + +module.exports = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); + else object[propertyKey] = value; +}; + + +/***/ }), + +/***/ "861d": +/***/ (function(module, exports) { + +module.exports = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; +}; + + +/***/ }), + +/***/ "8875": +/***/ (function(module, exports, __webpack_require__) { + +var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// addapted from the document.currentScript polyfill by Adam Miller +// MIT license +// source: https://github.com/amiller-gh/currentScript-polyfill + +// added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505 + +(function (root, factory) { + if (true) { + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), + __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? + (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), + __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else {} +}(typeof self !== 'undefined' ? self : this, function () { + function getCurrentScript () { + if (document.currentScript) { + return document.currentScript + } + + // IE 8-10 support script readyState + // IE 11+ & Firefox support stack trace + try { + throw new Error(); + } + catch (err) { + // Find the second match for the "at" string to get file src url from stack. + var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig, + ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig, + stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack), + scriptLocation = (stackDetails && stackDetails[1]) || false, + line = (stackDetails && stackDetails[2]) || false, + currentLocation = document.location.href.replace(document.location.hash, ''), + pageSource, + inlineScriptSourceRegExp, + inlineScriptSource, + scripts = document.getElementsByTagName('script'); // Live NodeList collection + + if (scriptLocation === currentLocation) { + pageSource = document.documentElement.outerHTML; + inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*\r\n\r\n\r\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./VueCronEditorBootstrap.vue?vue&type=template&id=0a36a7b8&\"\nimport script from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\nexport * from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","'use strict';\nvar $ = require('../internals/export');\nvar isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toLength = require('../internals/to-length');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar createProperty = require('../internals/create-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 });\n\nvar SPECIES = wellKnownSymbol('species');\nvar nativeSlice = [].slice;\nvar max = Math.max;\n\n// `Array.prototype.slice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.slice\n// fallback for not array-like ES3 strings and DOM objects\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n slice: function slice(start, end) {\n var O = toIndexedObject(this);\n var length = toLength(O.length);\n var k = toAbsoluteIndex(start, length);\n var fin = toAbsoluteIndex(end === undefined ? length : end, length);\n // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible\n var Constructor, result, n;\n if (isArray(O)) {\n Constructor = O.constructor;\n // cross-realm fallback\n if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {\n Constructor = undefined;\n } else if (isObject(Constructor)) {\n Constructor = Constructor[SPECIES];\n if (Constructor === null) Constructor = undefined;\n }\n if (Constructor === Array || Constructor === undefined) {\n return nativeSlice.call(O, k, fin);\n }\n }\n result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));\n for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);\n result.length = n;\n return result;\n }\n});\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/vueCronEditorBootstrap.css b/dist/vueCronEditorBootstrap.css new file mode 100644 index 0000000..be7ff35 --- /dev/null +++ b/dist/vueCronEditorBootstrap.css @@ -0,0 +1,9 @@ +/*! + * Bootstrap v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]),a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\00A0"}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.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,.col-lg-auto,.col-md,.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,.col-md-auto,.col-sm,.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,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;-webkit-box-flex:0;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1,.col-auto{-webkit-box-flex:0}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-2,.col-3{-webkit-box-flex:0}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-4,.col-5{-webkit-box-flex:0}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-6,.col-7{-webkit-box-flex:0}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-8,.col-9{-webkit-box-flex:0}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-10,.col-11{-webkit-box-flex:0}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;order:-1}.order-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;order:13}.order-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;order:0}.order-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.order-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;order:2}.order-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;order:3}.order-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;order:4}.order-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;order:5}.order-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;order:6}.order-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;order:7}.order-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;order:8}.order-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;order:9}.order-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;order:10}.order-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;order:11}.order-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;-webkit-box-flex:0;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;-webkit-box-flex:0;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;-webkit-box-flex:0;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;-webkit-box-flex:0;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;-webkit-box-flex:0;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;-webkit-box-flex:0;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;-webkit-box-flex:0;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;-webkit-box-flex:0;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;-webkit-box-flex:0;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;order:-1}.order-sm-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;order:13}.order-sm-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;order:0}.order-sm-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.order-sm-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;order:2}.order-sm-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;order:3}.order-sm-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;order:4}.order-sm-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;order:5}.order-sm-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;order:6}.order-sm-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;order:7}.order-sm-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;order:8}.order-sm-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;order:9}.order-sm-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;order:10}.order-sm-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;order:11}.order-sm-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;-webkit-box-flex:0;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;-webkit-box-flex:0;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;-webkit-box-flex:0;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;-webkit-box-flex:0;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;-webkit-box-flex:0;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;-webkit-box-flex:0;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;-webkit-box-flex:0;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;-webkit-box-flex:0;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;-webkit-box-flex:0;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;order:-1}.order-md-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;order:13}.order-md-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;order:0}.order-md-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.order-md-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;order:2}.order-md-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;order:3}.order-md-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;order:4}.order-md-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;order:5}.order-md-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;order:6}.order-md-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;order:7}.order-md-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;order:8}.order-md-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;order:9}.order-md-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;order:10}.order-md-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;order:11}.order-md-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;-webkit-box-flex:0;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;-webkit-box-flex:0;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;-webkit-box-flex:0;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;-webkit-box-flex:0;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;-webkit-box-flex:0;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;-webkit-box-flex:0;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;-webkit-box-flex:0;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;-webkit-box-flex:0;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;-webkit-box-flex:0;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;order:-1}.order-lg-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;order:13}.order-lg-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;order:0}.order-lg-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.order-lg-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;order:2}.order-lg-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;order:3}.order-lg-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;order:4}.order-lg-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;order:5}.order-lg-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;order:6}.order-lg-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;order:7}.order-lg-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;order:8}.order-lg-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;order:9}.order-lg-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;order:10}.order-lg-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;order:11}.order-lg-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;-webkit-box-flex:0;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;-webkit-box-flex:0;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;-webkit-box-flex:0;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;-webkit-box-flex:0;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;-webkit-box-flex:0;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;-webkit-box-flex:0;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;-webkit-box-flex:0;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;-webkit-box-flex:0;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;-webkit-box-flex:0;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;-webkit-box-flex:0;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;-webkit-box-flex:0;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;-webkit-box-flex:0;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;-webkit-box-flex:0;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;-webkit-box-ordinal-group:0;order:-1}.order-xl-last{-ms-flex-order:13;-webkit-box-ordinal-group:14;order:13}.order-xl-0{-ms-flex-order:0;-webkit-box-ordinal-group:1;order:0}.order-xl-1{-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.order-xl-2{-ms-flex-order:2;-webkit-box-ordinal-group:3;order:2}.order-xl-3{-ms-flex-order:3;-webkit-box-ordinal-group:4;order:3}.order-xl-4{-ms-flex-order:4;-webkit-box-ordinal-group:5;order:4}.order-xl-5{-ms-flex-order:5;-webkit-box-ordinal-group:6;order:5}.order-xl-6{-ms-flex-order:6;-webkit-box-ordinal-group:7;order:6}.order-xl-7{-ms-flex-order:7;-webkit-box-ordinal-group:8;order:7}.order-xl-8{-ms-flex-order:8;-webkit-box-ordinal-group:9;order:8}.order-xl-9{-ms-flex-order:9;-webkit-box-ordinal-group:10;order:9}.order-xl-10{-ms-flex-order:10;-webkit-box-ordinal-group:11;order:10}.order-xl-11{-ms-flex-order:11;-webkit-box-ordinal-group:12;order:11}.order-xl-12{-ms-flex-order:12;-webkit-box-ordinal-group:13;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;-ms-flex-align:center;-webkit-box-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{-ms-flex-align:center;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center}.form-inline .form-group,.form-inline label{display:-ms-flexbox;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;margin-bottom:0}.form-inline .form-group{-ms-flex:0 0 auto;-webkit-box-flex:0;flex:0 0 auto;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;-ms-flex-align:center}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,.5);box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(130,138,145,.5);box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(130,138,145,.5);box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,.5);box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,.5);box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,.5);box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,.5);box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(216,217,219,.5);box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(216,217,219,.5);box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,.5);box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,.5);box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,.5);box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{-webkit-transition:opacity .15s linear;transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;-webkit-box-flex:1;flex:1 1 auto}.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:1}.btn-toolbar{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-ms-flex-align:start;-webkit-box-align:start;align-items:flex-start;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;-webkit-box-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;-webkit-box-flex:1;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:-webkit-box;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;height:calc(1.5em + .75rem + 2px);font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;-webkit-box-flex:1;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:justify;-webkit-box-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;-webkit-box-flex:1;flex-grow:1;-ms-flex-align:center;-webkit-box-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.navbar-expand-sm,.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.navbar-expand-md,.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.navbar-expand-lg,.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.navbar-expand-xl,.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{-ms-flex:1 1 auto;-webkit-box-flex:1;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;-webkit-box-flex:1;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;-webkit-box-flex:1;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb,.breadcrumb-item{display:-ms-flexbox;display:-webkit-box;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:-webkit-box;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{-webkit-transition:none;transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.5);box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,.5);box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.5);box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,.5);box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,.5);box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.5);box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,.5);box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,.5);box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{height:1rem;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress,.progress-bar{display:-ms-flexbox;display:-webkit-box;display:flex;overflow:hidden}.progress-bar{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;-webkit-transition:width .6s ease;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{-webkit-transition:none;transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:start;-webkit-box-align:start;align-items:flex-start}.media-body{-ms-flex:1;-webkit-box-flex:1;flex:1}.list-group{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);-webkit-box-shadow:0 .25rem .75rem rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;-webkit-transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translateY(-50px);transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:-webkit-box;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:start;-webkit-box-align:start;align-items:flex-start;-ms-flex-pack:justify;-webkit-box-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;-webkit-box-flex:1;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:end;-webkit-box-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;-webkit-transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:opacity 0s .6s;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;-webkit-transition:opacity .15s ease;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{-webkit-transition:none;transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-ms-flex:0 1 auto;-webkit-box-flex:0;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity .6s ease;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:-webkit-box!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.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-21by9:before{padding-top:42.857143%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;-webkit-box-orient:horizontal!important;flex-direction:row!important}.flex-column,.flex-row{-webkit-box-direction:normal!important}.flex-column{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;-webkit-box-orient:horizontal!important;flex-direction:row-reverse!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;-webkit-box-orient:vertical!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;-webkit-box-flex:1!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;-webkit-box-flex:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;-webkit-box-flex:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;-webkit-box-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;-webkit-box-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;-webkit-box-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;-webkit-box-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;-webkit-box-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;-webkit-box-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;-webkit-box-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;-webkit-box-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;-webkit-box-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;-webkit-box-orient:horizontal!important;flex-direction:row!important}.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-column{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;-webkit-box-flex:1!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;-webkit-box-flex:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;-webkit-box-flex:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;-webkit-box-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;-webkit-box-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;-webkit-box-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;-webkit-box-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;-webkit-box-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;-webkit-box-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;-webkit-box-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;-webkit-box-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;-webkit-box-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;-webkit-box-orient:horizontal!important;flex-direction:row!important}.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-column{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;-webkit-box-flex:1!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;-webkit-box-flex:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;-webkit-box-flex:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;-webkit-box-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;-webkit-box-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;-webkit-box-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;-webkit-box-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;-webkit-box-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;-webkit-box-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;-webkit-box-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;-webkit-box-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;-webkit-box-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;-webkit-box-orient:horizontal!important;flex-direction:row!important}.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-column{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;-webkit-box-flex:1!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;-webkit-box-flex:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;-webkit-box-flex:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;-webkit-box-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;-webkit-box-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;-webkit-box-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;-webkit-box-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;-webkit-box-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;-webkit-box-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;-webkit-box-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;-webkit-box-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;-webkit-box-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;-webkit-box-orient:horizontal!important;flex-direction:row!important}.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-column{-ms-flex-direction:column!important;-webkit-box-orient:vertical!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;-webkit-box-flex:1!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;-webkit-box-flex:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;-webkit-box-flex:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;-webkit-box-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;-webkit-box-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;-webkit-box-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;-webkit-box-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;-webkit-box-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;-webkit-box-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;-webkit-box-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;-webkit-box-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;-webkit-box-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important;box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.navbar{display:none}.badge{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 #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*! + * BootstrapVue Custom CSS (https://bootstrap-vue.org) + */.bv-no-focus-ring:focus{outline:none}@media (max-width:575.98px){.bv-d-xs-down-none{display:none!important}}@media (max-width:767.98px){.bv-d-sm-down-none{display:none!important}}@media (max-width:991.98px){.bv-d-md-down-none{display:none!important}}@media (max-width:1199.98px){.bv-d-lg-down-none{display:none!important}}.bv-d-xl-down-none{display:none!important}.form-control.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control.focus.is-valid{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.focus.is-invalid{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.b-form-btn-label-control.form-control{background-image:none;padding:0}.input-group .b-form-btn-label-control.form-control{padding:0}.b-form-btn-label-control.form-control[dir=rtl],[dir=rtl] .b-form-btn-label-control.form-control{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.b-form-btn-label-control.form-control[dir=rtl]>label,[dir=rtl] .b-form-btn-label-control.form-control>label{text-align:right}.b-form-btn-label-control.form-control>.btn{line-height:1;font-size:inherit;-webkit-box-shadow:none!important;box-shadow:none!important;border:0}.b-form-btn-label-control.form-control>.btn:disabled{pointer-events:none}.b-form-btn-label-control.form-control.is-valid>.btn{color:#28a745}.b-form-btn-label-control.form-control.is-invalid>.btn{color:#dc3545}.b-form-btn-label-control.form-control>.dropdown-menu{padding:.5rem}.b-form-btn-label-control.form-control>label{outline:0;padding-left:.25rem;margin:0;border:0;font-size:inherit;cursor:pointer;min-height:calc(1.5em + .75rem)}.b-form-btn-label-control.form-control>label.form-control-sm{min-height:calc(1.5em + .5rem)}.b-form-btn-label-control.form-control>label.form-control-lg{min-height:calc(1.5em + 1rem)}.input-group.input-group-sm .b-form-btn-label-control.form-control>label{min-height:calc(1.5em + .5rem);padding-top:.25rem;padding-bottom:.25rem}.input-group.input-group-lg .b-form-btn-label-control.form-control>label{min-height:calc(1.5em + 1rem);padding-top:.5rem;padding-bottom:.5rem}.b-form-btn-label-control.form-control[aria-disabled=true],.b-form-btn-label-control.form-control[aria-readonly=true]{background-color:#e9ecef;opacity:1}.b-form-btn-label-control.form-control[aria-disabled=true]{pointer-events:none}.b-form-btn-label-control.form-control[aria-disabled=true]>label{cursor:default}.b-form-btn-label-control.btn-group>.dropdown-menu{padding:.5rem}.b-avatar{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;vertical-align:middle;font-size:inherit;font-weight:400;line-height:1;max-width:100%;max-height:auto;text-align:center;overflow:visible;position:relative;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.b-avatar:focus{outline:0}.b-avatar.btn,.b-avatar[href]{padding:0;border:0}.b-avatar.btn .b-avatar-img img,.b-avatar[href] .b-avatar-img img{transition:-webkit-transform .15s ease-in-out;-webkit-transition:-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out;transition:transform .15s ease-in-out,-webkit-transform .15s ease-in-out}.b-avatar.btn:not(:disabled):not(.disabled),.b-avatar[href]:not(:disabled):not(.disabled){cursor:pointer}.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img{-webkit-transform:scale(1.15);transform:scale(1.15)}.b-avatar.disabled,.b-avatar:disabled,.b-avatar[disabled]{opacity:.65;pointer-events:none}.b-avatar .b-avatar-custom,.b-avatar .b-avatar-img,.b-avatar .b-avatar-text{border-radius:inherit;width:100%;height:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.b-avatar .b-avatar-text{text-transform:uppercase;white-space:nowrap}.b-avatar[href]{text-decoration:none}.b-avatar>.b-icon{width:60%;height:auto;max-width:100%}.b-avatar .b-avatar-img img{width:100%;height:100%;max-height:auto;border-radius:inherit}.b-avatar .b-avatar-badge{position:absolute;min-height:1.5em;min-width:1.5em;padding:.25em;line-height:1;border-radius:10em;font-size:70%;font-weight:700;z-index:5}.b-avatar-group .b-avatar-group-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.b-avatar-group .b-avatar{border:1px solid #dee2e6}.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled),.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled){z-index:3}.b-calendar{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.b-calendar .b-calendar-inner{min-width:250px}.b-calendar .b-calendar-header,.b-calendar .b-calendar-nav{margin-bottom:.25rem}.b-calendar .b-calendar-nav .btn{padding:.25rem}.b-calendar output{padding:.25rem;font-size:80%}.b-calendar output.readonly{background-color:#e9ecef;opacity:1}.b-calendar .b-calendar-footer{margin-top:.5rem}.b-calendar .b-calendar-grid{padding:0;margin:0;overflow:hidden}.b-calendar .b-calendar-grid .row{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.b-calendar .b-calendar-grid-caption{padding:.25rem}.b-calendar .b-calendar-grid-body .col[data-date] .btn{width:32px;height:32px;font-size:14px;line-height:1;margin:3px auto;padding:9px 0}.b-calendar .btn.disabled,.b-calendar .btn:disabled,.b-calendar .btn[aria-disabled=true]{cursor:default;pointer-events:none}.card-img-left{border-top-left-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-img-right{border-top-right-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret:before,.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret:after{display:none!important}.dropdown .dropdown-menu:focus{outline:none}.b-dropdown-form{display:inline-block;padding:.25rem 1.5rem;width:100%;clear:both;font-weight:400}.b-dropdown-form:focus{outline:1px dotted!important;outline:5px auto -webkit-focus-ring-color!important}.b-dropdown-form.disabled,.b-dropdown-form:disabled{outline:0!important;color:#6c757d;pointer-events:none}.b-dropdown-text{display:inline-block;padding:.25rem 1.5rem;margin-bottom:0;width:100%;clear:both;font-weight:lighter}.custom-checkbox.b-custom-control-lg,.input-group-lg .custom-checkbox{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-checkbox.b-custom-control-lg .custom-control-label:before,.input-group-lg .custom-checkbox .custom-control-label:before{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:.3rem}.custom-checkbox.b-custom-control-lg .custom-control-label:after,.input-group-lg .custom-checkbox .custom-control-label:after{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background-size:50% 50%}.custom-checkbox.b-custom-control-sm,.input-group-sm .custom-checkbox{font-size:.875rem;line-height:1.5;padding-left:1.3125rem}.custom-checkbox.b-custom-control-sm .custom-control-label:before,.input-group-sm .custom-checkbox .custom-control-label:before{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;border-radius:.2rem}.custom-checkbox.b-custom-control-sm .custom-control-label:after,.input-group-sm .custom-checkbox .custom-control-label:after{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;background-size:50% 50%}.custom-switch.b-custom-control-lg,.input-group-lg .custom-switch{padding-left:2.8125rem}.custom-switch.b-custom-control-lg .custom-control-label,.input-group-lg .custom-switch .custom-control-label{font-size:1.25rem;line-height:1.5}.custom-switch.b-custom-control-lg .custom-control-label:before,.input-group-lg .custom-switch .custom-control-label:before{top:.3125rem;height:1.25rem;left:-2.8125rem;width:2.1875rem;border-radius:.625rem}.custom-switch.b-custom-control-lg .custom-control-label:after,.input-group-lg .custom-switch .custom-control-label:after{top:calc(.3125rem + 2px);left:calc(-2.8125rem + 2px);width:calc(1.25rem - 4px);height:calc(1.25rem - 4px);border-radius:.625rem;background-size:50% 50%}.custom-switch.b-custom-control-lg .custom-control-input:checked~.custom-control-label:after,.input-group-lg .custom-switch .custom-control-input:checked~.custom-control-label:after{-webkit-transform:translateX(.9375rem);transform:translateX(.9375rem)}.custom-switch.b-custom-control-sm,.input-group-sm .custom-switch{padding-left:1.96875rem}.custom-switch.b-custom-control-sm .custom-control-label,.input-group-sm .custom-switch .custom-control-label{font-size:.875rem;line-height:1.5}.custom-switch.b-custom-control-sm .custom-control-label:before,.input-group-sm .custom-switch .custom-control-label:before{top:.21875rem;left:-1.96875rem;width:1.53125rem;height:.875rem;border-radius:.4375rem}.custom-switch.b-custom-control-sm .custom-control-label:after,.input-group-sm .custom-switch .custom-control-label:after{top:calc(.21875rem + 2px);left:calc(-1.96875rem + 2px);width:calc(.875rem - 4px);height:calc(.875rem - 4px);border-radius:.4375rem;background-size:50% 50%}.custom-switch.b-custom-control-sm .custom-control-input:checked~.custom-control-label:after,.input-group-sm .custom-switch .custom-control-input:checked~.custom-control-label:after{-webkit-transform:translateX(.65625rem);transform:translateX(.65625rem)}.input-group>.input-group-append:last-child>.btn-group:not(:last-child):not(.dropdown-toggle)>.btn,.input-group>.input-group-append:not(:last-child)>.btn-group>.btn,.input-group>.input-group-prepend>.btn-group>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn-group>.btn,.input-group>.input-group-prepend:first-child>.btn-group:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.btn-group>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.b-custom-control-lg.custom-file,.b-custom-control-lg .custom-file-input,.b-custom-control-lg .custom-file-label,.input-group-lg.custom-file,.input-group-lg .custom-file-input,.input-group-lg .custom-file-label{font-size:1.25rem;height:calc(1.5em + 1rem + 2px)}.b-custom-control-lg .custom-file-label,.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label,.input-group-lg .custom-file-label:after{padding:.5rem 1rem;line-height:1.5}.b-custom-control-lg .custom-file-label,.input-group-lg .custom-file-label{border-radius:.3rem}.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label:after{font-size:inherit;height:calc(1.5em + 1rem);border-radius:0 .3rem .3rem 0}.b-custom-control-sm.custom-file,.b-custom-control-sm .custom-file-input,.b-custom-control-sm .custom-file-label,.input-group-sm.custom-file,.input-group-sm .custom-file-input,.input-group-sm .custom-file-label{font-size:.875rem;height:calc(1.5em + .5rem + 2px)}.b-custom-control-sm .custom-file-label,.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label,.input-group-sm .custom-file-label:after{padding:.25rem .5rem;line-height:1.5}.b-custom-control-sm .custom-file-label,.input-group-sm .custom-file-label{border-radius:.2rem}.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label:after{font-size:inherit;height:calc(1.5em + .5rem);border-radius:0 .2rem .2rem 0}.form-control.is-invalid,.form-control.is-valid,.was-validated .form-control:invalid,.was-validated .form-control:valid{background-position:right calc(.375em + .1875rem) center}input[type=color].form-control{height:calc(1.5em + .75rem + 2px);padding:.125rem .25rem}.input-group-sm input[type=color].form-control,input[type=color].form-control.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.125rem .25rem}.input-group-lg input[type=color].form-control,input[type=color].form-control.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.125rem .25rem}input[type=color].form-control:disabled{background-color:#adb5bd;opacity:.65}.input-group>.custom-range{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-range,.input-group>.custom-range+.custom-file,.input-group>.custom-range+.custom-range,.input-group>.custom-range+.custom-select,.input-group>.custom-range+.form-control,.input-group>.custom-range+.form-control-plaintext,.input-group>.custom-select+.custom-range,.input-group>.form-control+.custom-range,.input-group>.form-control-plaintext+.custom-range{margin-left:-1px}.input-group>.custom-range:focus{z-index:3}.input-group>.custom-range:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-range:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-range{padding:0 .75rem;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;height:calc(1.5em + .75rem + 2px);border-radius:.25rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.input-group>.custom-range{-webkit-transition:none;transition:none}}.input-group>.custom-range:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.input-group>.custom-range:disabled,.input-group>.custom-range[readonly]{background-color:#e9ecef}.input-group-lg>.custom-range{height:calc(1.5em + 1rem + 2px);padding:0 1rem;border-radius:.3rem}.input-group-sm>.custom-range{height:calc(1.5em + .5rem + 2px);padding:0 .5rem;border-radius:.2rem}.input-group .custom-range.is-valid,.was-validated .input-group .custom-range:valid{border-color:#28a745}.input-group .custom-range.is-valid:focus,.was-validated .input-group .custom-range:valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-range.is-valid:focus::-webkit-slider-thumb,.was-validated .custom-range:valid:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac;box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.custom-range.is-valid:focus::-moz-range-thumb,.was-validated .custom-range:valid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.custom-range.is-valid:focus::-ms-thumb,.was-validated .custom-range:valid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.custom-range.is-valid::-webkit-slider-thumb,.was-validated .custom-range:valid::-webkit-slider-thumb{background-color:#28a745;background-image:none}.custom-range.is-valid::-webkit-slider-thumb:active,.was-validated .custom-range:valid::-webkit-slider-thumb:active{background-color:#9be7ac;background-image:none}.custom-range.is-valid::-webkit-slider-runnable-track,.was-validated .custom-range:valid::-webkit-slider-runnable-track{background-color:rgba(40,167,69,.35)}.custom-range.is-valid::-moz-range-thumb,.was-validated .custom-range:valid::-moz-range-thumb{background-color:#28a745;background-image:none}.custom-range.is-valid::-moz-range-thumb:active,.was-validated .custom-range:valid::-moz-range-thumb:active{background-color:#9be7ac;background-image:none}.custom-range.is-valid::-moz-range-track,.was-validated .custom-range:valid::-moz-range-track{background:rgba(40,167,69,.35)}.custom-range.is-valid~.valid-feedback,.custom-range.is-valid~.valid-tooltip,.was-validated .custom-range:valid~.valid-feedback,.was-validated .custom-range:valid~.valid-tooltip{display:block}.custom-range.is-valid::-ms-thumb,.was-validated .custom-range:valid::-ms-thumb{background-color:#28a745;background-image:none}.custom-range.is-valid::-ms-thumb:active,.was-validated .custom-range:valid::-ms-thumb:active{background-color:#9be7ac;background-image:none}.custom-range.is-valid::-ms-track-lower,.custom-range.is-valid::-ms-track-upper,.was-validated .custom-range:valid::-ms-track-lower,.was-validated .custom-range:valid::-ms-track-upper{background:rgba(40,167,69,.35)}.input-group .custom-range.is-invalid,.was-validated .input-group .custom-range:invalid{border-color:#dc3545}.input-group .custom-range.is-invalid:focus,.was-validated .input-group .custom-range:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-range.is-invalid:focus::-webkit-slider-thumb,.was-validated .custom-range:invalid:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1;box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.custom-range.is-invalid:focus::-moz-range-thumb,.was-validated .custom-range:invalid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.custom-range.is-invalid:focus::-ms-thumb,.was-validated .custom-range:invalid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.custom-range.is-invalid::-webkit-slider-thumb,.was-validated .custom-range:invalid::-webkit-slider-thumb{background-color:#dc3545;background-image:none}.custom-range.is-invalid::-webkit-slider-thumb:active,.was-validated .custom-range:invalid::-webkit-slider-thumb:active{background-color:#f6cdd1;background-image:none}.custom-range.is-invalid::-webkit-slider-runnable-track,.was-validated .custom-range:invalid::-webkit-slider-runnable-track{background-color:rgba(220,53,69,.35)}.custom-range.is-invalid::-moz-range-thumb,.was-validated .custom-range:invalid::-moz-range-thumb{background-color:#dc3545;background-image:none}.custom-range.is-invalid::-moz-range-thumb:active,.was-validated .custom-range:invalid::-moz-range-thumb:active{background-color:#f6cdd1;background-image:none}.custom-range.is-invalid::-moz-range-track,.was-validated .custom-range:invalid::-moz-range-track{background:rgba(220,53,69,.35)}.custom-range.is-invalid~.invalid-feedback,.custom-range.is-invalid~.invalid-tooltip,.was-validated .custom-range:invalid~.invalid-feedback,.was-validated .custom-range:invalid~.invalid-tooltip{display:block}.custom-range.is-invalid::-ms-thumb,.was-validated .custom-range:invalid::-ms-thumb{background-color:#dc3545;background-image:none}.custom-range.is-invalid::-ms-thumb:active,.was-validated .custom-range:invalid::-ms-thumb:active{background-color:#f6cdd1;background-image:none}.custom-range.is-invalid::-ms-track-lower,.custom-range.is-invalid::-ms-track-upper,.was-validated .custom-range:invalid::-ms-track-lower,.was-validated .custom-range:invalid::-ms-track-upper{background:rgba(220,53,69,.35)}.custom-radio.b-custom-control-lg,.input-group-lg .custom-radio{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-radio.b-custom-control-lg .custom-control-label:before,.input-group-lg .custom-radio .custom-control-label:before{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:50%}.custom-radio.b-custom-control-lg .custom-control-label:after,.input-group-lg .custom-radio .custom-control-label:after{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background:no-repeat 50%/50% 50%}.custom-radio.b-custom-control-sm,.input-group-sm .custom-radio{font-size:.875rem;line-height:1.5;padding-left:1.3125rem}.custom-radio.b-custom-control-sm .custom-control-label:before,.input-group-sm .custom-radio .custom-control-label:before{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;border-radius:50%}.custom-radio.b-custom-control-sm .custom-control-label:after,.input-group-sm .custom-radio .custom-control-label:after{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;background:no-repeat 50%/50% 50%}.b-rating{text-align:center}.b-rating.d-inline-flex{width:auto}.b-rating .b-rating-star,.b-rating .b-rating-value{padding:0 .25em}.b-rating .b-rating-value{min-width:2.5em}.b-rating .b-rating-star{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0}.b-rating .b-rating-star,.b-rating .b-rating-star .b-rating-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.b-rating .b-rating-star .b-rating-icon{-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out}.b-rating.disabled,.b-rating:disabled{background-color:#e9ecef;color:#6c757d}.b-rating:not(.disabled):not(.readonly) .b-rating-star{cursor:pointer}.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon,.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon{-webkit-transform:scale(1.5);transform:scale(1.5)}.b-rating[dir=rtl] .b-rating-star-half{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.b-form-spinbutton{text-align:center;overflow:hidden;background-image:none;padding:0}.b-form-spinbutton[dir=rtl]:not(.flex-column),[dir=rtl] .b-form-spinbutton:not(.flex-column){-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.b-form-spinbutton output{font-size:inherit;outline:0;border:0;background-color:transparent;width:auto;margin:0;padding:0 .25rem}.b-form-spinbutton output>bdi,.b-form-spinbutton output>div{display:block;min-width:2.25em;height:1.5em}.b-form-spinbutton.flex-column{height:auto;width:auto}.b-form-spinbutton.flex-column output{margin:0 .25rem;padding:.25rem 0}.b-form-spinbutton:not(.d-inline-flex):not(.flex-column){output-width:100%}.b-form-spinbutton.d-inline-flex:not(.flex-column){width:auto}.b-form-spinbutton .btn{line-height:1;-webkit-box-shadow:none!important;box-shadow:none!important}.b-form-spinbutton .btn:disabled{pointer-events:none}.b-form-spinbutton .btn:hover:not(:disabled)>div>.b-icon{-webkit-transform:scale(1.25);transform:scale(1.25)}.b-form-spinbutton.disabled,.b-form-spinbutton.readonly{background-color:#e9ecef}.b-form-spinbutton.disabled{pointer-events:none}.b-form-tags.focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,.25);box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.b-form-tags.focus.is-valid{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,.25);box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.b-form-tags.focus.is-invalid{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,.25);box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.b-form-tags.disabled{background-color:#e9ecef}.b-form-tag{font-size:75%;font-weight:400;line-height:1.5}.b-form-tag.disabled{opacity:.75}.b-form-tag>button.b-form-tag-remove{color:inherit;font-size:125%;line-height:1;float:none}.form-control-lg .b-form-tag,.form-control-sm .b-form-tag{line-height:1.5}.modal-backdrop{opacity:.5}.b-pagination-pills .page-item .page-link{border-radius:50rem!important;margin-left:.25rem;line-height:1}.b-pagination-pills .page-item:first-child .page-link{margin-left:0}.popover.b-popover{display:block;opacity:1;outline:0}.popover.b-popover.fade:not(.show){opacity:0}.popover.b-popover.show{opacity:1}.b-popover-primary.popover{background-color:#cce5ff;border-color:#b8daff}.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-primary.bs-popover-top>.arrow:before{border-top-color:#b8daff}.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-primary.bs-popover-top>.arrow:after{border-top-color:#cce5ff}.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-primary.bs-popover-right>.arrow:before{border-right-color:#b8daff}.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-primary.bs-popover-right>.arrow:after{border-right-color:#cce5ff}.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-primary.bs-popover-bottom>.arrow:before{border-bottom-color:#b8daff}.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-primary.bs-popover-bottom .popover-header:before,.b-popover-primary.bs-popover-bottom>.arrow:after{border-bottom-color:#bdddff}.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-primary.bs-popover-left>.arrow:before{border-left-color:#b8daff}.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-primary.bs-popover-left>.arrow:after{border-left-color:#cce5ff}.b-popover-primary .popover-header{color:#212529;background-color:#bdddff;border-bottom-color:#a3d0ff}.b-popover-primary .popover-body{color:#004085}.b-popover-secondary.popover{background-color:#e2e3e5;border-color:#d6d8db}.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-secondary.bs-popover-top>.arrow:before{border-top-color:#d6d8db}.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-secondary.bs-popover-top>.arrow:after{border-top-color:#e2e3e5}.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-secondary.bs-popover-right>.arrow:before{border-right-color:#d6d8db}.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-secondary.bs-popover-right>.arrow:after{border-right-color:#e2e3e5}.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-secondary.bs-popover-bottom>.arrow:before{border-bottom-color:#d6d8db}.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-secondary.bs-popover-bottom .popover-header:before,.b-popover-secondary.bs-popover-bottom>.arrow:after{border-bottom-color:#dadbde}.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-secondary.bs-popover-left>.arrow:before{border-left-color:#d6d8db}.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-secondary.bs-popover-left>.arrow:after{border-left-color:#e2e3e5}.b-popover-secondary .popover-header{color:#212529;background-color:#dadbde;border-bottom-color:#ccced2}.b-popover-secondary .popover-body{color:#383d41}.b-popover-success.popover{background-color:#d4edda;border-color:#c3e6cb}.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-success.bs-popover-top>.arrow:before{border-top-color:#c3e6cb}.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-success.bs-popover-top>.arrow:after{border-top-color:#d4edda}.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-success.bs-popover-right>.arrow:before{border-right-color:#c3e6cb}.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-success.bs-popover-right>.arrow:after{border-right-color:#d4edda}.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-success.bs-popover-bottom>.arrow:before{border-bottom-color:#c3e6cb}.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-success.bs-popover-bottom .popover-header:before,.b-popover-success.bs-popover-bottom>.arrow:after{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-success.bs-popover-left>.arrow:before{border-left-color:#c3e6cb}.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-success.bs-popover-left>.arrow:after{border-left-color:#d4edda}.b-popover-success .popover-header{color:#212529;background-color:#c9e8d1;border-bottom-color:#b7e1c1}.b-popover-success .popover-body{color:#155724}.b-popover-info.popover{background-color:#d1ecf1;border-color:#bee5eb}.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-info.bs-popover-top>.arrow:before{border-top-color:#bee5eb}.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-info.bs-popover-top>.arrow:after{border-top-color:#d1ecf1}.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-info.bs-popover-right>.arrow:before{border-right-color:#bee5eb}.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-info.bs-popover-right>.arrow:after{border-right-color:#d1ecf1}.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-info.bs-popover-bottom>.arrow:before{border-bottom-color:#bee5eb}.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-info.bs-popover-bottom .popover-header:before,.b-popover-info.bs-popover-bottom>.arrow:after{border-bottom-color:#c5e7ed}.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-info.bs-popover-left>.arrow:before{border-left-color:#bee5eb}.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-info.bs-popover-left>.arrow:after{border-left-color:#d1ecf1}.b-popover-info .popover-header{color:#212529;background-color:#c5e7ed;border-bottom-color:#b2dfe7}.b-popover-info .popover-body{color:#0c5460}.b-popover-warning.popover{background-color:#fff3cd;border-color:#ffeeba}.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-warning.bs-popover-top>.arrow:before{border-top-color:#ffeeba}.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-warning.bs-popover-top>.arrow:after{border-top-color:#fff3cd}.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-warning.bs-popover-right>.arrow:before{border-right-color:#ffeeba}.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-warning.bs-popover-right>.arrow:after{border-right-color:#fff3cd}.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-warning.bs-popover-bottom>.arrow:before{border-bottom-color:#ffeeba}.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-warning.bs-popover-bottom .popover-header:before,.b-popover-warning.bs-popover-bottom>.arrow:after{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-warning.bs-popover-left>.arrow:before{border-left-color:#ffeeba}.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-warning.bs-popover-left>.arrow:after{border-left-color:#fff3cd}.b-popover-warning .popover-header{color:#212529;background-color:#ffefbe;border-bottom-color:#ffe9a4}.b-popover-warning .popover-body{color:#856404}.b-popover-danger.popover{background-color:#f8d7da;border-color:#f5c6cb}.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-danger.bs-popover-top>.arrow:before{border-top-color:#f5c6cb}.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-danger.bs-popover-top>.arrow:after{border-top-color:#f8d7da}.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-danger.bs-popover-right>.arrow:before{border-right-color:#f5c6cb}.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-danger.bs-popover-right>.arrow:after{border-right-color:#f8d7da}.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-danger.bs-popover-bottom>.arrow:before{border-bottom-color:#f5c6cb}.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-danger.bs-popover-bottom .popover-header:before,.b-popover-danger.bs-popover-bottom>.arrow:after{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-danger.bs-popover-left>.arrow:before{border-left-color:#f5c6cb}.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-danger.bs-popover-left>.arrow:after{border-left-color:#f8d7da}.b-popover-danger .popover-header{color:#212529;background-color:#f6cace;border-bottom-color:#f2b4ba}.b-popover-danger .popover-body{color:#721c24}.b-popover-light.popover{background-color:#fefefe;border-color:#fdfdfe}.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-light.bs-popover-top>.arrow:before{border-top-color:#fdfdfe}.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-light.bs-popover-top>.arrow:after{border-top-color:#fefefe}.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-light.bs-popover-right>.arrow:before{border-right-color:#fdfdfe}.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-light.bs-popover-right>.arrow:after{border-right-color:#fefefe}.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-light.bs-popover-bottom>.arrow:before{border-bottom-color:#fdfdfe}.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-light.bs-popover-bottom .popover-header:before,.b-popover-light.bs-popover-bottom>.arrow:after{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-light.bs-popover-left>.arrow:before{border-left-color:#fdfdfe}.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-light.bs-popover-left>.arrow:after{border-left-color:#fefefe}.b-popover-light .popover-header{color:#212529;background-color:#f6f6f6;border-bottom-color:#eaeaea}.b-popover-light .popover-body{color:#818182}.b-popover-dark.popover{background-color:#d6d8d9;border-color:#c6c8ca}.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow:before,.b-popover-dark.bs-popover-top>.arrow:before{border-top-color:#c6c8ca}.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow:after,.b-popover-dark.bs-popover-top>.arrow:after{border-top-color:#d6d8d9}.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow:before,.b-popover-dark.bs-popover-right>.arrow:before{border-right-color:#c6c8ca}.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow:after,.b-popover-dark.bs-popover-right>.arrow:after{border-right-color:#d6d8d9}.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow:before,.b-popover-dark.bs-popover-bottom>.arrow:before{border-bottom-color:#c6c8ca}.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header:before,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow:after,.b-popover-dark.bs-popover-bottom .popover-header:before,.b-popover-dark.bs-popover-bottom>.arrow:after{border-bottom-color:#ced0d2}.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow:before,.b-popover-dark.bs-popover-left>.arrow:before{border-left-color:#c6c8ca}.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow:after,.b-popover-dark.bs-popover-left>.arrow:after{border-left-color:#d6d8d9}.b-popover-dark .popover-header{color:#212529;background-color:#ced0d2;border-bottom-color:#c1c4c5}.b-popover-dark .popover-body{color:#1b1e21}.b-sidebar-outer{right:0;height:0;overflow:visible;z-index:1035}.b-sidebar-backdrop,.b-sidebar-outer{position:fixed!important;top:0;left:0}.b-sidebar-backdrop{z-index:-1;width:100vw;height:100vh;background-color:#000;opacity:.5}.b-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:fixed!important;top:0;height:100vh;width:320px;max-width:100%!important;height:100vh!important;margin:0!important;outline:0;-webkit-transform:translateX(0);transform:translateX(0)}.b-sidebar.slide{transition:-webkit-transform .3s ease-in-out;-webkit-transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out,-webkit-transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.b-sidebar.slide{-webkit-transition:none;transition:none}}.b-sidebar:not(.b-sidebar-right){left:0;right:auto}.b-sidebar:not(.b-sidebar-right).slide:not(.show){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.b-sidebar:not(.b-sidebar-right)>.b-sidebar-header .close{margin-left:auto}.b-sidebar.b-sidebar-right{left:auto;right:0}.b-sidebar.b-sidebar-right.slide:not(.show){-webkit-transform:translateX(100%);transform:translateX(100%)}.b-sidebar.b-sidebar-right>.b-sidebar-header .close{margin-right:auto}.b-sidebar>.b-sidebar-header{font-size:1.5rem;padding:.5rem 1rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[dir=rtl] .b-sidebar>.b-sidebar-header{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.b-sidebar>.b-sidebar-header .close{float:none;font-size:1.5rem}.b-sidebar>.b-sidebar-body{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:100%;overflow-y:auto}.b-sidebar>.b-sidebar-footer{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.table.b-table.b-table-fixed{table-layout:fixed}.table.b-table.b-table-no-border-collapse{border-collapse:separate;border-spacing:0}.table.b-table[aria-busy=true]{opacity:.55}.table.b-table>tbody>tr.b-table-details>td{border-top:none!important}.table.b-table>caption{caption-side:bottom}.table.b-table.b-table-caption-top>caption{caption-side:top!important}.table.b-table>tbody>.table-active,.table.b-table>tbody>.table-active>td,.table.b-table>tbody>.table-active>th{background-color:rgba(0,0,0,.075)}.table.b-table.table-hover>tbody>tr.table-active:hover td,.table.b-table.table-hover>tbody>tr.table-active:hover th{color:#212529;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.075)),to(rgba(0,0,0,.075)));background-image:linear-gradient(rgba(0,0,0,.075),rgba(0,0,0,.075));background-repeat:no-repeat}.table.b-table>tbody>.bg-active,.table.b-table>tbody>.bg-active>td,.table.b-table>tbody>.bg-active>th{background-color:hsla(0,0%,100%,.075)!important}.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover td,.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover th{color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,.075)),to(hsla(0,0%,100%,.075)));background-image:linear-gradient(hsla(0,0%,100%,.075),hsla(0,0%,100%,.075));background-repeat:no-repeat}.b-table-sticky-header,.table-responsive,[class*=table-responsive-]{margin-bottom:1rem}.b-table-sticky-header>.table,.table-responsive>.table,[class*=table-responsive-]>.table{margin-bottom:0}.b-table-sticky-header{overflow-y:auto;max-height:300px}@media print{.b-table-sticky-header{overflow-y:visible!important;max-height:none!important}}@supports ((position:-webkit-sticky) or (position:sticky)){.b-table-sticky-header>.table.b-table>thead>tr>th{position:-webkit-sticky;position:sticky;top:0;z-index:2}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{position:-webkit-sticky;position:sticky;left:0}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{z-index:5}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{z-index:2}.table.b-table>tbody>tr>.table-b-table-default,.table.b-table>tfoot>tr>.table-b-table-default,.table.b-table>thead>tr>.table-b-table-default{color:#212529;background-color:#fff}.table.b-table.table-dark>tbody>tr>.bg-b-table-default,.table.b-table.table-dark>tfoot>tr>.bg-b-table-default,.table.b-table.table-dark>thead>tr>.bg-b-table-default{color:#fff;background-color:#343a40}.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.05)),to(rgba(0,0,0,.05)));background-image:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05));background-repeat:no-repeat}.table.b-table.table-striped.table-dark>tbody>tr:nth-of-type(odd)>.bg-b-table-default{background-image:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,.05)),to(hsla(0,0%,100%,.05)));background-image:linear-gradient(hsla(0,0%,100%,.05),hsla(0,0%,100%,.05));background-repeat:no-repeat}.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default{color:#212529;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.075)),to(rgba(0,0,0,.075)));background-image:linear-gradient(rgba(0,0,0,.075),rgba(0,0,0,.075));background-repeat:no-repeat}.table.b-table.table-hover.table-dark>tbody>tr:hover>.bg-b-table-default{color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,.075)),to(hsla(0,0%,100%,.075)));background-image:linear-gradient(hsla(0,0%,100%,.075),hsla(0,0%,100%,.075));background-repeat:no-repeat}}.table.b-table>tfoot>tr>[aria-sort],.table.b-table>thead>tr>[aria-sort]{cursor:pointer;background-image:none;background-repeat:no-repeat;background-size:.65em 1em}.table.b-table>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table>thead>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right .375rem center;padding-right:calc(.75rem + .65em)}.table.b-table>tfoot>tr>[aria-sort].b-table-sort-icon-left,.table.b-table>thead>tr>[aria-sort].b-table-sort-icon-left{background-position:left .375rem center;padding-left:calc(.75rem + .65em)}.table.b-table>tfoot>tr>[aria-sort=none],.table.b-table>thead>tr>[aria-sort=none]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table>tfoot>tr>[aria-sort=ascending],.table.b-table>thead>tr>[aria-sort=ascending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table>tfoot>tr>[aria-sort=descending],.table.b-table>thead>tr>[aria-sort=descending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table.table-dark>tfoot>tr>[aria-sort=none],.table.b-table.table-dark>thead>tr>[aria-sort=none],.table.b-table>.thead-dark>tr>[aria-sort=none]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table.table-dark>tfoot>tr>[aria-sort=ascending],.table.b-table.table-dark>thead>tr>[aria-sort=ascending],.table.b-table>.thead-dark>tr>[aria-sort=ascending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table.table-dark>tfoot>tr>[aria-sort=descending],.table.b-table.table-dark>thead>tr>[aria-sort=descending],.table.b-table>.thead-dark>tr>[aria-sort=descending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table>tfoot>tr>.table-dark[aria-sort=none],.table.b-table>thead>tr>.table-dark[aria-sort=none]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table>tfoot>tr>.table-dark[aria-sort=ascending],.table.b-table>thead>tr>.table-dark[aria-sort=ascending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table>tfoot>tr>.table-dark[aria-sort=descending],.table.b-table>thead>tr>.table-dark[aria-sort=descending]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E")}.table.b-table.table-sm>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table.table-sm>thead>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right .15rem center;padding-right:calc(.3rem + .65em)}.table.b-table.table-sm>tfoot>tr>[aria-sort].b-table-sort-icon-left,.table.b-table.table-sm>thead>tr>[aria-sort].b-table-sort-icon-left{background-position:left .15rem center;padding-left:calc(.3rem + .65em)}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click)>tbody>tr{cursor:pointer}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range>tbody>tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media (max-width:575.98px){.table.b-table.b-table-stacked-sm{display:block;width:100%}.table.b-table.b-table-stacked-sm>caption,.table.b-table.b-table-stacked-sm>tbody,.table.b-table.b-table-stacked-sm>tbody>tr,.table.b-table.b-table-stacked-sm>tbody>tr>td,.table.b-table.b-table-stacked-sm>tbody>tr>th{display:block}.table.b-table.b-table-stacked-sm>tfoot,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>thead,.table.b-table.b-table-stacked-sm>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>thead>tr.b-table-top-row{display:none}.table.b-table.b-table-stacked-sm>caption{caption-side:top!important}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]:before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:700;font-style:normal;padding:0 .5rem 0 0;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]:after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]>div{display:inline-block;width:60%;padding:0 0 0 .5rem;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr.bottom-row,.table.b-table.b-table-stacked-sm>tbody>tr.top-row{display:none}.table.b-table.b-table-stacked-sm>tbody>tr>:first-child,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width:767.98px){.table.b-table.b-table-stacked-md{display:block;width:100%}.table.b-table.b-table-stacked-md>caption,.table.b-table.b-table-stacked-md>tbody,.table.b-table.b-table-stacked-md>tbody>tr,.table.b-table.b-table-stacked-md>tbody>tr>td,.table.b-table.b-table-stacked-md>tbody>tr>th{display:block}.table.b-table.b-table-stacked-md>tfoot,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-md>thead,.table.b-table.b-table-stacked-md>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>thead>tr.b-table-top-row{display:none}.table.b-table.b-table-stacked-md>caption{caption-side:top!important}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]:before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:700;font-style:normal;padding:0 .5rem 0 0;margin:0}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]:after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]>div{display:inline-block;width:60%;padding:0 0 0 .5rem;margin:0}.table.b-table.b-table-stacked-md>tbody>tr.bottom-row,.table.b-table.b-table-stacked-md>tbody>tr.top-row{display:none}.table.b-table.b-table-stacked-md>tbody>tr>:first-child,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width:991.98px){.table.b-table.b-table-stacked-lg{display:block;width:100%}.table.b-table.b-table-stacked-lg>caption,.table.b-table.b-table-stacked-lg>tbody,.table.b-table.b-table-stacked-lg>tbody>tr,.table.b-table.b-table-stacked-lg>tbody>tr>td,.table.b-table.b-table-stacked-lg>tbody>tr>th{display:block}.table.b-table.b-table-stacked-lg>tfoot,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>thead,.table.b-table.b-table-stacked-lg>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>thead>tr.b-table-top-row{display:none}.table.b-table.b-table-stacked-lg>caption{caption-side:top!important}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]:before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:700;font-style:normal;padding:0 .5rem 0 0;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]:after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]>div{display:inline-block;width:60%;padding:0 0 0 .5rem;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr.bottom-row,.table.b-table.b-table-stacked-lg>tbody>tr.top-row{display:none}.table.b-table.b-table-stacked-lg>tbody>tr>:first-child,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+th{border-top-width:3px}}@media (max-width:1199.98px){.table.b-table.b-table-stacked-xl{display:block;width:100%}.table.b-table.b-table-stacked-xl>caption,.table.b-table.b-table-stacked-xl>tbody,.table.b-table.b-table-stacked-xl>tbody>tr,.table.b-table.b-table-stacked-xl>tbody>tr>td,.table.b-table.b-table-stacked-xl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xl>tfoot,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>thead,.table.b-table.b-table-stacked-xl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>thead>tr.b-table-top-row{display:none}.table.b-table.b-table-stacked-xl>caption{caption-side:top!important}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]:before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:700;font-style:normal;padding:0 .5rem 0 0;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]:after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]>div{display:inline-block;width:60%;padding:0 0 0 .5rem;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr.bottom-row,.table.b-table.b-table-stacked-xl>tbody>tr.top-row{display:none}.table.b-table.b-table-stacked-xl>tbody>tr>:first-child,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+th{border-top-width:3px}}.table.b-table.b-table-stacked{display:block;width:100%}.table.b-table.b-table-stacked>caption,.table.b-table.b-table-stacked>tbody,.table.b-table.b-table-stacked>tbody>tr,.table.b-table.b-table-stacked>tbody>tr>td,.table.b-table.b-table-stacked>tbody>tr>th{display:block}.table.b-table.b-table-stacked>tfoot,.table.b-table.b-table-stacked>tfoot>tr.b-table-bottom-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked>thead,.table.b-table.b-table-stacked>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked>thead>tr.b-table-top-row{display:none}.table.b-table.b-table-stacked>caption{caption-side:top!important}.table.b-table.b-table-stacked>tbody>tr>[data-label]:before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:700;font-style:normal;padding:0 .5rem 0 0;margin:0}.table.b-table.b-table-stacked>tbody>tr>[data-label]:after{display:block;clear:both;content:""}.table.b-table.b-table-stacked>tbody>tr>[data-label]>div{display:inline-block;width:60%;padding:0 0 0 .5rem;margin:0}.table.b-table.b-table-stacked>tbody>tr.bottom-row,.table.b-table.b-table-stacked>tbody>tr.top-row{display:none}.table.b-table.b-table-stacked>tbody>tr>:first-child,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+th{border-top-width:3px}.b-time{min-width:150px}.b-time[aria-disabled=true] output,.b-time[aria-readonly=true] output,.b-time output.disabled{background-color:#e9ecef;opacity:1}.b-time[aria-disabled=true] output{pointer-events:none}[dir=rtl] .b-time>.d-flex:not(.flex-column){-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.b-time .b-time-header{margin-bottom:.5rem}.b-time .b-time-header output{padding:.25rem;font-size:80%}.b-time .b-time-footer{margin-top:.5rem}.b-time .b-time-ampm{margin-left:.5rem}.b-toast{display:block;position:relative;max-width:350px;-webkit-backface-visibility:hidden;backface-visibility:hidden;background-clip:padding-box;z-index:1;border-radius:.25rem}.b-toast .toast{background-color:hsla(0,0%,100%,.85)}.b-toast:not(:last-child){margin-bottom:.75rem}.b-toast.b-toast-solid .toast{background-color:#fff}.b-toast .toast{opacity:1}.b-toast .toast.fade:not(.show){opacity:0}.b-toast .toast .toast-body{display:block}.b-toast-primary .toast{background-color:rgba(230,242,255,.85);border-color:rgba(184,218,255,.85);color:#004085}.b-toast-primary .toast .toast-header{color:#004085;background-color:rgba(204,229,255,.85);border-bottom-color:rgba(184,218,255,.85)}.b-toast-primary.b-toast-solid .toast{background-color:#e6f2ff}.b-toast-secondary .toast{background-color:rgba(239,240,241,.85);border-color:rgba(214,216,219,.85);color:#383d41}.b-toast-secondary .toast .toast-header{color:#383d41;background-color:rgba(226,227,229,.85);border-bottom-color:rgba(214,216,219,.85)}.b-toast-secondary.b-toast-solid .toast{background-color:#eff0f1}.b-toast-success .toast{background-color:rgba(230,245,233,.85);border-color:rgba(195,230,203,.85);color:#155724}.b-toast-success .toast .toast-header{color:#155724;background-color:rgba(212,237,218,.85);border-bottom-color:rgba(195,230,203,.85)}.b-toast-success.b-toast-solid .toast{background-color:#e6f5e9}.b-toast-info .toast{background-color:rgba(229,244,247,.85);border-color:rgba(190,229,235,.85);color:#0c5460}.b-toast-info .toast .toast-header{color:#0c5460;background-color:rgba(209,236,241,.85);border-bottom-color:rgba(190,229,235,.85)}.b-toast-info.b-toast-solid .toast{background-color:#e5f4f7}.b-toast-warning .toast{background-color:rgba(255,249,231,.85);border-color:rgba(255,238,186,.85);color:#856404}.b-toast-warning .toast .toast-header{color:#856404;background-color:rgba(255,243,205,.85);border-bottom-color:rgba(255,238,186,.85)}.b-toast-warning.b-toast-solid .toast{background-color:#fff9e7}.b-toast-danger .toast{background-color:rgba(252,237,238,.85);border-color:rgba(245,198,203,.85);color:#721c24}.b-toast-danger .toast .toast-header{color:#721c24;background-color:rgba(248,215,218,.85);border-bottom-color:rgba(245,198,203,.85)}.b-toast-danger.b-toast-solid .toast{background-color:#fcedee}.b-toast-light .toast{background-color:hsla(0,0%,100%,.85);border-color:rgba(253,253,254,.85);color:#818182}.b-toast-light .toast .toast-header{color:#818182;background-color:hsla(0,0%,99.6%,.85);border-bottom-color:rgba(253,253,254,.85)}.b-toast-light.b-toast-solid .toast{background-color:#fff}.b-toast-dark .toast{background-color:rgba(227,229,229,.85);border-color:rgba(198,200,202,.85);color:#1b1e21}.b-toast-dark .toast .toast-header{color:#1b1e21;background-color:rgba(214,216,217,.85);border-bottom-color:rgba(198,200,202,.85)}.b-toast-dark.b-toast-solid .toast{background-color:#e3e5e5}.b-toaster{z-index:1100}.b-toaster .b-toaster-slot{position:relative;display:block}.b-toaster .b-toaster-slot:empty{display:none!important}.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-right{position:fixed;left:.5rem;right:.5rem;margin:0;padding:0;height:0;overflow:visible}.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-right .b-toaster-slot{position:absolute;max-width:350px;width:100%;left:0;right:0;padding:0;margin:0}.b-toaster.b-toaster-bottom-full .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-top-full .b-toaster-slot .toast{width:100%;max-width:100%}.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-right{top:0}.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-right .b-toaster-slot{top:.5rem}.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-right{bottom:0}.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot{bottom:.5rem}.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-right .b-toaster-slot{margin-left:auto}.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot{margin-right:auto}.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-move{transition:-webkit-transform .175s;-webkit-transition:-webkit-transform .175s;transition:transform .175s;transition:transform .175s,-webkit-transform .175s}.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade{-webkit-transition-delay:.175s;transition-delay:.175s}.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active{position:absolute;-webkit-transition-delay:.175s;transition-delay:.175s}.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade{-webkit-transition-delay:0s;transition-delay:0s}.tooltip.b-tooltip{display:block;opacity:.9;outline:0}.tooltip.b-tooltip.fade:not(.show){opacity:0}.tooltip.b-tooltip.show{opacity:.9}.tooltip.b-tooltip.noninteractive{pointer-events:none}.tooltip.b-tooltip .arrow{margin:0 .25rem}.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.bs-tooltip-left .arrow,.tooltip.b-tooltip.bs-tooltip-right .arrow{margin:.25rem 0}.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-primary.bs-tooltip-top .arrow:before{border-top-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-primary.bs-tooltip-right .arrow:before{border-right-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow:before{border-bottom-color:#007bff}.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-primary.bs-tooltip-left .arrow:before{border-left-color:#007bff}.tooltip.b-tooltip-primary .tooltip-inner{color:#fff;background-color:#007bff}.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow:before{border-top-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow:before{border-right-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow:before{border-bottom-color:#6c757d}.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow:before{border-left-color:#6c757d}.tooltip.b-tooltip-secondary .tooltip-inner{color:#fff;background-color:#6c757d}.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-success.bs-tooltip-top .arrow:before{border-top-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-success.bs-tooltip-right .arrow:before{border-right-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow:before{border-bottom-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-success.bs-tooltip-left .arrow:before{border-left-color:#28a745}.tooltip.b-tooltip-success .tooltip-inner{color:#fff;background-color:#28a745}.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-info.bs-tooltip-top .arrow:before{border-top-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-info.bs-tooltip-right .arrow:before{border-right-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow:before{border-bottom-color:#17a2b8}.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-info.bs-tooltip-left .arrow:before{border-left-color:#17a2b8}.tooltip.b-tooltip-info .tooltip-inner{color:#fff;background-color:#17a2b8}.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-warning.bs-tooltip-top .arrow:before{border-top-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-warning.bs-tooltip-right .arrow:before{border-right-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow:before{border-bottom-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-warning.bs-tooltip-left .arrow:before{border-left-color:#ffc107}.tooltip.b-tooltip-warning .tooltip-inner{color:#212529;background-color:#ffc107}.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-danger.bs-tooltip-top .arrow:before{border-top-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-danger.bs-tooltip-right .arrow:before{border-right-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow:before{border-bottom-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-danger.bs-tooltip-left .arrow:before{border-left-color:#dc3545}.tooltip.b-tooltip-danger .tooltip-inner{color:#fff;background-color:#dc3545}.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-light.bs-tooltip-top .arrow:before{border-top-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-light.bs-tooltip-right .arrow:before{border-right-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow:before{border-bottom-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-light.bs-tooltip-left .arrow:before{border-left-color:#f8f9fa}.tooltip.b-tooltip-light .tooltip-inner{color:#212529;background-color:#f8f9fa}.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow:before,.tooltip.b-tooltip-dark.bs-tooltip-top .arrow:before{border-top-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow:before,.tooltip.b-tooltip-dark.bs-tooltip-right .arrow:before{border-right-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow:before{border-bottom-color:#343a40}.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow:before,.tooltip.b-tooltip-dark.bs-tooltip-left .arrow:before{border-left-color:#343a40}.tooltip.b-tooltip-dark .tooltip-inner{color:#fff;background-color:#343a40}.b-icon.bi{display:inline-block;overflow:visible;vertical-align:-.15em}.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-cylon .75s ease-in-out infinite alternate;animation:b-icon-animation-cylon .75s ease-in-out infinite alternate}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-cylon-vertical .75s ease-in-out infinite alternate;animation:b-icon-animation-cylon-vertical .75s ease-in-out infinite alternate}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-fade .75s ease-in-out infinite alternate;animation:b-icon-animation-fade .75s ease-in-out infinite alternate}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-spin 2s linear infinite normal;animation:b-icon-animation-spin 2s linear infinite normal}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-transform-origin:center;transform-origin:center;animation:b-icon-animation-spin 2s linear infinite reverse}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-spin 1s steps(8) infinite normal;animation:b-icon-animation-spin 1s steps(8) infinite normal}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-transform-origin:center;transform-origin:center;animation:b-icon-animation-spin 1s steps(8) infinite reverse}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{-webkit-animation:none;animation:none}}.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-transform-origin:center;transform-origin:center;-webkit-animation:b-icon-animation-throb .75s ease-in-out infinite alternate;animation:b-icon-animation-throb .75s ease-in-out infinite alternate}@media (prefers-reduced-motion:reduce){.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{-webkit-animation:none;animation:none}}@-webkit-keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}to{-webkit-transform:translateX(25%);transform:translateX(25%)}}@keyframes b-icon-animation-cylon{0%{-webkit-transform:translateX(-25%);transform:translateX(-25%)}to{-webkit-transform:translateX(25%);transform:translateX(25%)}}@-webkit-keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}to{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@keyframes b-icon-animation-cylon-vertical{0%{-webkit-transform:translateY(25%);transform:translateY(25%)}to{-webkit-transform:translateY(-25%);transform:translateY(-25%)}}@-webkit-keyframes b-icon-animation-fade{0%{opacity:.1}to{opacity:1}}@keyframes b-icon-animation-fade{0%{opacity:.1}to{opacity:1}}@-webkit-keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes b-icon-animation-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes b-icon-animation-throb{0%{opacity:.5;-webkit-transform:scale(.5);transform:scale(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes b-icon-animation-throb{0%{opacity:.5;-webkit-transform:scale(.5);transform:scale(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.btn .b-icon.bi,.dropdown-item .b-icon.bi,.dropdown-toggle .b-icon.bi,.input-group-text .b-icon.bi,.nav-link .b-icon.bi{font-size:125%;vertical-align:text-bottom} \ No newline at end of file diff --git a/dist/vueCronEditorBootstrap.umd.js b/dist/vueCronEditorBootstrap.umd.js new file mode 100644 index 0000000..3f46a55 --- /dev/null +++ b/dist/vueCronEditorBootstrap.umd.js @@ -0,0 +1,22292 @@ +(function webpackUniversalModuleDefinition(root, factory) { + if(typeof exports === 'object' && typeof module === 'object') + module.exports = factory(require("vue")); + else if(typeof define === 'function' && define.amd) + define([], factory); + else if(typeof exports === 'object') + exports["vueCronEditorBootstrap"] = factory(require("vue")); + else + root["vueCronEditorBootstrap"] = factory(root["Vue"]); +})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__8bbf__) { +return /******/ (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; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); +/******/ } +/******/ }; +/******/ +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ +/******/ // create a fake namespace object +/******/ // mode & 1: value is a module id, require it +/******/ // mode & 2: merge all properties of value into the ns +/******/ // mode & 4: return value when already ns object +/******/ // mode & 8|1: behave like require +/******/ __webpack_require__.t = function(value, mode) { +/******/ if(mode & 1) value = __webpack_require__(value); +/******/ if(mode & 8) return value; +/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; +/******/ var ns = Object.create(null); +/******/ __webpack_require__.r(ns); +/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); +/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); +/******/ return ns; +/******/ }; +/******/ +/******/ // 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 = "fb15"); +/******/ }) +/************************************************************************/ +/******/ ({ + +/***/ "01a8": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(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); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +// This comes from the fact that parseInt trims characters coming +// after digits and consider it a valid int, so `1*` becomes `1`. +var safeParseInt = function (value) { + if (/^\d+$/.test(value)) { + return Number(value); + } + else { + return NaN; + } +}; +var isWildcard = function (value) { + return value === '*'; +}; +var isQuestionMark = function (value) { + return value === '?'; +}; +var isInRange = function (value, start, stop) { + return value >= start && value <= stop; +}; +var isValidRange = function (value, start, stop) { + var sides = value.split('-'); + switch (sides.length) { + case 1: + return isWildcard(value) || isInRange(safeParseInt(value), start, stop); + case 2: + var _a = sides.map(function (side) { return safeParseInt(side); }), small = _a[0], big = _a[1]; + return small <= big && isInRange(small, start, stop) && isInRange(big, start, stop); + default: + return false; + } +}; +var isValidStep = function (value) { + return value === undefined || value.search(/[^\d]/) === -1; +}; +var validateForRange = function (value, start, stop) { + if (value.search(/[^\d-,\/*]/) !== -1) { + return false; + } + var list = value.split(','); + return list.every(function (condition) { + var splits = condition.split('/'); + // Prevents `*/ * * * *` from being accepted. + if (condition.trim().endsWith('/')) { + return false; + } + // Prevents `*/*/* * * * *` from being accepted + if (splits.length > 2) { + return false; + } + // If we don't have a `/`, right will be undefined which is considered a valid step if we don't a `/`. + var left = splits[0], right = splits[1]; + return isValidRange(left, start, stop) && isValidStep(right); + }); +}; +var hasValidSeconds = function (seconds) { + return validateForRange(seconds, 0, 59); +}; +var hasValidMinutes = function (minutes) { + return validateForRange(minutes, 0, 59); +}; +var hasValidHours = function (hours) { + return validateForRange(hours, 0, 23); +}; +var hasValidDays = function (days, allowBlankDay) { + return (allowBlankDay && isQuestionMark(days)) || validateForRange(days, 1, 31); +}; +var monthAlias = { + jan: '1', + feb: '2', + mar: '3', + apr: '4', + may: '5', + jun: '6', + jul: '7', + aug: '8', + sep: '9', + oct: '10', + nov: '11', + dec: '12' +}; +var hasValidMonths = function (months, alias) { + // Prevents alias to be used as steps + if (months.search(/\/[a-zA-Z]/) !== -1) { + return false; + } + if (alias) { + var remappedMonths = months.toLowerCase().replace(/[a-z]{3}/g, function (match) { + return monthAlias[match] === undefined ? match : monthAlias[match]; + }); + // If any invalid alias was used, it won't pass the other checks as there will be non-numeric values in the months + return validateForRange(remappedMonths, 1, 12); + } + return validateForRange(months, 1, 12); +}; +var weekdaysAlias = { + sun: '0', + mon: '1', + tue: '2', + wed: '3', + thu: '4', + fri: '5', + sat: '6' +}; +var hasValidWeekdays = function (weekdays, alias, allowBlankDay) { + // If there is a question mark, checks if the allowBlankDay flag is set + if (allowBlankDay && isQuestionMark(weekdays)) { + return true; + } + else if (!allowBlankDay && isQuestionMark(weekdays)) { + return false; + } + // Prevents alias to be used as steps + if (weekdays.search(/\/[a-zA-Z]/) !== -1) { + return false; + } + if (alias) { + var remappedWeekdays = weekdays.toLowerCase().replace(/[a-z]{3}/g, function (match) { + return weekdaysAlias[match] === undefined ? match : weekdaysAlias[match]; + }); + // If any invalid alias was used, it won't pass the other checks as there will be non-numeric values in the weekdays + return validateForRange(remappedWeekdays, 0, 6); + } + return validateForRange(weekdays, 0, 6); +}; +var hasCompatibleDayFormat = function (days, weekdays, allowBlankDay) { + return !(allowBlankDay && isQuestionMark(days) && isQuestionMark(weekdays)); +}; +var split = function (cron) { + return cron.trim().split(/\s+/); +}; +var defaultOptions = { + alias: false, + seconds: false, + allowBlankDay: false +}; +exports.isValidCron = function (cron, options) { + options = __assign(__assign({}, defaultOptions), options); + var splits = split(cron); + if (splits.length > (options.seconds ? 6 : 5) || splits.length < 5) { + return false; + } + var checks = []; + if (splits.length === 6) { + var seconds = splits.shift(); + if (seconds) { + checks.push(hasValidSeconds(seconds)); + } + } + // We could only check the steps gradually and return false on the first invalid block, + // However, this won't have any performance impact so why bother for now. + var minutes = splits[0], hours = splits[1], days = splits[2], months = splits[3], weekdays = splits[4]; + checks.push(hasValidMinutes(minutes)); + checks.push(hasValidHours(hours)); + checks.push(hasValidDays(days, options.allowBlankDay)); + checks.push(hasValidMonths(months, options.alias)); + checks.push(hasValidWeekdays(weekdays, options.alias, options.allowBlankDay)); + checks.push(hasCompatibleDayFormat(days, weekdays, options.allowBlankDay)); + return checks.every(Boolean); +}; +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ "0366": +/***/ (function(module, exports, __webpack_require__) { + +var aFunction = __webpack_require__("1c0b"); + +// optional / simple context binding +module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 0: return function () { + return fn.call(that); + }; + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; +}; + + +/***/ }), + +/***/ "057f": +/***/ (function(module, exports, __webpack_require__) { + +var toIndexedObject = __webpack_require__("fc6a"); +var nativeGetOwnPropertyNames = __webpack_require__("241c").f; + +var toString = {}.toString; + +var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames + ? Object.getOwnPropertyNames(window) : []; + +var getWindowNames = function (it) { + try { + return nativeGetOwnPropertyNames(it); + } catch (error) { + return windowNames.slice(); + } +}; + +// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window +module.exports.f = function getOwnPropertyNames(it) { + return windowNames && toString.call(it) == '[object Window]' + ? getWindowNames(it) + : nativeGetOwnPropertyNames(toIndexedObject(it)); +}; + + +/***/ }), + +/***/ "06cf": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var propertyIsEnumerableModule = __webpack_require__("d1e7"); +var createPropertyDescriptor = __webpack_require__("5c6c"); +var toIndexedObject = __webpack_require__("fc6a"); +var toPrimitive = __webpack_require__("c04e"); +var has = __webpack_require__("5135"); +var IE8_DOM_DEFINE = __webpack_require__("0cfb"); + +var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; + +// `Object.getOwnPropertyDescriptor` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor +exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) try { + return nativeGetOwnPropertyDescriptor(O, P); + } catch (error) { /* empty */ } + if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]); +}; + + +/***/ }), + +/***/ "0cfb": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var fails = __webpack_require__("d039"); +var createElement = __webpack_require__("cc12"); + +// Thank's IE8 for his funny defineProperty +module.exports = !DESCRIPTORS && !fails(function () { + return Object.defineProperty(createElement('div'), 'a', { + get: function () { return 7; } + }).a != 7; +}); + + +/***/ }), + +/***/ "122c": +/***/ (function(module, exports, __webpack_require__) { + +(function webpackUniversalModuleDefinition(root, factory) { + if(true) + module.exports = factory(); + else {} +})(typeof self !== 'undefined' ? self : this, function() { +return /******/ (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; +/******/ +/******/ // define getter function for harmony exports +/******/ __webpack_require__.d = function(exports, name, getter) { +/******/ if(!__webpack_require__.o(exports, name)) { +/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); +/******/ } +/******/ }; +/******/ +/******/ // define __esModule on exports +/******/ __webpack_require__.r = function(exports) { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ +/******/ // create a fake namespace object +/******/ // mode & 1: value is a module id, require it +/******/ // mode & 2: merge all properties of value into the ns +/******/ // mode & 4: return value when already ns object +/******/ // mode & 8|1: behave like require +/******/ __webpack_require__.t = function(value, mode) { +/******/ if(mode & 1) value = __webpack_require__(value); +/******/ if(mode & 8) return value; +/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; +/******/ var ns = Object.create(null); +/******/ __webpack_require__.r(ns); +/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); +/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); +/******/ return ns; +/******/ }; +/******/ +/******/ // 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 = 6); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var stringUtilities_1 = __webpack_require__(1); +var cronParser_1 = __webpack_require__(2); +var ExpressionDescriptor = (function () { + function ExpressionDescriptor(expression, options) { + this.expression = expression; + this.options = options; + this.expressionParts = new Array(5); + if (ExpressionDescriptor.locales[options.locale]) { + this.i18n = ExpressionDescriptor.locales[options.locale]; + } + else { + console.warn("Locale '" + options.locale + "' could not be found; falling back to 'en'."); + this.i18n = ExpressionDescriptor.locales["en"]; + } + if (options.use24HourTimeFormat === undefined) { + options.use24HourTimeFormat = this.i18n.use24HourTimeFormatByDefault(); + } + } + ExpressionDescriptor.toString = function (expression, _a) { + var _b = _a === void 0 ? {} : _a, _c = _b.throwExceptionOnParseError, throwExceptionOnParseError = _c === void 0 ? true : _c, _d = _b.verbose, verbose = _d === void 0 ? false : _d, _e = _b.dayOfWeekStartIndexZero, dayOfWeekStartIndexZero = _e === void 0 ? true : _e, use24HourTimeFormat = _b.use24HourTimeFormat, _f = _b.locale, locale = _f === void 0 ? "en" : _f; + var options = { + throwExceptionOnParseError: throwExceptionOnParseError, + verbose: verbose, + dayOfWeekStartIndexZero: dayOfWeekStartIndexZero, + use24HourTimeFormat: use24HourTimeFormat, + locale: locale + }; + var descripter = new ExpressionDescriptor(expression, options); + return descripter.getFullDescription(); + }; + ExpressionDescriptor.initialize = function (localesLoader) { + ExpressionDescriptor.specialCharacters = ["/", "-", ",", "*"]; + localesLoader.load(ExpressionDescriptor.locales); + }; + ExpressionDescriptor.prototype.getFullDescription = function () { + var description = ""; + try { + var parser = new cronParser_1.CronParser(this.expression, this.options.dayOfWeekStartIndexZero); + this.expressionParts = parser.parse(); + var timeSegment = this.getTimeOfDayDescription(); + var dayOfMonthDesc = this.getDayOfMonthDescription(); + var monthDesc = this.getMonthDescription(); + var dayOfWeekDesc = this.getDayOfWeekDescription(); + var yearDesc = this.getYearDescription(); + description += timeSegment + dayOfMonthDesc + dayOfWeekDesc + monthDesc + yearDesc; + description = this.transformVerbosity(description, this.options.verbose); + description = description.charAt(0).toLocaleUpperCase() + description.substr(1); + } + catch (ex) { + if (!this.options.throwExceptionOnParseError) { + description = this.i18n.anErrorOccuredWhenGeneratingTheExpressionD(); + } + else { + throw "" + ex; + } + } + return description; + }; + ExpressionDescriptor.prototype.getTimeOfDayDescription = function () { + var secondsExpression = this.expressionParts[0]; + var minuteExpression = this.expressionParts[1]; + var hourExpression = this.expressionParts[2]; + var description = ""; + if (!stringUtilities_1.StringUtilities.containsAny(minuteExpression, ExpressionDescriptor.specialCharacters) && + !stringUtilities_1.StringUtilities.containsAny(hourExpression, ExpressionDescriptor.specialCharacters) && + !stringUtilities_1.StringUtilities.containsAny(secondsExpression, ExpressionDescriptor.specialCharacters)) { + description += this.i18n.atSpace() + this.formatTime(hourExpression, minuteExpression, secondsExpression); + } + else if (!secondsExpression && + minuteExpression.indexOf("-") > -1 && + !(minuteExpression.indexOf(",") > -1) && + !(minuteExpression.indexOf("/") > -1) && + !stringUtilities_1.StringUtilities.containsAny(hourExpression, ExpressionDescriptor.specialCharacters)) { + var minuteParts = minuteExpression.split("-"); + description += stringUtilities_1.StringUtilities.format(this.i18n.everyMinuteBetweenX0AndX1(), this.formatTime(hourExpression, minuteParts[0], ""), this.formatTime(hourExpression, minuteParts[1], "")); + } + else if (!secondsExpression && + hourExpression.indexOf(",") > -1 && + hourExpression.indexOf("-") == -1 && + hourExpression.indexOf("/") == -1 && + !stringUtilities_1.StringUtilities.containsAny(minuteExpression, ExpressionDescriptor.specialCharacters)) { + var hourParts = hourExpression.split(","); + description += this.i18n.at(); + for (var i = 0; i < hourParts.length; i++) { + description += " "; + description += this.formatTime(hourParts[i], minuteExpression, ""); + if (i < hourParts.length - 2) { + description += ","; + } + if (i == hourParts.length - 2) { + description += this.i18n.spaceAnd(); + } + } + } + else { + var secondsDescription = this.getSecondsDescription(); + var minutesDescription = this.getMinutesDescription(); + var hoursDescription = this.getHoursDescription(); + description += secondsDescription; + if (description.length > 0 && minutesDescription.length > 0) { + description += ", "; + } + description += minutesDescription; + if (description.length > 0 && hoursDescription.length > 0) { + description += ", "; + } + description += hoursDescription; + } + return description; + }; + ExpressionDescriptor.prototype.getSecondsDescription = function () { + var _this = this; + var description = this.getSegmentDescription(this.expressionParts[0], this.i18n.everySecond(), function (s) { + return s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Seconds(), s); + }, function (s) { + return _this.i18n.secondsX0ThroughX1PastTheMinute(); + }, function (s) { + return s == "0" + ? "" + : parseInt(s) < 20 + ? _this.i18n.atX0SecondsPastTheMinute() + : _this.i18n.atX0SecondsPastTheMinuteGt20() || _this.i18n.atX0SecondsPastTheMinute(); + }); + return description; + }; + ExpressionDescriptor.prototype.getMinutesDescription = function () { + var _this = this; + var secondsExpression = this.expressionParts[0]; + var hourExpression = this.expressionParts[2]; + var description = this.getSegmentDescription(this.expressionParts[1], this.i18n.everyMinute(), function (s) { + return s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Minutes(), s); + }, function (s) { + return _this.i18n.minutesX0ThroughX1PastTheHour(); + }, function (s) { + try { + return s == "0" && hourExpression.indexOf("/") == -1 && secondsExpression == "" + ? _this.i18n.everyHour() + : parseInt(s) < 20 + ? _this.i18n.atX0MinutesPastTheHour() + : _this.i18n.atX0MinutesPastTheHourGt20() || _this.i18n.atX0MinutesPastTheHour(); + } + catch (e) { + return _this.i18n.atX0MinutesPastTheHour(); + } + }); + return description; + }; + ExpressionDescriptor.prototype.getHoursDescription = function () { + var _this = this; + var expression = this.expressionParts[2]; + var description = this.getSegmentDescription(expression, this.i18n.everyHour(), function (s) { + return _this.formatTime(s, "0", ""); + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.everyX0Hours(), s); + }, function (s) { + return _this.i18n.betweenX0AndX1(); + }, function (s) { + return _this.i18n.atX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getDayOfWeekDescription = function () { + var _this = this; + var daysOfWeekNames = this.i18n.daysOfTheWeek(); + var description = null; + if (this.expressionParts[5] == "*") { + description = ""; + } + else { + description = this.getSegmentDescription(this.expressionParts[5], this.i18n.commaEveryDay(), function (s) { + var exp = s; + if (s.indexOf("#") > -1) { + exp = s.substr(0, s.indexOf("#")); + } + else if (s.indexOf("L") > -1) { + exp = exp.replace("L", ""); + } + return daysOfWeekNames[parseInt(exp)]; + }, function (s) { + if (parseInt(s) == 1) { + return ""; + } + else { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0DaysOfTheWeek(), s); + } + }, function (s) { + return _this.i18n.commaX0ThroughX1(); + }, function (s) { + var format = null; + if (s.indexOf("#") > -1) { + var dayOfWeekOfMonthNumber = s.substring(s.indexOf("#") + 1); + var dayOfWeekOfMonthDescription = null; + switch (dayOfWeekOfMonthNumber) { + case "1": + dayOfWeekOfMonthDescription = _this.i18n.first(); + break; + case "2": + dayOfWeekOfMonthDescription = _this.i18n.second(); + break; + case "3": + dayOfWeekOfMonthDescription = _this.i18n.third(); + break; + case "4": + dayOfWeekOfMonthDescription = _this.i18n.fourth(); + break; + case "5": + dayOfWeekOfMonthDescription = _this.i18n.fifth(); + break; + } + format = _this.i18n.commaOnThe() + dayOfWeekOfMonthDescription + _this.i18n.spaceX0OfTheMonth(); + } + else if (s.indexOf("L") > -1) { + format = _this.i18n.commaOnTheLastX0OfTheMonth(); + } + else { + var domSpecified = _this.expressionParts[3] != "*"; + format = domSpecified ? _this.i18n.commaAndOnX0() : _this.i18n.commaOnlyOnX0(); + } + return format; + }); + } + return description; + }; + ExpressionDescriptor.prototype.getMonthDescription = function () { + var _this = this; + var monthNames = this.i18n.monthsOfTheYear(); + var description = this.getSegmentDescription(this.expressionParts[4], "", function (s) { + return monthNames[parseInt(s) - 1]; + }, function (s) { + if (parseInt(s) == 1) { + return ""; + } + else { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0Months(), s); + } + }, function (s) { + return _this.i18n.commaMonthX0ThroughMonthX1() || _this.i18n.commaX0ThroughX1(); + }, function (s) { + return _this.i18n.commaOnlyInMonthX0 ? _this.i18n.commaOnlyInMonthX0() : _this.i18n.commaOnlyInX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getDayOfMonthDescription = function () { + var _this = this; + var description = null; + var expression = this.expressionParts[3]; + switch (expression) { + case "L": + description = this.i18n.commaOnTheLastDayOfTheMonth(); + break; + case "WL": + case "LW": + description = this.i18n.commaOnTheLastWeekdayOfTheMonth(); + break; + default: + var weekDayNumberMatches = expression.match(/(\d{1,2}W)|(W\d{1,2})/); + if (weekDayNumberMatches) { + var dayNumber = parseInt(weekDayNumberMatches[0].replace("W", "")); + var dayString = dayNumber == 1 + ? this.i18n.firstWeekday() + : stringUtilities_1.StringUtilities.format(this.i18n.weekdayNearestDayX0(), dayNumber.toString()); + description = stringUtilities_1.StringUtilities.format(this.i18n.commaOnTheX0OfTheMonth(), dayString); + break; + } + else { + var lastDayOffSetMatches = expression.match(/L-(\d{1,2})/); + if (lastDayOffSetMatches) { + var offSetDays = lastDayOffSetMatches[1]; + description = stringUtilities_1.StringUtilities.format(this.i18n.commaDaysBeforeTheLastDayOfTheMonth(), offSetDays); + break; + } + else if (expression == "*" && this.expressionParts[5] != "*") { + return ""; + } + else { + description = this.getSegmentDescription(expression, this.i18n.commaEveryDay(), function (s) { + return s == "L" ? _this.i18n.lastDay() : ((_this.i18n.dayX0) ? stringUtilities_1.StringUtilities.format(_this.i18n.dayX0(), s) : s); + }, function (s) { + return s == "1" ? _this.i18n.commaEveryDay() : _this.i18n.commaEveryX0Days(); + }, function (s) { + return _this.i18n.commaBetweenDayX0AndX1OfTheMonth(); + }, function (s) { + return _this.i18n.commaOnDayX0OfTheMonth(); + }); + } + break; + } + } + return description; + }; + ExpressionDescriptor.prototype.getYearDescription = function () { + var _this = this; + var description = this.getSegmentDescription(this.expressionParts[6], "", function (s) { + return /^\d+$/.test(s) ? new Date(parseInt(s), 1).getFullYear().toString() : s; + }, function (s) { + return stringUtilities_1.StringUtilities.format(_this.i18n.commaEveryX0Years(), s); + }, function (s) { + return _this.i18n.commaYearX0ThroughYearX1() || _this.i18n.commaX0ThroughX1(); + }, function (s) { + return _this.i18n.commaOnlyInYearX0 ? _this.i18n.commaOnlyInYearX0() : _this.i18n.commaOnlyInX0(); + }); + return description; + }; + ExpressionDescriptor.prototype.getSegmentDescription = function (expression, allDescription, getSingleItemDescription, getIntervalDescriptionFormat, getBetweenDescriptionFormat, getDescriptionFormat) { + var _this = this; + var description = null; + if (!expression) { + description = ""; + } + else if (expression === "*") { + description = allDescription; + } + else if (!stringUtilities_1.StringUtilities.containsAny(expression, ["/", "-", ","])) { + description = stringUtilities_1.StringUtilities.format(getDescriptionFormat(expression), getSingleItemDescription(expression)); + } + else if (expression.indexOf("/") > -1) { + var segments = expression.split("/"); + description = stringUtilities_1.StringUtilities.format(getIntervalDescriptionFormat(segments[1]), segments[1]); + if (segments[0].indexOf("-") > -1) { + var betweenSegmentDescription = this.generateBetweenSegmentDescription(segments[0], getBetweenDescriptionFormat, getSingleItemDescription); + if (betweenSegmentDescription.indexOf(", ") != 0) { + description += ", "; + } + description += betweenSegmentDescription; + } + else if (!stringUtilities_1.StringUtilities.containsAny(segments[0], ["*", ","])) { + var rangeItemDescription = stringUtilities_1.StringUtilities.format(getDescriptionFormat(segments[0]), getSingleItemDescription(segments[0])); + rangeItemDescription = rangeItemDescription.replace(", ", ""); + description += stringUtilities_1.StringUtilities.format(this.i18n.commaStartingX0(), rangeItemDescription); + } + } + else if (expression.indexOf(",") > -1) { + var segments = expression.split(","); + var descriptionContent = ""; + for (var i = 0; i < segments.length; i++) { + if (i > 0 && segments.length > 2) { + descriptionContent += ","; + if (i < segments.length - 1) { + descriptionContent += " "; + } + } + if (i > 0 && segments.length > 1 && (i == segments.length - 1 || segments.length == 2)) { + descriptionContent += this.i18n.spaceAnd() + " "; + } + if (segments[i].indexOf("-") > -1) { + var betweenSegmentDescription = this.generateBetweenSegmentDescription(segments[i], function (s) { + return _this.i18n.commaX0ThroughX1(); + }, getSingleItemDescription); + betweenSegmentDescription = betweenSegmentDescription.replace(", ", ""); + descriptionContent += betweenSegmentDescription; + } + else { + descriptionContent += getSingleItemDescription(segments[i]); + } + } + description = stringUtilities_1.StringUtilities.format(getDescriptionFormat(expression), descriptionContent); + } + else if (expression.indexOf("-") > -1) { + description = this.generateBetweenSegmentDescription(expression, getBetweenDescriptionFormat, getSingleItemDescription); + } + return description; + }; + ExpressionDescriptor.prototype.generateBetweenSegmentDescription = function (betweenExpression, getBetweenDescriptionFormat, getSingleItemDescription) { + var description = ""; + var betweenSegments = betweenExpression.split("-"); + var betweenSegment1Description = getSingleItemDescription(betweenSegments[0]); + var betweenSegment2Description = getSingleItemDescription(betweenSegments[1]); + betweenSegment2Description = betweenSegment2Description.replace(":00", ":59"); + var betweenDescriptionFormat = getBetweenDescriptionFormat(betweenExpression); + description += stringUtilities_1.StringUtilities.format(betweenDescriptionFormat, betweenSegment1Description, betweenSegment2Description); + return description; + }; + ExpressionDescriptor.prototype.formatTime = function (hourExpression, minuteExpression, secondExpression) { + var hour = parseInt(hourExpression); + var period = ""; + var setPeriodBeforeTime = false; + if (!this.options.use24HourTimeFormat) { + setPeriodBeforeTime = this.i18n.setPeriodBeforeTime && this.i18n.setPeriodBeforeTime(); + period = setPeriodBeforeTime ? this.getPeriod(hour) + " " : " " + this.getPeriod(hour); + if (hour > 12) { + hour -= 12; + } + if (hour === 0) { + hour = 12; + } + } + var minute = minuteExpression; + var second = ""; + if (secondExpression) { + second = ":" + ("00" + secondExpression).substring(secondExpression.length); + } + return "" + (setPeriodBeforeTime ? period : "") + ("00" + hour.toString()).substring(hour.toString().length) + ":" + ("00" + minute.toString()).substring(minute.toString().length) + second + (!setPeriodBeforeTime ? period : ""); + }; + ExpressionDescriptor.prototype.transformVerbosity = function (description, useVerboseFormat) { + if (!useVerboseFormat) { + description = description.replace(new RegExp(", " + this.i18n.everyMinute(), "g"), ""); + description = description.replace(new RegExp(", " + this.i18n.everyHour(), "g"), ""); + description = description.replace(new RegExp(this.i18n.commaEveryDay(), "g"), ""); + description = description.replace(/\, ?$/, ""); + } + return description; + }; + ExpressionDescriptor.prototype.getPeriod = function (hour) { + return hour >= 12 ? this.i18n.pm && this.i18n.pm() || "PM" : this.i18n.am && this.i18n.am() || "AM"; + }; + ExpressionDescriptor.locales = {}; + return ExpressionDescriptor; +}()); +exports.ExpressionDescriptor = ExpressionDescriptor; + + +/***/ }), +/* 1 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var StringUtilities = (function () { + function StringUtilities() { + } + StringUtilities.format = function (template) { + var values = []; + for (var _i = 1; _i < arguments.length; _i++) { + values[_i - 1] = arguments[_i]; + } + return template.replace(/%s/g, function () { + return values.shift(); + }); + }; + StringUtilities.containsAny = function (text, searchStrings) { + return searchStrings.some(function (c) { + return text.indexOf(c) > -1; + }); + }; + return StringUtilities; +}()); +exports.StringUtilities = StringUtilities; + + +/***/ }), +/* 2 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var CronParser = (function () { + function CronParser(expression, dayOfWeekStartIndexZero) { + if (dayOfWeekStartIndexZero === void 0) { dayOfWeekStartIndexZero = true; } + this.expression = expression; + this.dayOfWeekStartIndexZero = dayOfWeekStartIndexZero; + } + CronParser.prototype.parse = function () { + var parsed = this.extractParts(this.expression); + this.normalize(parsed); + this.validate(parsed); + return parsed; + }; + CronParser.prototype.extractParts = function (expression) { + if (!this.expression) { + throw new Error("Expression is empty"); + } + var parsed = expression.trim().split(/[ ]+/); + if (parsed.length < 5) { + throw new Error("Expression has only " + parsed.length + " part" + (parsed.length == 1 ? "" : "s") + ". At least 5 parts are required."); + } + else if (parsed.length == 5) { + parsed.unshift(""); + parsed.push(""); + } + else if (parsed.length == 6) { + if (/\d{4}$/.test(parsed[5])) { + parsed.unshift(""); + } + else { + parsed.push(""); + } + } + else if (parsed.length > 7) { + throw new Error("Expression has " + parsed.length + " parts; too many!"); + } + return parsed; + }; + CronParser.prototype.normalize = function (expressionParts) { + var _this = this; + expressionParts[3] = expressionParts[3].replace("?", "*"); + expressionParts[5] = expressionParts[5].replace("?", "*"); + expressionParts[2] = expressionParts[2].replace("?", "*"); + if (expressionParts[0].indexOf("0/") == 0) { + expressionParts[0] = expressionParts[0].replace("0/", "*/"); + } + if (expressionParts[1].indexOf("0/") == 0) { + expressionParts[1] = expressionParts[1].replace("0/", "*/"); + } + if (expressionParts[2].indexOf("0/") == 0) { + expressionParts[2] = expressionParts[2].replace("0/", "*/"); + } + if (expressionParts[3].indexOf("1/") == 0) { + expressionParts[3] = expressionParts[3].replace("1/", "*/"); + } + if (expressionParts[4].indexOf("1/") == 0) { + expressionParts[4] = expressionParts[4].replace("1/", "*/"); + } + if (expressionParts[5].indexOf("1/") == 0) { + expressionParts[5] = expressionParts[5].replace("1/", "*/"); + } + if (expressionParts[6].indexOf("1/") == 0) { + expressionParts[6] = expressionParts[6].replace("1/", "*/"); + } + expressionParts[5] = expressionParts[5].replace(/(^\d)|([^#/\s]\d)/g, function (t) { + var dowDigits = t.replace(/\D/, ""); + var dowDigitsAdjusted = dowDigits; + if (_this.dayOfWeekStartIndexZero) { + if (dowDigits == "7") { + dowDigitsAdjusted = "0"; + } + } + else { + dowDigitsAdjusted = (parseInt(dowDigits) - 1).toString(); + } + return t.replace(dowDigits, dowDigitsAdjusted); + }); + if (expressionParts[5] == "L") { + expressionParts[5] = "6"; + } + if (expressionParts[3] == "?") { + expressionParts[3] = "*"; + } + if (expressionParts[3].indexOf("W") > -1 && + (expressionParts[3].indexOf(",") > -1 || expressionParts[3].indexOf("-") > -1)) { + throw new Error("The 'W' character can be specified only when the day-of-month is a single day, not a range or list of days."); + } + var days = { + SUN: 0, + MON: 1, + TUE: 2, + WED: 3, + THU: 4, + FRI: 5, + SAT: 6 + }; + for (var day in days) { + expressionParts[5] = expressionParts[5].replace(new RegExp(day, "gi"), days[day].toString()); + } + var months = { + JAN: 1, + FEB: 2, + MAR: 3, + APR: 4, + MAY: 5, + JUN: 6, + JUL: 7, + AUG: 8, + SEP: 9, + OCT: 10, + NOV: 11, + DEC: 12 + }; + for (var month in months) { + expressionParts[4] = expressionParts[4].replace(new RegExp(month, "gi"), months[month].toString()); + } + if (expressionParts[0] == "0") { + expressionParts[0] = ""; + } + if (!/\*|\-|\,|\//.test(expressionParts[2]) && + (/\*|\//.test(expressionParts[1]) || /\*|\//.test(expressionParts[0]))) { + expressionParts[2] += "-" + expressionParts[2]; + } + for (var i = 0; i < expressionParts.length; i++) { + if (expressionParts[i] == "*/1") { + expressionParts[i] = "*"; + } + if (expressionParts[i].indexOf("/") > -1 && !/^\*|\-|\,/.test(expressionParts[i])) { + var stepRangeThrough = null; + switch (i) { + case 4: + stepRangeThrough = "12"; + break; + case 5: + stepRangeThrough = "6"; + break; + case 6: + stepRangeThrough = "9999"; + break; + default: + stepRangeThrough = null; + break; + } + if (stepRangeThrough != null) { + var parts = expressionParts[i].split("/"); + expressionParts[i] = parts[0] + "-" + stepRangeThrough + "/" + parts[1]; + } + } + } + }; + CronParser.prototype.validate = function (parsed) { + this.assertNoInvalidCharacters("DOW", parsed[5]); + this.assertNoInvalidCharacters("DOM", parsed[3]); + }; + CronParser.prototype.assertNoInvalidCharacters = function (partDescription, expression) { + var invalidChars = expression.match(/[A-KM-VX-Z]+/gi); + if (invalidChars && invalidChars.length) { + throw new Error(partDescription + " part contains invalid values: '" + invalidChars.toString() + "'"); + } + }; + return CronParser; +}()); +exports.CronParser = CronParser; + + +/***/ }), +/* 3 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var en = (function () { + function en() { + } + en.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + en.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + en.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + en.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + en.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + en.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "An error occured when generating the expression description. Check the cron expression syntax."; + }; + en.prototype.everyMinute = function () { + return "every minute"; + }; + en.prototype.everyHour = function () { + return "every hour"; + }; + en.prototype.atSpace = function () { + return "At "; + }; + en.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Every minute between %s and %s"; + }; + en.prototype.at = function () { + return "At"; + }; + en.prototype.spaceAnd = function () { + return " and"; + }; + en.prototype.everySecond = function () { + return "every second"; + }; + en.prototype.everyX0Seconds = function () { + return "every %s seconds"; + }; + en.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "seconds %s through %s past the minute"; + }; + en.prototype.atX0SecondsPastTheMinute = function () { + return "at %s seconds past the minute"; + }; + en.prototype.everyX0Minutes = function () { + return "every %s minutes"; + }; + en.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutes %s through %s past the hour"; + }; + en.prototype.atX0MinutesPastTheHour = function () { + return "at %s minutes past the hour"; + }; + en.prototype.everyX0Hours = function () { + return "every %s hours"; + }; + en.prototype.betweenX0AndX1 = function () { + return "between %s and %s"; + }; + en.prototype.atX0 = function () { + return "at %s"; + }; + en.prototype.commaEveryDay = function () { + return ", every day"; + }; + en.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", every %s days of the week"; + }; + en.prototype.commaX0ThroughX1 = function () { + return ", %s through %s"; + }; + en.prototype.first = function () { + return "first"; + }; + en.prototype.second = function () { + return "second"; + }; + en.prototype.third = function () { + return "third"; + }; + en.prototype.fourth = function () { + return "fourth"; + }; + en.prototype.fifth = function () { + return "fifth"; + }; + en.prototype.commaOnThe = function () { + return ", on the "; + }; + en.prototype.spaceX0OfTheMonth = function () { + return " %s of the month"; + }; + en.prototype.lastDay = function () { + return "the last day"; + }; + en.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", on the last %s of the month"; + }; + en.prototype.commaOnlyOnX0 = function () { + return ", only on %s"; + }; + en.prototype.commaAndOnX0 = function () { + return ", and on %s"; + }; + en.prototype.commaEveryX0Months = function () { + return ", every %s months"; + }; + en.prototype.commaOnlyInX0 = function () { + return ", only in %s"; + }; + en.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", on the last day of the month"; + }; + en.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", on the last weekday of the month"; + }; + en.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s days before the last day of the month"; + }; + en.prototype.firstWeekday = function () { + return "first weekday"; + }; + en.prototype.weekdayNearestDayX0 = function () { + return "weekday nearest day %s"; + }; + en.prototype.commaOnTheX0OfTheMonth = function () { + return ", on the %s of the month"; + }; + en.prototype.commaEveryX0Days = function () { + return ", every %s days"; + }; + en.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", between day %s and %s of the month"; + }; + en.prototype.commaOnDayX0OfTheMonth = function () { + return ", on day %s of the month"; + }; + en.prototype.commaEveryHour = function () { + return ", every hour"; + }; + en.prototype.commaEveryX0Years = function () { + return ", every %s years"; + }; + en.prototype.commaStartingX0 = function () { + return ", starting %s"; + }; + en.prototype.daysOfTheWeek = function () { + return ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; + }; + en.prototype.monthsOfTheYear = function () { + return [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ]; + }; + return en; +}()); +exports.en = en; + + +/***/ }), +/* 4 */, +/* 5 */, +/* 6 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var expressionDescriptor_1 = __webpack_require__(0); +var allLocalesLoader_1 = __webpack_require__(7); +expressionDescriptor_1.ExpressionDescriptor.initialize(new allLocalesLoader_1.allLocalesLoader()); +exports.default = expressionDescriptor_1.ExpressionDescriptor; +var toString = expressionDescriptor_1.ExpressionDescriptor.toString; +exports.toString = toString; + + +/***/ }), +/* 7 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var allLocales = __webpack_require__(8); +var allLocalesLoader = (function () { + function allLocalesLoader() { + } + allLocalesLoader.prototype.load = function (availableLocales) { + for (var property in allLocales) { + if (allLocales.hasOwnProperty(property)) { + availableLocales[property] = new allLocales[property](); + } + } + }; + return allLocalesLoader; +}()); +exports.allLocalesLoader = allLocalesLoader; + + +/***/ }), +/* 8 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var en_1 = __webpack_require__(3); +exports.en = en_1.en; +var da_1 = __webpack_require__(9); +exports.da = da_1.da; +var de_1 = __webpack_require__(10); +exports.de = de_1.de; +var es_1 = __webpack_require__(11); +exports.es = es_1.es; +var fr_1 = __webpack_require__(12); +exports.fr = fr_1.fr; +var it_1 = __webpack_require__(13); +exports.it = it_1.it; +var ko_1 = __webpack_require__(14); +exports.ko = ko_1.ko; +var nl_1 = __webpack_require__(15); +exports.nl = nl_1.nl; +var nb_1 = __webpack_require__(16); +exports.nb = nb_1.nb; +var sv_1 = __webpack_require__(17); +exports.sv = sv_1.sv; +var pl_1 = __webpack_require__(18); +exports.pl = pl_1.pl; +var pt_BR_1 = __webpack_require__(19); +exports.pt_BR = pt_BR_1.pt_BR; +var ro_1 = __webpack_require__(20); +exports.ro = ro_1.ro; +var ru_1 = __webpack_require__(21); +exports.ru = ru_1.ru; +var tr_1 = __webpack_require__(22); +exports.tr = tr_1.tr; +var uk_1 = __webpack_require__(23); +exports.uk = uk_1.uk; +var zh_CN_1 = __webpack_require__(24); +exports.zh_CN = zh_CN_1.zh_CN; +var zh_TW_1 = __webpack_require__(25); +exports.zh_TW = zh_TW_1.zh_TW; +var ja_1 = __webpack_require__(26); +exports.ja = ja_1.ja; +var he_1 = __webpack_require__(27); +exports.he = he_1.he; +var cs_1 = __webpack_require__(28); +exports.cs = cs_1.cs; +var sk_1 = __webpack_require__(29); +exports.sk = sk_1.sk; +var fi_1 = __webpack_require__(30); +exports.fi = fi_1.fi; +var sl_1 = __webpack_require__(31); +exports.sl = sl_1.sl; +var sw_1 = __webpack_require__(32); +exports.sw = sw_1.sw; +var fa_1 = __webpack_require__(33); +exports.fa = fa_1.fa; + + +/***/ }), +/* 9 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var da = (function () { + function da() { + } + da.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + da.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."; + }; + da.prototype.at = function () { + return "kl"; + }; + da.prototype.atSpace = function () { + return "kl "; + }; + da.prototype.atX0 = function () { + return "kl %s"; + }; + da.prototype.atX0MinutesPastTheHour = function () { + return "%s minutter efter timeskift"; + }; + da.prototype.atX0SecondsPastTheMinute = function () { + return "%s sekunder efter minutskift"; + }; + da.prototype.betweenX0AndX1 = function () { + return "mellem %s og %s"; + }; + da.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellem dag %s og %s i måneden"; + }; + da.prototype.commaEveryDay = function () { + return ", hver dag"; + }; + da.prototype.commaEveryX0Days = function () { + return ", hver %s. dag"; + }; + da.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", hver %s. ugedag"; + }; + da.prototype.commaEveryX0Months = function () { + return ", hver %s. måned"; + }; + da.prototype.commaEveryX0Years = function () { + return ", hvert %s. år"; + }; + da.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s i måneden"; + }; + da.prototype.commaOnlyInX0 = function () { + return ", kun i %s"; + }; + da.prototype.commaOnlyOnX0 = function () { + return ", kun på %s"; + }; + da.prototype.commaAndOnX0 = function () { + return ", og på %s"; + }; + da.prototype.commaOnThe = function () { + return ", på den "; + }; + da.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på den sidste dag i måneden"; + }; + da.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", på den sidste hverdag i måneden"; + }; + da.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dage før den sidste dag i måneden"; + }; + da.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på den sidste %s i måneden"; + }; + da.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s i måneden"; + }; + da.prototype.commaX0ThroughX1 = function () { + return ", %s til og med %s"; + }; + da.prototype.everyHour = function () { + return "hver time"; + }; + da.prototype.everyMinute = function () { + return "hvert minut"; + }; + da.prototype.everyMinuteBetweenX0AndX1 = function () { + return "hvert minut mellem %s og %s"; + }; + da.prototype.everySecond = function () { + return "hvert sekund"; + }; + da.prototype.everyX0Hours = function () { + return "hver %s. time"; + }; + da.prototype.everyX0Minutes = function () { + return "hvert %s. minut"; + }; + da.prototype.everyX0Seconds = function () { + return "hvert %s. sekund"; + }; + da.prototype.fifth = function () { + return "femte"; + }; + da.prototype.first = function () { + return "første"; + }; + da.prototype.firstWeekday = function () { + return "første hverdag"; + }; + da.prototype.fourth = function () { + return "fjerde"; + }; + da.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutterne fra %s til og med %s hver time"; + }; + da.prototype.second = function () { + return "anden"; + }; + da.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunderne fra %s til og med %s hvert minut"; + }; + da.prototype.spaceAnd = function () { + return " og"; + }; + da.prototype.spaceX0OfTheMonth = function () { + return " %s i måneden"; + }; + da.prototype.lastDay = function () { + return "sidste dag"; + }; + da.prototype.third = function () { + return "tredje"; + }; + da.prototype.weekdayNearestDayX0 = function () { + return "hverdag nærmest dag %s"; + }; + da.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + da.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + da.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + da.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + da.prototype.commaStartingX0 = function () { + return ", startende %s"; + }; + da.prototype.daysOfTheWeek = function () { + return ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"]; + }; + da.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "marts", + "april", + "maj", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "december" + ]; + }; + return da; +}()); +exports.da = da; + + +/***/ }), +/* 10 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var de = (function () { + function de() { + } + de.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + de.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + de.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + de.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + de.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + de.prototype.everyMinute = function () { + return "jede Minute"; + }; + de.prototype.everyHour = function () { + return "jede Stunde"; + }; + de.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."; + }; + de.prototype.atSpace = function () { + return "Um "; + }; + de.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Jede Minute zwischen %s und %s"; + }; + de.prototype.at = function () { + return "Um"; + }; + de.prototype.spaceAnd = function () { + return " und"; + }; + de.prototype.everySecond = function () { + return "Jede Sekunde"; + }; + de.prototype.everyX0Seconds = function () { + return "alle %s Sekunden"; + }; + de.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "Sekunden %s bis %s"; + }; + de.prototype.atX0SecondsPastTheMinute = function () { + return "bei Sekunde %s"; + }; + de.prototype.everyX0Minutes = function () { + return "alle %s Minuten"; + }; + de.prototype.minutesX0ThroughX1PastTheHour = function () { + return "Minuten %s bis %s"; + }; + de.prototype.atX0MinutesPastTheHour = function () { + return "bei Minute %s"; + }; + de.prototype.everyX0Hours = function () { + return "alle %s Stunden"; + }; + de.prototype.betweenX0AndX1 = function () { + return "zwischen %s und %s"; + }; + de.prototype.atX0 = function () { + return "um %s"; + }; + de.prototype.commaEveryDay = function () { + return ", jeden Tag"; + }; + de.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", alle %s Tage der Woche"; + }; + de.prototype.commaX0ThroughX1 = function () { + return ", %s bis %s"; + }; + de.prototype.first = function () { + return "ersten"; + }; + de.prototype.second = function () { + return "zweiten"; + }; + de.prototype.third = function () { + return "dritten"; + }; + de.prototype.fourth = function () { + return "vierten"; + }; + de.prototype.fifth = function () { + return "fünften"; + }; + de.prototype.commaOnThe = function () { + return ", am "; + }; + de.prototype.spaceX0OfTheMonth = function () { + return " %s des Monats"; + }; + de.prototype.lastDay = function () { + return "der letzte Tag"; + }; + de.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", am letzten %s des Monats"; + }; + de.prototype.commaOnlyOnX0 = function () { + return ", nur am %s"; + }; + de.prototype.commaAndOnX0 = function () { + return ", und am %s"; + }; + de.prototype.commaEveryX0Months = function () { + return ", alle %s Monate"; + }; + de.prototype.commaOnlyInX0 = function () { + return ", nur im %s"; + }; + de.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", am letzten Tag des Monats"; + }; + de.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", am letzten Werktag des Monats"; + }; + de.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s tage vor dem letzten Tag des Monats"; + }; + de.prototype.firstWeekday = function () { + return "ersten Werktag"; + }; + de.prototype.weekdayNearestDayX0 = function () { + return "Werktag am nächsten zum %s Tag"; + }; + de.prototype.commaOnTheX0OfTheMonth = function () { + return ", am %s des Monats"; + }; + de.prototype.commaEveryX0Days = function () { + return ", alle %s Tage"; + }; + de.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", zwischen Tag %s und %s des Monats"; + }; + de.prototype.commaOnDayX0OfTheMonth = function () { + return ", am %s Tag des Monats"; + }; + de.prototype.commaEveryX0Years = function () { + return ", alle %s Jahre"; + }; + de.prototype.commaStartingX0 = function () { + return ", beginnend %s"; + }; + de.prototype.daysOfTheWeek = function () { + return ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"]; + }; + de.prototype.monthsOfTheYear = function () { + return [ + "Januar", + "Februar", + "März", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ]; + }; + return de; +}()); +exports.de = de; + + +/***/ }), +/* 11 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var es = (function () { + function es() { + } + es.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + es.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + es.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + es.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + es.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + es.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron."; + }; + es.prototype.at = function () { + return "A las"; + }; + es.prototype.atSpace = function () { + return "A las "; + }; + es.prototype.atX0 = function () { + return "a las %s"; + }; + es.prototype.atX0MinutesPastTheHour = function () { + return "a los %s minutos de la hora"; + }; + es.prototype.atX0SecondsPastTheMinute = function () { + return "a los %s segundos del minuto"; + }; + es.prototype.betweenX0AndX1 = function () { + return "entre las %s y las %s"; + }; + es.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", entre los días %s y %s del mes"; + }; + es.prototype.commaEveryDay = function () { + return ", cada día"; + }; + es.prototype.commaEveryX0Days = function () { + return ", cada %s días"; + }; + es.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", cada %s días de la semana"; + }; + es.prototype.commaEveryX0Months = function () { + return ", cada %s meses"; + }; + es.prototype.commaOnDayX0OfTheMonth = function () { + return ", el día %s del mes"; + }; + es.prototype.commaOnlyInX0 = function () { + return ", sólo en %s"; + }; + es.prototype.commaOnlyOnX0 = function () { + return ", sólo el %s"; + }; + es.prototype.commaAndOnX0 = function () { + return ", y el %s"; + }; + es.prototype.commaOnThe = function () { + return ", en el "; + }; + es.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", en el último día del mes"; + }; + es.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", en el último día de la semana del mes"; + }; + es.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s días antes del último día del mes"; + }; + es.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", en el último %s del mes"; + }; + es.prototype.commaOnTheX0OfTheMonth = function () { + return ", en el %s del mes"; + }; + es.prototype.commaX0ThroughX1 = function () { + return ", de %s a %s"; + }; + es.prototype.everyHour = function () { + return "cada hora"; + }; + es.prototype.everyMinute = function () { + return "cada minuto"; + }; + es.prototype.everyMinuteBetweenX0AndX1 = function () { + return "cada minuto entre las %s y las %s"; + }; + es.prototype.everySecond = function () { + return "cada segundo"; + }; + es.prototype.everyX0Hours = function () { + return "cada %s horas"; + }; + es.prototype.everyX0Minutes = function () { + return "cada %s minutos"; + }; + es.prototype.everyX0Seconds = function () { + return "cada %s segundos"; + }; + es.prototype.fifth = function () { + return "quinto"; + }; + es.prototype.first = function () { + return "primero"; + }; + es.prototype.firstWeekday = function () { + return "primer día de la semana"; + }; + es.prototype.fourth = function () { + return "cuarto"; + }; + es.prototype.minutesX0ThroughX1PastTheHour = function () { + return "del minuto %s al %s pasada la hora"; + }; + es.prototype.second = function () { + return "segundo"; + }; + es.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "En los segundos %s al %s de cada minuto"; + }; + es.prototype.spaceAnd = function () { + return " y"; + }; + es.prototype.spaceX0OfTheMonth = function () { + return " %s del mes"; + }; + es.prototype.lastDay = function () { + return "el último día"; + }; + es.prototype.third = function () { + return "tercer"; + }; + es.prototype.weekdayNearestDayX0 = function () { + return "día de la semana más próximo al %s"; + }; + es.prototype.commaEveryX0Years = function () { + return ", cada %s años"; + }; + es.prototype.commaStartingX0 = function () { + return ", comenzando %s"; + }; + es.prototype.daysOfTheWeek = function () { + return ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"]; + }; + es.prototype.monthsOfTheYear = function () { + return [ + "enero", + "febrero", + "marzo", + "abril", + "mayo", + "junio", + "julio", + "agosto", + "septiembre", + "octubre", + "noviembre", + "diciembre" + ]; + }; + return es; +}()); +exports.es = es; + + +/***/ }), +/* 12 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fr = (function () { + function fr() { + } + fr.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fr.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + fr.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fr.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fr.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + fr.prototype.everyMinute = function () { + return "toutes les minutes"; + }; + fr.prototype.everyHour = function () { + return "toutes les heures"; + }; + fr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe."; + }; + fr.prototype.atSpace = function () { + return "À "; + }; + fr.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Toutes les minutes entre %s et %s"; + }; + fr.prototype.at = function () { + return "À"; + }; + fr.prototype.spaceAnd = function () { + return " et"; + }; + fr.prototype.everySecond = function () { + return "toutes les secondes"; + }; + fr.prototype.everyX0Seconds = function () { + return "toutes les %s secondes"; + }; + fr.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "les secondes entre %s et %s après la minute"; + }; + fr.prototype.atX0SecondsPastTheMinute = function () { + return "%s secondes après la minute"; + }; + fr.prototype.everyX0Minutes = function () { + return "toutes les %s minutes"; + }; + fr.prototype.minutesX0ThroughX1PastTheHour = function () { + return "les minutes entre %s et %s après l'heure"; + }; + fr.prototype.atX0MinutesPastTheHour = function () { + return "%s minutes après l'heure"; + }; + fr.prototype.everyX0Hours = function () { + return "toutes les %s heures"; + }; + fr.prototype.betweenX0AndX1 = function () { + return "de %s à %s"; + }; + fr.prototype.atX0 = function () { + return "à %s"; + }; + fr.prototype.commaEveryDay = function () { + return ", tous les jours"; + }; + fr.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", every %s days of the week"; + }; + fr.prototype.commaX0ThroughX1 = function () { + return ", de %s à %s"; + }; + fr.prototype.first = function () { + return "premier"; + }; + fr.prototype.second = function () { + return "second"; + }; + fr.prototype.third = function () { + return "troisième"; + }; + fr.prototype.fourth = function () { + return "quatrième"; + }; + fr.prototype.fifth = function () { + return "cinquième"; + }; + fr.prototype.commaOnThe = function () { + return ", le "; + }; + fr.prototype.spaceX0OfTheMonth = function () { + return " %s du mois"; + }; + fr.prototype.lastDay = function () { + return "le dernier jour"; + }; + fr.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", le dernier %s du mois"; + }; + fr.prototype.commaOnlyOnX0 = function () { + return ", uniquement le %s"; + }; + fr.prototype.commaAndOnX0 = function () { + return ", et %s"; + }; + fr.prototype.commaEveryX0Months = function () { + return ", tous les %s mois"; + }; + fr.prototype.commaOnlyInX0 = function () { + return ", uniquement en %s"; + }; + fr.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", le dernier jour du mois"; + }; + fr.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", le dernier jour ouvrable du mois"; + }; + fr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s jours avant le dernier jour du mois"; + }; + fr.prototype.firstWeekday = function () { + return "premier jour ouvrable"; + }; + fr.prototype.weekdayNearestDayX0 = function () { + return "jour ouvrable le plus proche du %s"; + }; + fr.prototype.commaOnTheX0OfTheMonth = function () { + return ", le %s du mois"; + }; + fr.prototype.commaEveryX0Days = function () { + return ", tous les %s jours"; + }; + fr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", du %s au %s du mois"; + }; + fr.prototype.commaOnDayX0OfTheMonth = function () { + return ", le %s du mois"; + }; + fr.prototype.commaEveryX0Years = function () { + return ", tous les %s ans"; + }; + fr.prototype.commaDaysX0ThroughX1 = function () { + return ", du %s au %s"; + }; + fr.prototype.commaStartingX0 = function () { + return ", départ %s"; + }; + fr.prototype.daysOfTheWeek = function () { + return ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]; + }; + fr.prototype.monthsOfTheYear = function () { + return [ + "janvier", + "février", + "mars", + "avril", + "mai", + "juin", + "juillet", + "août", + "septembre", + "octobre", + "novembre", + "décembre" + ]; + }; + return fr; +}()); +exports.fr = fr; + + +/***/ }), +/* 13 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var it = (function () { + function it() { + } + it.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + it.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + it.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + it.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + it.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + it.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron."; + }; + it.prototype.at = function () { + return "Alle"; + }; + it.prototype.atSpace = function () { + return "Alle "; + }; + it.prototype.atX0 = function () { + return "alle %s"; + }; + it.prototype.atX0MinutesPastTheHour = function () { + return "al %s minuto passata l'ora"; + }; + it.prototype.atX0SecondsPastTheMinute = function () { + return "al %s secondo passato il minuto"; + }; + it.prototype.betweenX0AndX1 = function () { + return "tra le %s e le %s"; + }; + it.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", tra il giorno %s e %s del mese"; + }; + it.prototype.commaEveryDay = function () { + return ", ogni giorno"; + }; + it.prototype.commaEveryX0Days = function () { + return ", ogni %s giorni"; + }; + it.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", ogni %s giorni della settimana"; + }; + it.prototype.commaEveryX0Months = function () { + return ", ogni %s mesi"; + }; + it.prototype.commaEveryX0Years = function () { + return ", ogni %s anni"; + }; + it.prototype.commaOnDayX0OfTheMonth = function () { + return ", il giorno %s del mese"; + }; + it.prototype.commaOnlyInX0 = function () { + return ", solo in %s"; + }; + it.prototype.commaOnlyOnX0 = function () { + return ", solo il %s"; + }; + it.prototype.commaAndOnX0 = function () { + return ", e il %s"; + }; + it.prototype.commaOnThe = function () { + return ", il "; + }; + it.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", l'ultimo giorno del mese"; + }; + it.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", nell'ultima settimana del mese"; + }; + it.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s giorni prima dell'ultimo giorno del mese"; + }; + it.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", l'ultimo %s del mese"; + }; + it.prototype.commaOnTheX0OfTheMonth = function () { + return ", il %s del mese"; + }; + it.prototype.commaX0ThroughX1 = function () { + return ", %s al %s"; + }; + it.prototype.everyHour = function () { + return "ogni ora"; + }; + it.prototype.everyMinute = function () { + return "ogni minuto"; + }; + it.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Ogni minuto tra le %s e le %s"; + }; + it.prototype.everySecond = function () { + return "ogni secondo"; + }; + it.prototype.everyX0Hours = function () { + return "ogni %s ore"; + }; + it.prototype.everyX0Minutes = function () { + return "ogni %s minuti"; + }; + it.prototype.everyX0Seconds = function () { + return "ogni %s secondi"; + }; + it.prototype.fifth = function () { + return "quinto"; + }; + it.prototype.first = function () { + return "primo"; + }; + it.prototype.firstWeekday = function () { + return "primo giorno della settimana"; + }; + it.prototype.fourth = function () { + return "quarto"; + }; + it.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuti %s al %s dopo l'ora"; + }; + it.prototype.second = function () { + return "secondo"; + }; + it.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "secondi %s al %s oltre il minuto"; + }; + it.prototype.spaceAnd = function () { + return " e"; + }; + it.prototype.spaceX0OfTheMonth = function () { + return " %s del mese"; + }; + it.prototype.lastDay = function () { + return "l'ultimo giorno"; + }; + it.prototype.third = function () { + return "terzo"; + }; + it.prototype.weekdayNearestDayX0 = function () { + return "giorno della settimana più vicino al %s"; + }; + it.prototype.commaStartingX0 = function () { + return ", a partire %s"; + }; + it.prototype.daysOfTheWeek = function () { + return ["domenica", "lunedì", "martedì", "mercoledì", "giovedì", "venerdì", "sabato"]; + }; + it.prototype.monthsOfTheYear = function () { + return [ + "gennaio", + "febbraio", + "marzo", + "aprile", + "maggio", + "giugno", + "luglio", + "agosto", + "settembre", + "ottobre", + "novembre", + "dicembre" + ]; + }; + return it; +}()); +exports.it = it; + + +/***/ }), +/* 14 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ko = (function () { + function ko() { + } + ko.prototype.setPeriodBeforeTime = function () { + return true; + }; + ko.prototype.pm = function () { + return "오후"; + }; + ko.prototype.am = function () { + return "오전"; + }; + ko.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ko.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ko.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ko.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ko.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + ko.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "표현식 설명을 생성하는 중 오류가 발생했습니다. cron 표현식 구문을 확인하십시오."; + }; + ko.prototype.everyMinute = function () { + return "1분마다"; + }; + ko.prototype.everyHour = function () { + return "1시간마다"; + }; + ko.prototype.atSpace = function () { + return "에서 "; + }; + ko.prototype.everyMinuteBetweenX0AndX1 = function () { + return "%s 및 %s 사이에 매 분"; + }; + ko.prototype.at = function () { + return "에서"; + }; + ko.prototype.spaceAnd = function () { + return " 및"; + }; + ko.prototype.everySecond = function () { + return "1초마다"; + }; + ko.prototype.everyX0Seconds = function () { + return "%s초마다"; + }; + ko.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "정분 후 %s초에서 %s초까지"; + }; + ko.prototype.atX0SecondsPastTheMinute = function () { + return "정분 후 %s초에서"; + }; + ko.prototype.everyX0Minutes = function () { + return "%s분마다"; + }; + ko.prototype.minutesX0ThroughX1PastTheHour = function () { + return "정시 후 %s분에서 %s까지"; + }; + ko.prototype.atX0MinutesPastTheHour = function () { + return "정시 후 %s분에서"; + }; + ko.prototype.everyX0Hours = function () { + return "%s시간마다"; + }; + ko.prototype.betweenX0AndX1 = function () { + return "%s에서 %s 사이"; + }; + ko.prototype.atX0 = function () { + return "%s에서"; + }; + ko.prototype.commaEveryDay = function () { + return ", 매일"; + }; + ko.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 주 중 %s일마다"; + }; + ko.prototype.commaX0ThroughX1 = function () { + return ", %s에서 %s가지"; + }; + ko.prototype.first = function () { + return "첫 번째"; + }; + ko.prototype.second = function () { + return "두 번째"; + }; + ko.prototype.third = function () { + return "세 번째"; + }; + ko.prototype.fourth = function () { + return "네 번째"; + }; + ko.prototype.fifth = function () { + return "다섯 번째"; + }; + ko.prototype.commaOnThe = function () { + return ", 해당 "; + }; + ko.prototype.spaceX0OfTheMonth = function () { + return " 해당 월의 %s"; + }; + ko.prototype.lastDay = function () { + return "마지막 날"; + }; + ko.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 해당 월의 마지막 %s"; + }; + ko.prototype.commaOnlyOnX0 = function () { + return ", %s에만"; + }; + ko.prototype.commaAndOnX0 = function () { + return ", 및 %s에"; + }; + ko.prototype.commaEveryX0Months = function () { + return ", %s개월마다"; + }; + ko.prototype.commaOnlyInX0 = function () { + return ", %s에서만"; + }; + ko.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 해당 월의 마지막 날에"; + }; + ko.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 해당 월의 마지막 평일에"; + }; + ko.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", 해당 월의 마지막 날 %s일 전"; + }; + ko.prototype.firstWeekday = function () { + return "첫 번째 평일"; + }; + ko.prototype.weekdayNearestDayX0 = function () { + return "평일 가장 가까운 날 %s"; + }; + ko.prototype.commaOnTheX0OfTheMonth = function () { + return ", 해당 월의 %s에"; + }; + ko.prototype.commaEveryX0Days = function () { + return ", %s일마다"; + }; + ko.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 해당 월의 %s일 및 %s일 사이"; + }; + ko.prototype.commaOnDayX0OfTheMonth = function () { + return ", 해당 월의 %s일에"; + }; + ko.prototype.commaEveryMinute = function () { + return ", 1분마다"; + }; + ko.prototype.commaEveryHour = function () { + return ", 1시간마다"; + }; + ko.prototype.commaEveryX0Years = function () { + return ", %s년마다"; + }; + ko.prototype.commaStartingX0 = function () { + return ", %s부터"; + }; + ko.prototype.daysOfTheWeek = function () { + return ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"]; + }; + ko.prototype.monthsOfTheYear = function () { + return [ + "1월", + "2월", + "3월", + "4월", + "5월", + "6월", + "7월", + "8월", + "9월", + "10월", + "11월", + "12월" + ]; + }; + return ko; +}()); +exports.ko = ko; + + +/***/ }), +/* 15 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var nl = (function () { + function nl() { + } + nl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + nl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + nl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + nl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + nl.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + nl.prototype.everyMinute = function () { + return "elke minuut"; + }; + nl.prototype.everyHour = function () { + return "elk uur"; + }; + nl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Er is een fout opgetreden bij het vertalen van de gegevens. Controleer de gegevens."; + }; + nl.prototype.atSpace = function () { + return "Op "; + }; + nl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Elke minuut tussen %s en %s"; + }; + nl.prototype.at = function () { + return "Op"; + }; + nl.prototype.spaceAnd = function () { + return " en"; + }; + nl.prototype.everySecond = function () { + return "elke seconde"; + }; + nl.prototype.everyX0Seconds = function () { + return "elke %s seconden"; + }; + nl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "seconden %s t/m %s na de minuut"; + }; + nl.prototype.atX0SecondsPastTheMinute = function () { + return "op %s seconden na de minuut"; + }; + nl.prototype.everyX0Minutes = function () { + return "elke %s minuten"; + }; + nl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuut %s t/m %s na het uur"; + }; + nl.prototype.atX0MinutesPastTheHour = function () { + return "op %s minuten na het uur"; + }; + nl.prototype.everyX0Hours = function () { + return "elke %s uur"; + }; + nl.prototype.betweenX0AndX1 = function () { + return "tussen %s en %s"; + }; + nl.prototype.atX0 = function () { + return "op %s"; + }; + nl.prototype.commaEveryDay = function () { + return ", elke dag"; + }; + nl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", elke %s dagen van de week"; + }; + nl.prototype.commaX0ThroughX1 = function () { + return ", %s t/m %s"; + }; + nl.prototype.first = function () { + return "eerste"; + }; + nl.prototype.second = function () { + return "tweede"; + }; + nl.prototype.third = function () { + return "derde"; + }; + nl.prototype.fourth = function () { + return "vierde"; + }; + nl.prototype.fifth = function () { + return "vijfde"; + }; + nl.prototype.commaOnThe = function () { + return ", op de "; + }; + nl.prototype.spaceX0OfTheMonth = function () { + return " %s van de maand"; + }; + nl.prototype.lastDay = function () { + return "de laatste dag"; + }; + nl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", op de laatste %s van de maand"; + }; + nl.prototype.commaOnlyOnX0 = function () { + return ", alleen op %s"; + }; + nl.prototype.commaAndOnX0 = function () { + return ", en op %s"; + }; + nl.prototype.commaEveryX0Months = function () { + return ", elke %s maanden"; + }; + nl.prototype.commaOnlyInX0 = function () { + return ", alleen in %s"; + }; + nl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", op de laatste dag van de maand"; + }; + nl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", op de laatste werkdag van de maand"; + }; + nl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dagen vóór de laatste dag van de maand"; + }; + nl.prototype.firstWeekday = function () { + return "eerste werkdag"; + }; + nl.prototype.weekdayNearestDayX0 = function () { + return "werkdag dichtst bij dag %s"; + }; + nl.prototype.commaOnTheX0OfTheMonth = function () { + return ", op de %s van de maand"; + }; + nl.prototype.commaEveryX0Days = function () { + return ", elke %s dagen"; + }; + nl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", tussen dag %s en %s van de maand"; + }; + nl.prototype.commaOnDayX0OfTheMonth = function () { + return ", op dag %s van de maand"; + }; + nl.prototype.commaEveryX0Years = function () { + return ", elke %s jaren"; + }; + nl.prototype.commaStartingX0 = function () { + return ", beginnend %s"; + }; + nl.prototype.daysOfTheWeek = function () { + return ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"]; + }; + nl.prototype.monthsOfTheYear = function () { + return [ + "januari", + "februari", + "maart", + "april", + "mei", + "juni", + "juli", + "augustus", + "september", + "oktober", + "november", + "december" + ]; + }; + return nl; +}()); +exports.nl = nl; + + +/***/ }), +/* 16 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var nb = (function () { + function nb() { + } + nb.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + nb.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + nb.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + nb.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + nb.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + nb.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."; + }; + nb.prototype.at = function () { + return "Kl."; + }; + nb.prototype.atSpace = function () { + return "Kl."; + }; + nb.prototype.atX0 = function () { + return "på %s"; + }; + nb.prototype.atX0MinutesPastTheHour = function () { + return "på %s minutter etter timen"; + }; + nb.prototype.atX0SecondsPastTheMinute = function () { + return "på %s sekunder etter minuttet"; + }; + nb.prototype.betweenX0AndX1 = function () { + return "mellom %s og %s"; + }; + nb.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellom dag %s og %s av måneden"; + }; + nb.prototype.commaEveryDay = function () { + return ", hver dag"; + }; + nb.prototype.commaEveryX0Days = function () { + return ", hver %s dag"; + }; + nb.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", hver %s ukedag"; + }; + nb.prototype.commaEveryX0Months = function () { + return ", hver %s måned"; + }; + nb.prototype.commaEveryX0Years = function () { + return ", hvert %s år"; + }; + nb.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s av måneden"; + }; + nb.prototype.commaOnlyInX0 = function () { + return ", bare i %s"; + }; + nb.prototype.commaOnlyOnX0 = function () { + return ", på %s"; + }; + nb.prototype.commaAndOnX0 = function () { + return ", og på %s"; + }; + nb.prototype.commaOnThe = function () { + return ", på "; + }; + nb.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på den siste dagen i måneden"; + }; + nb.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", den siste ukedagen i måneden"; + }; + nb.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dager før den siste dagen i måneden"; + }; + nb.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på den siste %s av måneden"; + }; + nb.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s av måneden"; + }; + nb.prototype.commaX0ThroughX1 = function () { + return ", %s til og med %s"; + }; + nb.prototype.everyHour = function () { + return "hver time"; + }; + nb.prototype.everyMinute = function () { + return "hvert minutt"; + }; + nb.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Hvert minutt mellom %s og %s"; + }; + nb.prototype.everySecond = function () { + return "hvert sekund"; + }; + nb.prototype.everyX0Hours = function () { + return "hver %s time"; + }; + nb.prototype.everyX0Minutes = function () { + return "hvert %s minutt"; + }; + nb.prototype.everyX0Seconds = function () { + return "hvert %s sekund"; + }; + nb.prototype.fifth = function () { + return "femte"; + }; + nb.prototype.first = function () { + return "første"; + }; + nb.prototype.firstWeekday = function () { + return "første ukedag"; + }; + nb.prototype.fourth = function () { + return "fjerde"; + }; + nb.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuttene fra %s til og med %s etter timen"; + }; + nb.prototype.second = function () { + return "sekund"; + }; + nb.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundene fra %s til og med %s etter minuttet"; + }; + nb.prototype.spaceAnd = function () { + return " og"; + }; + nb.prototype.spaceX0OfTheMonth = function () { + return " %s i måneden"; + }; + nb.prototype.lastDay = function () { + return "den siste dagen"; + }; + nb.prototype.third = function () { + return "tredje"; + }; + nb.prototype.weekdayNearestDayX0 = function () { + return "ukedag nærmest dag %s"; + }; + nb.prototype.commaStartingX0 = function () { + return ", starter %s"; + }; + nb.prototype.daysOfTheWeek = function () { + return ["søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag"]; + }; + nb.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ]; + }; + return nb; +}()); +exports.nb = nb; + + +/***/ }), +/* 17 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sv = (function () { + function sv() { + } + sv.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sv.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sv.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sv.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sv.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sv.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ett fel inträffade vid generering av uttryckets beskrivning. Kontrollera cron-uttryckets syntax."; + }; + sv.prototype.everyMinute = function () { + return "varje minut"; + }; + sv.prototype.everyHour = function () { + return "varje timme"; + }; + sv.prototype.atSpace = function () { + return "Kl "; + }; + sv.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Varje minut mellan %s och %s"; + }; + sv.prototype.at = function () { + return "Kl"; + }; + sv.prototype.spaceAnd = function () { + return " och"; + }; + sv.prototype.everySecond = function () { + return "varje sekund"; + }; + sv.prototype.everyX0Seconds = function () { + return "varje %s sekund"; + }; + sv.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunderna från %s till och med %s efter minuten"; + }; + sv.prototype.atX0SecondsPastTheMinute = function () { + return "på %s sekunder efter minuten"; + }; + sv.prototype.everyX0Minutes = function () { + return "var %s minut"; + }; + sv.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuterna från %s till och med %s efter timmen"; + }; + sv.prototype.atX0MinutesPastTheHour = function () { + return "på %s minuten efter timmen"; + }; + sv.prototype.everyX0Hours = function () { + return "var %s timme"; + }; + sv.prototype.betweenX0AndX1 = function () { + return "mellan %s och %s"; + }; + sv.prototype.atX0 = function () { + return "kl %s"; + }; + sv.prototype.commaEveryDay = function () { + return ", varje dag"; + }; + sv.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", var %s dag i veckan"; + }; + sv.prototype.commaX0ThroughX1 = function () { + return ", %s till %s"; + }; + sv.prototype.first = function () { + return "första"; + }; + sv.prototype.second = function () { + return "andra"; + }; + sv.prototype.third = function () { + return "tredje"; + }; + sv.prototype.fourth = function () { + return "fjärde"; + }; + sv.prototype.fifth = function () { + return "femte"; + }; + sv.prototype.commaOnThe = function () { + return ", den "; + }; + sv.prototype.spaceX0OfTheMonth = function () { + return " %sen av månaden"; + }; + sv.prototype.lastDay = function () { + return "den sista dagen"; + }; + sv.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", på sista %s av månaden"; + }; + sv.prototype.commaOnlyOnX0 = function () { + return ", varje %s"; + }; + sv.prototype.commaAndOnX0 = function () { + return ", och på %s"; + }; + sv.prototype.commaEveryX0Months = function () { + return ", var %s månad"; + }; + sv.prototype.commaOnlyInX0 = function () { + return ", bara på %s"; + }; + sv.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", på sista dagen av månaden"; + }; + sv.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", på sista veckodag av månaden"; + }; + sv.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dagar före den sista dagen i månaden"; + }; + sv.prototype.firstWeekday = function () { + return "första veckodag"; + }; + sv.prototype.weekdayNearestDayX0 = function () { + return "veckodagen närmast dag %s"; + }; + sv.prototype.commaOnTheX0OfTheMonth = function () { + return ", på den %s av månaden"; + }; + sv.prototype.commaEveryX0Days = function () { + return ", var %s dag"; + }; + sv.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mellan dag %s och %s av månaden"; + }; + sv.prototype.commaOnDayX0OfTheMonth = function () { + return ", på dag %s av månaden"; + }; + sv.prototype.commaEveryX0Years = function () { + return ", var %s år"; + }; + sv.prototype.commaStartingX0 = function () { + return ", startar %s"; + }; + sv.prototype.daysOfTheWeek = function () { + return ["söndag", "måndag", "tisdag", "onsdag", "torsdag", "fredag", "lördag"]; + }; + sv.prototype.monthsOfTheYear = function () { + return [ + "januari", + "februari", + "mars", + "april", + "maj", + "juni", + "juli", + "augusti", + "september", + "oktober", + "november", + "december" + ]; + }; + return sv; +}()); +exports.sv = sv; + + +/***/ }), +/* 18 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var pl = (function () { + function pl() { + } + pl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + pl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + pl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + pl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + pl.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + pl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Wystąpił błąd podczas generowania opisu wyrażenia cron. Sprawdź składnię wyrażenia cron."; + }; + pl.prototype.at = function () { + return "O"; + }; + pl.prototype.atSpace = function () { + return "O "; + }; + pl.prototype.atX0 = function () { + return "o %s"; + }; + pl.prototype.atX0MinutesPastTheHour = function () { + return "w %s minucie"; + }; + pl.prototype.atX0SecondsPastTheMinute = function () { + return "w %s sekundzie"; + }; + pl.prototype.betweenX0AndX1 = function () { + return "od %s do %s"; + }; + pl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", od %s-ego do %s-ego dnia miesiąca"; + }; + pl.prototype.commaEveryDay = function () { + return ", co dzień"; + }; + pl.prototype.commaEveryX0Days = function () { + return ", co %s dni"; + }; + pl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", co %s dni tygodnia"; + }; + pl.prototype.commaEveryX0Months = function () { + return ", co %s miesięcy"; + }; + pl.prototype.commaEveryX0Years = function () { + return ", co %s lat"; + }; + pl.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s-ego dnia miesiąca"; + }; + pl.prototype.commaOnlyInX0 = function () { + return ", tylko %s"; + }; + pl.prototype.commaOnlyOnX0 = function () { + return ", tylko %s"; + }; + pl.prototype.commaAndOnX0 = function () { + return ", i %s"; + }; + pl.prototype.commaOnThe = function () { + return ", "; + }; + pl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ostatni dzień miesiąca"; + }; + pl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ostatni dzień roboczy miesiąca"; + }; + pl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dni przed ostatnim dniem miesiąca"; + }; + pl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", ostatni %s miesiąca"; + }; + pl.prototype.commaOnTheX0OfTheMonth = function () { + return ", %s miesiąca"; + }; + pl.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + pl.prototype.everyHour = function () { + return "co godzinę"; + }; + pl.prototype.everyMinute = function () { + return "co minutę"; + }; + pl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Co minutę od %s do %s"; + }; + pl.prototype.everySecond = function () { + return "co sekundę"; + }; + pl.prototype.everyX0Hours = function () { + return "co %s godzin"; + }; + pl.prototype.everyX0Minutes = function () { + return "co %s minut"; + }; + pl.prototype.everyX0Seconds = function () { + return "co %s sekund"; + }; + pl.prototype.fifth = function () { + return "piąty"; + }; + pl.prototype.first = function () { + return "pierwszy"; + }; + pl.prototype.firstWeekday = function () { + return "pierwszy dzień roboczy"; + }; + pl.prototype.fourth = function () { + return "czwarty"; + }; + pl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuty od %s do %s"; + }; + pl.prototype.second = function () { + return "drugi"; + }; + pl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + pl.prototype.spaceAnd = function () { + return " i"; + }; + pl.prototype.spaceX0OfTheMonth = function () { + return " %s miesiąca"; + }; + pl.prototype.lastDay = function () { + return "ostatni dzień"; + }; + pl.prototype.third = function () { + return "trzeci"; + }; + pl.prototype.weekdayNearestDayX0 = function () { + return "dzień roboczy najbliższy %s-ego dnia"; + }; + pl.prototype.commaStartingX0 = function () { + return ", startowy %s"; + }; + pl.prototype.daysOfTheWeek = function () { + return ["niedziela", "poniedziałek", "wtorek", "środa", "czwartek", "piątek", "sobota"]; + }; + pl.prototype.monthsOfTheYear = function () { + return [ + "styczeń", + "luty", + "marzec", + "kwiecień", + "maj", + "czerwiec", + "lipiec", + "sierpień", + "wrzesień", + "październik", + "listopad", + "grudzień" + ]; + }; + return pl; +}()); +exports.pl = pl; + + +/***/ }), +/* 19 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var pt_BR = (function () { + function pt_BR() { + } + pt_BR.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + pt_BR.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + pt_BR.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + pt_BR.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + pt_BR.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + pt_BR.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Ocorreu um erro ao gerar a descrição da expressão Cron."; + }; + pt_BR.prototype.at = function () { + return "às"; + }; + pt_BR.prototype.atSpace = function () { + return "às "; + }; + pt_BR.prototype.atX0 = function () { + return "Às %s"; + }; + pt_BR.prototype.atX0MinutesPastTheHour = function () { + return "aos %s minutos da hora"; + }; + pt_BR.prototype.atX0SecondsPastTheMinute = function () { + return "aos %s segundos do minuto"; + }; + pt_BR.prototype.betweenX0AndX1 = function () { + return "entre %s e %s"; + }; + pt_BR.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", entre os dias %s e %s do mês"; + }; + pt_BR.prototype.commaEveryDay = function () { + return ", a cada dia"; + }; + pt_BR.prototype.commaEveryX0Days = function () { + return ", a cada %s dias"; + }; + pt_BR.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", a cada %s dias de semana"; + }; + pt_BR.prototype.commaEveryX0Months = function () { + return ", a cada %s meses"; + }; + pt_BR.prototype.commaOnDayX0OfTheMonth = function () { + return ", no dia %s do mês"; + }; + pt_BR.prototype.commaOnlyInX0 = function () { + return ", somente em %s"; + }; + pt_BR.prototype.commaOnlyOnX0 = function () { + return ", somente de %s"; + }; + pt_BR.prototype.commaAndOnX0 = function () { + return ", e de %s"; + }; + pt_BR.prototype.commaOnThe = function () { + return ", na "; + }; + pt_BR.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", no último dia do mês"; + }; + pt_BR.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", no último dia da semana do mês"; + }; + pt_BR.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dias antes do último dia do mês"; + }; + pt_BR.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", na última %s do mês"; + }; + pt_BR.prototype.commaOnTheX0OfTheMonth = function () { + return ", no %s do mês"; + }; + pt_BR.prototype.commaX0ThroughX1 = function () { + return ", de %s a %s"; + }; + pt_BR.prototype.everyHour = function () { + return "a cada hora"; + }; + pt_BR.prototype.everyMinute = function () { + return "a cada minuto"; + }; + pt_BR.prototype.everyMinuteBetweenX0AndX1 = function () { + return "a cada minuto entre %s e %s"; + }; + pt_BR.prototype.everySecond = function () { + return "a cada segundo"; + }; + pt_BR.prototype.everyX0Hours = function () { + return "a cada %s horas"; + }; + pt_BR.prototype.everyX0Minutes = function () { + return "a cada %s minutos"; + }; + pt_BR.prototype.everyX0Seconds = function () { + return "a cada %s segundos"; + }; + pt_BR.prototype.fifth = function () { + return "quinta"; + }; + pt_BR.prototype.first = function () { + return "primeira"; + }; + pt_BR.prototype.firstWeekday = function () { + return "primeiro dia da semana"; + }; + pt_BR.prototype.fourth = function () { + return "quarta"; + }; + pt_BR.prototype.minutesX0ThroughX1PastTheHour = function () { + return "do minuto %s até %s de cada hora"; + }; + pt_BR.prototype.second = function () { + return "segunda"; + }; + pt_BR.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "No segundo %s até %s de cada minuto"; + }; + pt_BR.prototype.spaceAnd = function () { + return " e"; + }; + pt_BR.prototype.spaceX0OfTheMonth = function () { + return " %s do mês"; + }; + pt_BR.prototype.lastDay = function () { + return "o último dia"; + }; + pt_BR.prototype.third = function () { + return "terceira"; + }; + pt_BR.prototype.weekdayNearestDayX0 = function () { + return "dia da semana mais próximo do dia %s"; + }; + pt_BR.prototype.commaEveryX0Years = function () { + return ", a cada %s anos"; + }; + pt_BR.prototype.commaStartingX0 = function () { + return ", iniciando %s"; + }; + pt_BR.prototype.daysOfTheWeek = function () { + return ["domingo", "segunda-feira", "terça-feira", "quarta-feira", "quinta-feira", "sexta-feira", "sábado"]; + }; + pt_BR.prototype.monthsOfTheYear = function () { + return [ + "janeiro", + "fevereiro", + "março", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ]; + }; + return pt_BR; +}()); +exports.pt_BR = pt_BR; + + +/***/ }), +/* 20 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ro = (function () { + function ro() { + } + ro.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + ro.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Eroare la generarea descrierii. Verificați sintaxa."; + }; + ro.prototype.at = function () { + return "La"; + }; + ro.prototype.atSpace = function () { + return "La "; + }; + ro.prototype.atX0 = function () { + return "la %s"; + }; + ro.prototype.atX0MinutesPastTheHour = function () { + return "la și %s minute"; + }; + ro.prototype.atX0SecondsPastTheMinute = function () { + return "la și %s secunde"; + }; + ro.prototype.betweenX0AndX1 = function () { + return "între %s și %s"; + }; + ro.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", între zilele %s și %s ale lunii"; + }; + ro.prototype.commaEveryDay = function () { + return ", în fiecare zi"; + }; + ro.prototype.commaEveryX0Days = function () { + return ", la fiecare %s zile"; + }; + ro.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", la fiecare a %s-a zi a săptămânii"; + }; + ro.prototype.commaEveryX0Months = function () { + return ", la fiecare %s luni"; + }; + ro.prototype.commaEveryX0Years = function () { + return ", o dată la %s ani"; + }; + ro.prototype.commaOnDayX0OfTheMonth = function () { + return ", în ziua %s a lunii"; + }; + ro.prototype.commaOnlyInX0 = function () { + return ", doar în %s"; + }; + ro.prototype.commaOnlyOnX0 = function () { + return ", doar %s"; + }; + ro.prototype.commaAndOnX0 = function () { + return ", și %s"; + }; + ro.prototype.commaOnThe = function () { + return ", în "; + }; + ro.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", în ultima zi a lunii"; + }; + ro.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", în ultima zi lucrătoare a lunii"; + }; + ro.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s zile înainte de ultima zi a lunii"; + }; + ro.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", în ultima %s a lunii"; + }; + ro.prototype.commaOnTheX0OfTheMonth = function () { + return ", în %s a lunii"; + }; + ro.prototype.commaX0ThroughX1 = function () { + return ", de %s până %s"; + }; + ro.prototype.everyHour = function () { + return "în fiecare oră"; + }; + ro.prototype.everyMinute = function () { + return "în fiecare minut"; + }; + ro.prototype.everyMinuteBetweenX0AndX1 = function () { + return "În fiecare minut între %s și %s"; + }; + ro.prototype.everySecond = function () { + return "în fiecare secundă"; + }; + ro.prototype.everyX0Hours = function () { + return "la fiecare %s ore"; + }; + ro.prototype.everyX0Minutes = function () { + return "la fiecare %s minute"; + }; + ro.prototype.everyX0Seconds = function () { + return "la fiecare %s secunde"; + }; + ro.prototype.fifth = function () { + return "a cincea"; + }; + ro.prototype.first = function () { + return "prima"; + }; + ro.prototype.firstWeekday = function () { + return "prima zi a săptămânii"; + }; + ro.prototype.fourth = function () { + return "a patra"; + }; + ro.prototype.minutesX0ThroughX1PastTheHour = function () { + return "între minutele %s și %s"; + }; + ro.prototype.second = function () { + return "a doua"; + }; + ro.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "între secunda %s și secunda %s"; + }; + ro.prototype.spaceAnd = function () { + return " și"; + }; + ro.prototype.spaceX0OfTheMonth = function () { + return " %s a lunii"; + }; + ro.prototype.lastDay = function () { + return "ultima zi"; + }; + ro.prototype.third = function () { + return "a treia"; + }; + ro.prototype.weekdayNearestDayX0 = function () { + return "cea mai apropiată zi a săptămânii de ziua %s"; + }; + ro.prototype.commaMonthX0ThroughMonthX1 = function () { + return ", din %s până în %s"; + }; + ro.prototype.commaYearX0ThroughYearX1 = function () { + return ", din %s până în %s"; + }; + ro.prototype.atX0MinutesPastTheHourGt20 = function () { + return "la și %s de minute"; + }; + ro.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return "la și %s de secunde"; + }; + ro.prototype.commaStartingX0 = function () { + return ", pornire %s"; + }; + ro.prototype.daysOfTheWeek = function () { + return ["duminică", "luni", "marți", "miercuri", "joi", "vineri", "sâmbătă"]; + }; + ro.prototype.monthsOfTheYear = function () { + return [ + "ianuarie", + "februarie", + "martie", + "aprilie", + "mai", + "iunie", + "iulie", + "august", + "septembrie", + "octombrie", + "noiembrie", + "decembrie" + ]; + }; + return ro; +}()); +exports.ro = ro; + + +/***/ }), +/* 21 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ru = (function () { + function ru() { + } + ru.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ru.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ru.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ru.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ru.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + ru.prototype.everyMinute = function () { + return "каждую минуту"; + }; + ru.prototype.everyHour = function () { + return "каждый час"; + }; + ru.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Произошла ошибка во время генерации описания выражения. Проверьте синтаксис крон-выражения."; + }; + ru.prototype.atSpace = function () { + return "В "; + }; + ru.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Каждую минуту с %s по %s"; + }; + ru.prototype.at = function () { + return "В"; + }; + ru.prototype.spaceAnd = function () { + return " и"; + }; + ru.prototype.everySecond = function () { + return "каждую секунду"; + }; + ru.prototype.everyX0Seconds = function () { + return "каждые %s секунд"; + }; + ru.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "секунды с %s по %s"; + }; + ru.prototype.atX0SecondsPastTheMinute = function () { + return "в %s секунд"; + }; + ru.prototype.everyX0Minutes = function () { + return "каждые %s минут"; + }; + ru.prototype.minutesX0ThroughX1PastTheHour = function () { + return "минуты с %s по %s"; + }; + ru.prototype.atX0MinutesPastTheHour = function () { + return "в %s минут"; + }; + ru.prototype.everyX0Hours = function () { + return "каждые %s часов"; + }; + ru.prototype.betweenX0AndX1 = function () { + return "с %s по %s"; + }; + ru.prototype.atX0 = function () { + return "в %s"; + }; + ru.prototype.commaEveryDay = function () { + return ", каждый день"; + }; + ru.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", каждые %s дней недели"; + }; + ru.prototype.commaX0ThroughX1 = function () { + return ", %s по %s"; + }; + ru.prototype.first = function () { + return "первый"; + }; + ru.prototype.second = function () { + return "второй"; + }; + ru.prototype.third = function () { + return "третий"; + }; + ru.prototype.fourth = function () { + return "четвертый"; + }; + ru.prototype.fifth = function () { + return "пятый"; + }; + ru.prototype.commaOnThe = function () { + return ", в "; + }; + ru.prototype.spaceX0OfTheMonth = function () { + return " %s месяца"; + }; + ru.prototype.lastDay = function () { + return "последний день"; + }; + ru.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", в последний %s месяца"; + }; + ru.prototype.commaOnlyOnX0 = function () { + return ", только в %s"; + }; + ru.prototype.commaAndOnX0 = function () { + return ", и в %s"; + }; + ru.prototype.commaEveryX0Months = function () { + return ", каждые %s месяцев"; + }; + ru.prototype.commaOnlyInX0 = function () { + return ", только в %s"; + }; + ru.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", в последний день месяца"; + }; + ru.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", в последний будний день месяца"; + }; + ru.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s дней до последнего дня месяца"; + }; + ru.prototype.firstWeekday = function () { + return "первый будний день"; + }; + ru.prototype.weekdayNearestDayX0 = function () { + return "ближайший будний день к %s"; + }; + ru.prototype.commaOnTheX0OfTheMonth = function () { + return ", в %s месяца"; + }; + ru.prototype.commaEveryX0Days = function () { + return ", каждые %s дней"; + }; + ru.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", с %s по %s число месяца"; + }; + ru.prototype.commaOnDayX0OfTheMonth = function () { + return ", в %s число месяца"; + }; + ru.prototype.commaEveryX0Years = function () { + return ", каждые %s лет"; + }; + ru.prototype.commaStartingX0 = function () { + return ", начало %s"; + }; + ru.prototype.daysOfTheWeek = function () { + return ["воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота"]; + }; + ru.prototype.monthsOfTheYear = function () { + return [ + "январь", + "февраль", + "март", + "апрель", + "май", + "июнь", + "июль", + "август", + "сентябрь", + "октябрь", + "ноябрь", + "декабрь" + ]; + }; + return ru; +}()); +exports.ru = ru; + + +/***/ }), +/* 22 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var tr = (function () { + function tr() { + } + tr.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + tr.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + tr.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + tr.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + tr.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + tr.prototype.everyMinute = function () { + return "her dakika"; + }; + tr.prototype.everyHour = function () { + return "her saat"; + }; + tr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "İfade açıklamasını oluştururken bir hata oluştu. Cron ifadesini gözden geçirin."; + }; + tr.prototype.atSpace = function () { + return "Saat "; + }; + tr.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Saat %s ve %s arasındaki her dakika"; + }; + tr.prototype.at = function () { + return "Saat"; + }; + tr.prototype.spaceAnd = function () { + return " ve"; + }; + tr.prototype.everySecond = function () { + return "her saniye"; + }; + tr.prototype.everyX0Seconds = function () { + return "her %s saniyede bir"; + }; + tr.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "dakikaların %s. ve %s. saniyeleri arası"; + }; + tr.prototype.atX0SecondsPastTheMinute = function () { + return "dakikaların %s. saniyesinde"; + }; + tr.prototype.everyX0Minutes = function () { + return "her %s dakikada bir"; + }; + tr.prototype.minutesX0ThroughX1PastTheHour = function () { + return "saatlerin %s. ve %s. dakikaları arası"; + }; + tr.prototype.atX0MinutesPastTheHour = function () { + return "saatlerin %s. dakikasında"; + }; + tr.prototype.everyX0Hours = function () { + return "her %s saatte"; + }; + tr.prototype.betweenX0AndX1 = function () { + return "%s ile %s arasında"; + }; + tr.prototype.atX0 = function () { + return "saat %s"; + }; + tr.prototype.commaEveryDay = function () { + return ", her gün"; + }; + tr.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", ayın her %s günü"; + }; + tr.prototype.commaX0ThroughX1 = function () { + return ", %s ile %s arasında"; + }; + tr.prototype.first = function () { + return "ilk"; + }; + tr.prototype.second = function () { + return "ikinci"; + }; + tr.prototype.third = function () { + return "üçüncü"; + }; + tr.prototype.fourth = function () { + return "dördüncü"; + }; + tr.prototype.fifth = function () { + return "beşinci"; + }; + tr.prototype.commaOnThe = function () { + return ", ayın "; + }; + tr.prototype.spaceX0OfTheMonth = function () { + return " %s günü"; + }; + tr.prototype.lastDay = function () { + return "son gün"; + }; + tr.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", ayın son %s günü"; + }; + tr.prototype.commaOnlyOnX0 = function () { + return ", sadece %s günü"; + }; + tr.prototype.commaAndOnX0 = function () { + return ", ve %s"; + }; + tr.prototype.commaEveryX0Months = function () { + return ", %s ayda bir"; + }; + tr.prototype.commaOnlyInX0 = function () { + return ", sadece %s için"; + }; + tr.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ayın son günü"; + }; + tr.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ayın son iş günü"; + }; + tr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s ayın son gününden önceki günler"; + }; + tr.prototype.firstWeekday = function () { + return "ilk iş günü"; + }; + tr.prototype.weekdayNearestDayX0 = function () { + return "%s. günü sonrasındaki ilk iş günü"; + }; + tr.prototype.commaOnTheX0OfTheMonth = function () { + return ", ayın %s"; + }; + tr.prototype.commaEveryX0Days = function () { + return ", %s günde bir"; + }; + tr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", ayın %s. ve %s. günleri arası"; + }; + tr.prototype.commaOnDayX0OfTheMonth = function () { + return ", ayın %s. günü"; + }; + tr.prototype.commaEveryX0Years = function () { + return ", %s yılda bir"; + }; + tr.prototype.commaStartingX0 = function () { + return ", başlangıç %s"; + }; + tr.prototype.daysOfTheWeek = function () { + return ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"]; + }; + tr.prototype.monthsOfTheYear = function () { + return [ + "Ocak", + "Şubat", + "Mart", + "Nisan", + "Mayıs", + "Haziran", + "Temmuz", + "Ağustos", + "Eylül", + "Ekim", + "Kasım", + "Aralık" + ]; + }; + return tr; +}()); +exports.tr = tr; + + +/***/ }), +/* 23 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var uk = (function () { + function uk() { + } + uk.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + uk.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + uk.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + uk.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + uk.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + uk.prototype.everyMinute = function () { + return "щохвилини"; + }; + uk.prototype.everyHour = function () { + return "щогодини"; + }; + uk.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "ВІдбулася помилка підчас генерації опису. Перевірта правильність написання cron виразу."; + }; + uk.prototype.atSpace = function () { + return "О "; + }; + uk.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Щохвилини між %s та %s"; + }; + uk.prototype.at = function () { + return "О"; + }; + uk.prototype.spaceAnd = function () { + return " та"; + }; + uk.prototype.everySecond = function () { + return "Щосекунди"; + }; + uk.prototype.everyX0Seconds = function () { + return "кожні %s секунд"; + }; + uk.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "з %s по %s секунду"; + }; + uk.prototype.atX0SecondsPastTheMinute = function () { + return "о %s секунді"; + }; + uk.prototype.everyX0Minutes = function () { + return "кожні %s хвилин"; + }; + uk.prototype.minutesX0ThroughX1PastTheHour = function () { + return "з %s по %s хвилину"; + }; + uk.prototype.atX0MinutesPastTheHour = function () { + return "о %s хвилині"; + }; + uk.prototype.everyX0Hours = function () { + return "кожні %s годин"; + }; + uk.prototype.betweenX0AndX1 = function () { + return "між %s та %s"; + }; + uk.prototype.atX0 = function () { + return "о %s"; + }; + uk.prototype.commaEveryDay = function () { + return ", щоденно"; + }; + uk.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", кожен %s день тижня"; + }; + uk.prototype.commaX0ThroughX1 = function () { + return ", %s по %s"; + }; + uk.prototype.first = function () { + return "перший"; + }; + uk.prototype.second = function () { + return "другий"; + }; + uk.prototype.third = function () { + return "третій"; + }; + uk.prototype.fourth = function () { + return "четвертий"; + }; + uk.prototype.fifth = function () { + return "п'ятий"; + }; + uk.prototype.commaOnThe = function () { + return ", в "; + }; + uk.prototype.spaceX0OfTheMonth = function () { + return " %s місяця"; + }; + uk.prototype.lastDay = function () { + return "останній день"; + }; + uk.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", в останній %s місяця"; + }; + uk.prototype.commaOnlyOnX0 = function () { + return ", тільки в %s"; + }; + uk.prototype.commaAndOnX0 = function () { + return ", і в %s"; + }; + uk.prototype.commaEveryX0Months = function () { + return ", кожен %s місяць"; + }; + uk.prototype.commaOnlyInX0 = function () { + return ", тільки в %s"; + }; + uk.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", в останній день місяця"; + }; + uk.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", в останній будень місяця"; + }; + uk.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s днів до останнього дня місяця"; + }; + uk.prototype.firstWeekday = function () { + return "перший будень"; + }; + uk.prototype.weekdayNearestDayX0 = function () { + return "будень найближчий до %s дня"; + }; + uk.prototype.commaOnTheX0OfTheMonth = function () { + return ", в %s місяця"; + }; + uk.prototype.commaEveryX0Days = function () { + return ", кожен %s день"; + }; + uk.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", між %s та %s днями місяця"; + }; + uk.prototype.commaOnDayX0OfTheMonth = function () { + return ", на %s день місяця"; + }; + uk.prototype.commaEveryX0Years = function () { + return ", кожні %s роки"; + }; + uk.prototype.commaStartingX0 = function () { + return ", початок %s"; + }; + uk.prototype.daysOfTheWeek = function () { + return ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"]; + }; + uk.prototype.monthsOfTheYear = function () { + return [ + "січень", + "лютий", + "березень", + "квітень", + "травень", + "червень", + "липень", + "серпень", + "вересень", + "жовтень", + "листопад", + "грудень" + ]; + }; + return uk; +}()); +exports.uk = uk; + + +/***/ }), +/* 24 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var zh_CN = (function () { + function zh_CN() { + } + zh_CN.prototype.setPeriodBeforeTime = function () { + return true; + }; + zh_CN.prototype.pm = function () { + return "下午"; + }; + zh_CN.prototype.am = function () { + return "上午"; + }; + zh_CN.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + zh_CN.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + zh_CN.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + zh_CN.prototype.commaYearX0ThroughYearX1 = function () { + return ", 从%s年至%s年"; + }; + zh_CN.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + zh_CN.prototype.everyMinute = function () { + return "每分钟"; + }; + zh_CN.prototype.everyHour = function () { + return "每小时"; + }; + zh_CN.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "生成表达式描述时发生了错误,请检查cron表达式语法。"; + }; + zh_CN.prototype.atSpace = function () { + return "在"; + }; + zh_CN.prototype.everyMinuteBetweenX0AndX1 = function () { + return "在 %s 至 %s 之间的每分钟"; + }; + zh_CN.prototype.at = function () { + return "在"; + }; + zh_CN.prototype.spaceAnd = function () { + return " 和"; + }; + zh_CN.prototype.everySecond = function () { + return "每秒"; + }; + zh_CN.prototype.everyX0Seconds = function () { + return "每隔 %s 秒"; + }; + zh_CN.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "在每分钟的第 %s 到 %s 秒"; + }; + zh_CN.prototype.atX0SecondsPastTheMinute = function () { + return "在每分钟的第 %s 秒"; + }; + zh_CN.prototype.everyX0Minutes = function () { + return "每隔 %s 分钟"; + }; + zh_CN.prototype.minutesX0ThroughX1PastTheHour = function () { + return "在每小时的第 %s 到 %s 分钟"; + }; + zh_CN.prototype.atX0MinutesPastTheHour = function () { + return "在每小时的第 %s 分钟"; + }; + zh_CN.prototype.everyX0Hours = function () { + return "每隔 %s 小时"; + }; + zh_CN.prototype.betweenX0AndX1 = function () { + return "在 %s 和 %s 之间"; + }; + zh_CN.prototype.atX0 = function () { + return "在%s"; + }; + zh_CN.prototype.commaEveryDay = function () { + return ", 每天"; + }; + zh_CN.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 每周的每 %s 天"; + }; + zh_CN.prototype.commaX0ThroughX1 = function () { + return ", %s至%s"; + }; + zh_CN.prototype.first = function () { + return "第一个"; + }; + zh_CN.prototype.second = function () { + return "第二个"; + }; + zh_CN.prototype.third = function () { + return "第三个"; + }; + zh_CN.prototype.fourth = function () { + return "第四个"; + }; + zh_CN.prototype.fifth = function () { + return "第五个"; + }; + zh_CN.prototype.commaOnThe = function () { + return ", 限每月的"; + }; + zh_CN.prototype.spaceX0OfTheMonth = function () { + return "%s"; + }; + zh_CN.prototype.lastDay = function () { + return "本月最后一天"; + }; + zh_CN.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 限每月的最后一个%s"; + }; + zh_CN.prototype.commaOnlyOnX0 = function () { + return ", 仅%s"; + }; + zh_CN.prototype.commaAndOnX0 = function () { + return ", 并且为%s"; + }; + zh_CN.prototype.commaEveryX0Months = function () { + return ", 每隔 %s 个月"; + }; + zh_CN.prototype.commaOnlyInX0 = function () { + return ", 仅限%s"; + }; + zh_CN.prototype.commaOnlyInMonthX0 = function () { + return ", 仅于%s份"; + }; + zh_CN.prototype.commaOnlyInYearX0 = function () { + return ", 仅于 %s 年"; + }; + zh_CN.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 限每月的最后一天"; + }; + zh_CN.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 限每月的最后一个工作日"; + }; + zh_CN.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", 限每月最后%s天"; + }; + zh_CN.prototype.firstWeekday = function () { + return "第一个工作日"; + }; + zh_CN.prototype.weekdayNearestDayX0 = function () { + return "最接近 %s 号的工作日"; + }; + zh_CN.prototype.commaOnTheX0OfTheMonth = function () { + return ", 限每月的%s"; + }; + zh_CN.prototype.commaEveryX0Days = function () { + return ", 每隔 %s 天"; + }; + zh_CN.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 限每月的 %s 至 %s 之间"; + }; + zh_CN.prototype.commaOnDayX0OfTheMonth = function () { + return ", 限每月%s"; + }; + zh_CN.prototype.commaEveryX0Years = function () { + return ", 每隔 %s 年"; + }; + zh_CN.prototype.commaStartingX0 = function () { + return ", %s开始"; + }; + zh_CN.prototype.dayX0 = function () { + return " %s 号"; + }; + zh_CN.prototype.daysOfTheWeek = function () { + return ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; + }; + zh_CN.prototype.monthsOfTheYear = function () { + return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]; + }; + return zh_CN; +}()); +exports.zh_CN = zh_CN; + + +/***/ }), +/* 25 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var zh_TW = (function () { + function zh_TW() { + } + zh_TW.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + zh_TW.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + zh_TW.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + zh_TW.prototype.commaYearX0ThroughYearX1 = function () { + return ", 从%s年至%s年"; + }; + zh_TW.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + zh_TW.prototype.everyMinute = function () { + return "每分鐘"; + }; + zh_TW.prototype.everyHour = function () { + return "每小時"; + }; + zh_TW.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "產生正規表達式描述時發生了錯誤,請檢查 cron 表達式語法。"; + }; + zh_TW.prototype.atSpace = function () { + return "在 "; + }; + zh_TW.prototype.everyMinuteBetweenX0AndX1 = function () { + return "在 %s 和 %s 之間的每分鐘"; + }; + zh_TW.prototype.at = function () { + return "在"; + }; + zh_TW.prototype.spaceAnd = function () { + return " 和"; + }; + zh_TW.prototype.everySecond = function () { + return "每秒"; + }; + zh_TW.prototype.everyX0Seconds = function () { + return "每 %s 秒"; + }; + zh_TW.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "在每分鐘的 %s 到 %s 秒"; + }; + zh_TW.prototype.atX0SecondsPastTheMinute = function () { + return "在每分鐘的 %s 秒"; + }; + zh_TW.prototype.everyX0Minutes = function () { + return "每 %s 分鐘"; + }; + zh_TW.prototype.minutesX0ThroughX1PastTheHour = function () { + return "在每小時的 %s 到 %s 分鐘"; + }; + zh_TW.prototype.atX0MinutesPastTheHour = function () { + return "在每小時的 %s 分"; + }; + zh_TW.prototype.everyX0Hours = function () { + return "每 %s 小時"; + }; + zh_TW.prototype.betweenX0AndX1 = function () { + return "在 %s 和 %s 之間"; + }; + zh_TW.prototype.atX0 = function () { + return "在 %s"; + }; + zh_TW.prototype.commaEveryDay = function () { + return ", 每天"; + }; + zh_TW.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", 每週的每 %s 天"; + }; + zh_TW.prototype.commaX0ThroughX1 = function () { + return ", %s 到 %s"; + }; + zh_TW.prototype.first = function () { + return "第一個"; + }; + zh_TW.prototype.second = function () { + return "第二個"; + }; + zh_TW.prototype.third = function () { + return "第三個"; + }; + zh_TW.prototype.fourth = function () { + return "第四個"; + }; + zh_TW.prototype.fifth = function () { + return "第五個"; + }; + zh_TW.prototype.commaOnThe = function () { + return ", 在每月 "; + }; + zh_TW.prototype.spaceX0OfTheMonth = function () { + return "%s "; + }; + zh_TW.prototype.lastDay = function () { + return "最後一天"; + }; + zh_TW.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", 每月的最後一個 %s "; + }; + zh_TW.prototype.commaOnlyOnX0 = function () { + return ", 僅在 %s"; + }; + zh_TW.prototype.commaAndOnX0 = function () { + return ", 和 %s"; + }; + zh_TW.prototype.commaEveryX0Months = function () { + return ", 每 %s 月"; + }; + zh_TW.prototype.commaOnlyInX0 = function () { + return ", 僅在 %s"; + }; + zh_TW.prototype.commaOnlyInMonthX0 = function () { + return ", 僅在%s"; + }; + zh_TW.prototype.commaOnlyInYearX0 = function () { + return ", 僅在 %s 年"; + }; + zh_TW.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", 每月的最後一天"; + }; + zh_TW.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", 每月的最後一個工作日"; + }; + zh_TW.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s 這個月的最後一天的前幾天"; + }; + zh_TW.prototype.firstWeekday = function () { + return "第一個工作日"; + }; + zh_TW.prototype.weekdayNearestDayX0 = function () { + return "最接近 %s 號的工作日"; + }; + zh_TW.prototype.commaOnTheX0OfTheMonth = function () { + return ", 每月的 %s "; + }; + zh_TW.prototype.commaEveryX0Days = function () { + return ", 每 %s 天"; + }; + zh_TW.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", 在每月的 %s 和 %s 之間"; + }; + zh_TW.prototype.commaOnDayX0OfTheMonth = function () { + return ", 每月的 %s"; + }; + zh_TW.prototype.commaEveryX0Years = function () { + return ", 每 %s 年"; + }; + zh_TW.prototype.commaStartingX0 = function () { + return ", %s 開始"; + }; + zh_TW.prototype.dayX0 = function () { + return " %s 號"; + }; + zh_TW.prototype.daysOfTheWeek = function () { + return ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; + }; + zh_TW.prototype.monthsOfTheYear = function () { + return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"]; + }; + return zh_TW; +}()); +exports.zh_TW = zh_TW; + + +/***/ }), +/* 26 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var ja = (function () { + function ja() { + } + ja.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + ja.prototype.everyMinute = function () { + return "毎分"; + }; + ja.prototype.everyHour = function () { + return "毎時"; + }; + ja.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "式の記述を生成する際にエラーが発生しました。Cron 式の構文を確認してください。"; + }; + ja.prototype.atSpace = function () { + return "次において実施"; + }; + ja.prototype.everyMinuteBetweenX0AndX1 = function () { + return "%s から %s まで毎分"; + }; + ja.prototype.at = function () { + return "次において実施"; + }; + ja.prototype.spaceAnd = function () { + return "と"; + }; + ja.prototype.everySecond = function () { + return "毎秒"; + }; + ja.prototype.everyX0Seconds = function () { + return "%s 秒ごと"; + }; + ja.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "毎分 %s 秒から %s 秒まで"; + }; + ja.prototype.atX0SecondsPastTheMinute = function () { + return "毎分 %s 秒過ぎ"; + }; + ja.prototype.everyX0Minutes = function () { + return "%s 分ごと"; + }; + ja.prototype.minutesX0ThroughX1PastTheHour = function () { + return "毎時 %s 分から %s 分まで"; + }; + ja.prototype.atX0MinutesPastTheHour = function () { + return "毎時 %s 分過ぎ"; + }; + ja.prototype.everyX0Hours = function () { + return "%s 時間ごと"; + }; + ja.prototype.betweenX0AndX1 = function () { + return "%s と %s の間"; + }; + ja.prototype.atX0 = function () { + return "次において実施 %s"; + }; + ja.prototype.commaEveryDay = function () { + return "、毎日"; + }; + ja.prototype.commaEveryX0DaysOfTheWeek = function () { + return "、週のうち %s 日ごと"; + }; + ja.prototype.commaX0ThroughX1 = function () { + return "、%s から %s まで"; + }; + ja.prototype.first = function () { + return "1 番目"; + }; + ja.prototype.second = function () { + return "2 番目"; + }; + ja.prototype.third = function () { + return "3 番目"; + }; + ja.prototype.fourth = function () { + return "4 番目"; + }; + ja.prototype.fifth = function () { + return "5 番目"; + }; + ja.prototype.commaOnThe = function () { + return "次に"; + }; + ja.prototype.spaceX0OfTheMonth = function () { + return "月のうち %s"; + }; + ja.prototype.commaOnTheLastX0OfTheMonth = function () { + return "月の最後の %s に"; + }; + ja.prototype.commaOnlyOnX0 = function () { + return "%s にのみ"; + }; + ja.prototype.commaEveryX0Months = function () { + return "、%s か月ごと"; + }; + ja.prototype.commaOnlyInX0 = function () { + return "%s でのみ"; + }; + ja.prototype.commaOnTheLastDayOfTheMonth = function () { + return "次の最終日に"; + }; + ja.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return "月の最後の平日に"; + }; + ja.prototype.firstWeekday = function () { + return "最初の平日"; + }; + ja.prototype.weekdayNearestDayX0 = function () { + return "%s 日の直近の平日"; + }; + ja.prototype.commaOnTheX0OfTheMonth = function () { + return "月の %s に"; + }; + ja.prototype.commaEveryX0Days = function () { + return "、%s 日ごと"; + }; + ja.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return "、月の %s 日から %s 日の間"; + }; + ja.prototype.commaOnDayX0OfTheMonth = function () { + return "、月の %s 日目"; + }; + ja.prototype.spaceAndSpace = function () { + return "と"; + }; + ja.prototype.commaEveryMinute = function () { + return "、毎分"; + }; + ja.prototype.commaEveryHour = function () { + return "、毎時"; + }; + ja.prototype.commaEveryX0Years = function () { + return "、%s 年ごと"; + }; + ja.prototype.commaStartingX0 = function () { + return "、%s に開始"; + }; + ja.prototype.aMPeriod = function () { + return "AM"; + }; + ja.prototype.pMPeriod = function () { + return "PM"; + }; + ja.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return "月の最終日の %s 日前"; + }; + ja.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + ja.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + ja.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + ja.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + ja.prototype.lastDay = function () { + return "最終日"; + }; + ja.prototype.commaAndOnX0 = function () { + return "、〜と %s"; + }; + ja.prototype.daysOfTheWeek = function () { + return ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"]; + }; + ja.prototype.monthsOfTheYear = function () { + return ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"]; + }; + return ja; +}()); +exports.ja = ja; + + +/***/ }), +/* 27 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var he = (function () { + function he() { + } + he.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + he.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + he.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + he.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + he.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + he.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "אירעה שגיאה בעת יצירת תיאור הביטוי. בדוק את תחביר הביטוי cron."; + }; + he.prototype.everyMinute = function () { + return "כל דקה"; + }; + he.prototype.everyHour = function () { + return "כל שעה"; + }; + he.prototype.atSpace = function () { + return "ב "; + }; + he.prototype.everyMinuteBetweenX0AndX1 = function () { + return "כל דקה %s עד %s"; + }; + he.prototype.at = function () { + return "ב"; + }; + he.prototype.spaceAnd = function () { + return " ו"; + }; + he.prototype.everySecond = function () { + return "כל שניה"; + }; + he.prototype.everyX0Seconds = function () { + return "כל %s שניות"; + }; + he.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "%s עד %s שניות של הדקה"; + }; + he.prototype.atX0SecondsPastTheMinute = function () { + return "ב %s שניות של הדקה"; + }; + he.prototype.everyX0Minutes = function () { + return "כל %s דקות"; + }; + he.prototype.minutesX0ThroughX1PastTheHour = function () { + return "%s עד %s דקות של השעה"; + }; + he.prototype.atX0MinutesPastTheHour = function () { + return "ב %s דקות של השעה"; + }; + he.prototype.everyX0Hours = function () { + return "כל %s שעות"; + }; + he.prototype.betweenX0AndX1 = function () { + return "%s עד %s"; + }; + he.prototype.atX0 = function () { + return "ב %s"; + }; + he.prototype.commaEveryDay = function () { + return ", כל יום"; + }; + he.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", כל %s ימים בשבוע"; + }; + he.prototype.commaX0ThroughX1 = function () { + return ", %s עד %s"; + }; + he.prototype.first = function () { + return "ראשון"; + }; + he.prototype.second = function () { + return "שני"; + }; + he.prototype.third = function () { + return "שלישי"; + }; + he.prototype.fourth = function () { + return "רביעי"; + }; + he.prototype.fifth = function () { + return "חמישי"; + }; + he.prototype.commaOnThe = function () { + return ", ב "; + }; + he.prototype.spaceX0OfTheMonth = function () { + return " %s של החודש"; + }; + he.prototype.lastDay = function () { + return "היום האחרון"; + }; + he.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", רק ב %s של החודש"; + }; + he.prototype.commaOnlyOnX0 = function () { + return ", רק ב %s"; + }; + he.prototype.commaAndOnX0 = function () { + return ", וב %s"; + }; + he.prototype.commaEveryX0Months = function () { + return ", כל %s חודשים"; + }; + he.prototype.commaOnlyInX0 = function () { + return ", רק ב %s"; + }; + he.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", ביום האחרון של החודש"; + }; + he.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", ביום החול האחרון של החודש"; + }; + he.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s ימים לפני היום האחרון בחודש"; + }; + he.prototype.firstWeekday = function () { + return "יום החול הראשון"; + }; + he.prototype.weekdayNearestDayX0 = function () { + return "יום החול הראשון הקרוב אל %s"; + }; + he.prototype.commaOnTheX0OfTheMonth = function () { + return ", ביום ה%s של החודש"; + }; + he.prototype.commaEveryX0Days = function () { + return ", כל %s ימים"; + }; + he.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", בין היום ה%s וה%s של החודש"; + }; + he.prototype.commaOnDayX0OfTheMonth = function () { + return ", ביום ה%s של החודש"; + }; + he.prototype.commaEveryX0Years = function () { + return ", כל %s שנים"; + }; + he.prototype.commaStartingX0 = function () { + return ", החל מ %s"; + }; + he.prototype.daysOfTheWeek = function () { + return ["יום ראשון", "יום שני", "יום שלישי", "יום רביעי", "יום חמישי", "יום שישי", "יום שבת"]; + }; + he.prototype.monthsOfTheYear = function () { + return [ + "ינואר", + "פברואר", + "מרץ", + "אפריל", + "מאי", + "יוני", + "יולי", + "אוגוסט", + "ספטמבר", + "אוקטובר", + "נובמבר", + "דצמבר" + ]; + }; + return he; +}()); +exports.he = he; + + +/***/ }), +/* 28 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var cs = (function () { + function cs() { + } + cs.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + cs.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + cs.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + cs.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + cs.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + cs.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu."; + }; + cs.prototype.everyMinute = function () { + return "každou minutu"; + }; + cs.prototype.everyHour = function () { + return "každou hodinu"; + }; + cs.prototype.atSpace = function () { + return "V "; + }; + cs.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Každou minutu mezi %s a %s"; + }; + cs.prototype.at = function () { + return "V"; + }; + cs.prototype.spaceAnd = function () { + return " a"; + }; + cs.prototype.everySecond = function () { + return "každou sekundu"; + }; + cs.prototype.everyX0Seconds = function () { + return "každých %s sekund"; + }; + cs.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + cs.prototype.atX0SecondsPastTheMinute = function () { + return "v %s sekund"; + }; + cs.prototype.everyX0Minutes = function () { + return "každých %s minut"; + }; + cs.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minuty od %s do %s"; + }; + cs.prototype.atX0MinutesPastTheHour = function () { + return "v %s minut"; + }; + cs.prototype.everyX0Hours = function () { + return "každých %s hodin"; + }; + cs.prototype.betweenX0AndX1 = function () { + return "mezi %s a %s"; + }; + cs.prototype.atX0 = function () { + return "v %s"; + }; + cs.prototype.commaEveryDay = function () { + return ", každý den"; + }; + cs.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", každých %s dní v týdnu"; + }; + cs.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + cs.prototype.first = function () { + return "první"; + }; + cs.prototype.second = function () { + return "druhý"; + }; + cs.prototype.third = function () { + return "třetí"; + }; + cs.prototype.fourth = function () { + return "čtvrtý"; + }; + cs.prototype.fifth = function () { + return "pátý"; + }; + cs.prototype.commaOnThe = function () { + return ", "; + }; + cs.prototype.spaceX0OfTheMonth = function () { + return " %s v měsíci"; + }; + cs.prototype.lastDay = function () { + return "poslední den"; + }; + cs.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", poslední %s v měsíci"; + }; + cs.prototype.commaOnlyOnX0 = function () { + return ", pouze v %s"; + }; + cs.prototype.commaAndOnX0 = function () { + return ", a v %s"; + }; + cs.prototype.commaEveryX0Months = function () { + return ", každých %s měsíců"; + }; + cs.prototype.commaOnlyInX0 = function () { + return ", pouze v %s"; + }; + cs.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", poslední den v měsíci"; + }; + cs.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", poslední pracovní den v měsíci"; + }; + cs.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dní před posledním dnem v měsíci"; + }; + cs.prototype.firstWeekday = function () { + return "první pracovní den"; + }; + cs.prototype.weekdayNearestDayX0 = function () { + return "pracovní den nejblíže %s. dni"; + }; + cs.prototype.commaOnTheX0OfTheMonth = function () { + return ", v %s v měsíci"; + }; + cs.prototype.commaEveryX0Days = function () { + return ", každých %s dnů"; + }; + cs.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", mezi dny %s a %s v měsíci"; + }; + cs.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. den v měsíci"; + }; + cs.prototype.commaEveryX0Years = function () { + return ", každých %s roků"; + }; + cs.prototype.commaStartingX0 = function () { + return ", začínající %s"; + }; + cs.prototype.daysOfTheWeek = function () { + return ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"]; + }; + cs.prototype.monthsOfTheYear = function () { + return [ + "Leden", + "Únor", + "Březen", + "Duben", + "Květen", + "Červen", + "Červenec", + "Srpen", + "Září", + "Říjen", + "Listopad", + "Prosinec" + ]; + }; + return cs; +}()); +exports.cs = cs; + + +/***/ }), +/* 29 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sk = (function () { + function sk() { + } + sk.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sk.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sk.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sk.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sk.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sk.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Pri vytváraní popisu došlo k chybe. Skontrolujte prosím správnosť syntaxe cronu."; + }; + sk.prototype.everyMinute = function () { + return "každú minútu"; + }; + sk.prototype.everyHour = function () { + return "každú hodinu"; + }; + sk.prototype.atSpace = function () { + return "V "; + }; + sk.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Každú minútu medzi %s a %s"; + }; + sk.prototype.at = function () { + return "V"; + }; + sk.prototype.spaceAnd = function () { + return " a"; + }; + sk.prototype.everySecond = function () { + return "každú sekundu"; + }; + sk.prototype.everyX0Seconds = function () { + return "každých %s sekúnd"; + }; + sk.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekundy od %s do %s"; + }; + sk.prototype.atX0SecondsPastTheMinute = function () { + return "v %s sekúnd"; + }; + sk.prototype.everyX0Minutes = function () { + return "každých %s minút"; + }; + sk.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minúty od %s do %s"; + }; + sk.prototype.atX0MinutesPastTheHour = function () { + return "v %s minút"; + }; + sk.prototype.everyX0Hours = function () { + return "každých %s hodín"; + }; + sk.prototype.betweenX0AndX1 = function () { + return "medzi %s a %s"; + }; + sk.prototype.atX0 = function () { + return "v %s"; + }; + sk.prototype.commaEveryDay = function () { + return ", každý deň"; + }; + sk.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", každých %s dní v týždni"; + }; + sk.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + sk.prototype.first = function () { + return "prvý"; + }; + sk.prototype.second = function () { + return "druhý"; + }; + sk.prototype.third = function () { + return "tretí"; + }; + sk.prototype.fourth = function () { + return "štvrtý"; + }; + sk.prototype.fifth = function () { + return "piaty"; + }; + sk.prototype.commaOnThe = function () { + return ", "; + }; + sk.prototype.spaceX0OfTheMonth = function () { + return " %s v mesiaci"; + }; + sk.prototype.lastDay = function () { + return "posledný deň"; + }; + sk.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", posledný %s v mesiaci"; + }; + sk.prototype.commaOnlyOnX0 = function () { + return ", iba v %s"; + }; + sk.prototype.commaAndOnX0 = function () { + return ", a v %s"; + }; + sk.prototype.commaEveryX0Months = function () { + return ", každých %s mesiacov"; + }; + sk.prototype.commaOnlyInX0 = function () { + return ", iba v %s"; + }; + sk.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", posledný deň v mesiaci"; + }; + sk.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", posledný pracovný deň v mesiaci"; + }; + sk.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dní pred posledným dňom v mesiaci"; + }; + sk.prototype.firstWeekday = function () { + return "prvý pracovný deň"; + }; + sk.prototype.weekdayNearestDayX0 = function () { + return "pracovný deň najbližšie %s. dňu"; + }; + sk.prototype.commaOnTheX0OfTheMonth = function () { + return ", v %s v mesiaci"; + }; + sk.prototype.commaEveryX0Days = function () { + return ", každých %s dní"; + }; + sk.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", medzi dňami %s a %s v mesiaci"; + }; + sk.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. deň v mesiaci"; + }; + sk.prototype.commaEveryX0Years = function () { + return ", každých %s rokov"; + }; + sk.prototype.commaStartingX0 = function () { + return ", začínajúcich %s"; + }; + sk.prototype.daysOfTheWeek = function () { + return ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota"]; + }; + sk.prototype.monthsOfTheYear = function () { + return [ + "Január", + "Február", + "Marec", + "Apríl", + "Máj", + "Jún", + "Júl", + "August", + "September", + "Október", + "November", + "December" + ]; + }; + return sk; +}()); +exports.sk = sk; + + +/***/ }), +/* 30 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fi = (function () { + function fi() { + } + fi.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + fi.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Virhe kuvauksen generoinnissa. Tarkista cron-syntaksi."; + }; + fi.prototype.at = function () { + return "Klo"; + }; + fi.prototype.atSpace = function () { + return "Klo "; + }; + fi.prototype.atX0 = function () { + return "klo %s"; + }; + fi.prototype.atX0MinutesPastTheHour = function () { + return "%s minuuttia yli"; + }; + fi.prototype.atX0MinutesPastTheHourGt20 = function () { + return "%s minuuttia yli"; + }; + fi.prototype.atX0SecondsPastTheMinute = function () { + return "%s sekunnnin jälkeen"; + }; + fi.prototype.betweenX0AndX1 = function () { + return "%s - %s välillä"; + }; + fi.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", kuukauden päivien %s ja %s välillä"; + }; + fi.prototype.commaEveryDay = function () { + return ", joka päivä"; + }; + fi.prototype.commaEveryHour = function () { + return ", joka tunti"; + }; + fi.prototype.commaEveryMinute = function () { + return ", joka minuutti"; + }; + fi.prototype.commaEveryX0Days = function () { + return ", joka %s. päivä"; + }; + fi.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", joka %s. viikonpäivä"; + }; + fi.prototype.commaEveryX0Months = function () { + return ", joka %s. kuukausi"; + }; + fi.prototype.commaEveryX0Years = function () { + return ", joka %s. vuosi"; + }; + fi.prototype.commaOnDayX0OfTheMonth = function () { + return ", kuukauden %s päivä"; + }; + fi.prototype.commaOnlyInX0 = function () { + return ", vain %s"; + }; + fi.prototype.commaOnlyOnX0 = function () { + return ", vain %s"; + }; + fi.prototype.commaOnThe = function () { + return ","; + }; + fi.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", kuukauden viimeisenä päivänä"; + }; + fi.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", kuukauden viimeisenä viikonpäivänä"; + }; + fi.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", kuukauden viimeinen %s"; + }; + fi.prototype.commaOnTheX0OfTheMonth = function () { + return ", kuukauden %s"; + }; + fi.prototype.commaX0ThroughX1 = function () { + return ", %s - %s"; + }; + fi.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s päivää ennen kuukauden viimeistä päivää"; + }; + fi.prototype.commaStartingX0 = function () { + return ", alkaen %s"; + }; + fi.prototype.everyHour = function () { + return "joka tunti"; + }; + fi.prototype.everyMinute = function () { + return "joka minuutti"; + }; + fi.prototype.everyMinuteBetweenX0AndX1 = function () { + return "joka minuutti %s - %s välillä"; + }; + fi.prototype.everySecond = function () { + return "joka sekunti"; + }; + fi.prototype.everyX0Hours = function () { + return "joka %s. tunti"; + }; + fi.prototype.everyX0Minutes = function () { + return "joka %s. minuutti"; + }; + fi.prototype.everyX0Seconds = function () { + return "joka %s. sekunti"; + }; + fi.prototype.fifth = function () { + return "viides"; + }; + fi.prototype.first = function () { + return "ensimmäinen"; + }; + fi.prototype.firstWeekday = function () { + return "ensimmäinen viikonpäivä"; + }; + fi.prototype.fourth = function () { + return "neljäs"; + }; + fi.prototype.minutesX0ThroughX1PastTheHour = function () { + return "joka tunti minuuttien %s - %s välillä"; + }; + fi.prototype.second = function () { + return "toinen"; + }; + fi.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "joka minuutti sekunttien %s - %s välillä"; + }; + fi.prototype.spaceAnd = function () { + return " ja"; + }; + fi.prototype.spaceAndSpace = function () { + return " ja "; + }; + fi.prototype.spaceX0OfTheMonth = function () { + return " %s kuukaudessa"; + }; + fi.prototype.third = function () { + return "kolmas"; + }; + fi.prototype.weekdayNearestDayX0 = function () { + return "viikonpäivä lähintä %s päivää"; + }; + fi.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fi.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fi.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fi.prototype.lastDay = function () { + return "viimeinen päivä"; + }; + fi.prototype.commaAndOnX0 = function () { + return ", ja edelleen %s"; + }; + fi.prototype.daysOfTheWeek = function () { + return ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"]; + }; + fi.prototype.monthsOfTheYear = function () { + return [ + "tammikuu", + "helmikuu", + "maaliskuu", + "huhtikuu", + "toukokuu", + "kesäkuu", + "heinäkuu", + "elokuu", + "syyskuu", + "lokakuu", + "marraskuu", + "joulukuu" + ]; + }; + return fi; +}()); +exports.fi = fi; + + +/***/ }), +/* 31 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sl = (function () { + function sl() { + } + sl.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + sl.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Pri generiranju opisa izraza je prišlo do napake. Preverite sintakso izraza cron."; + }; + sl.prototype.at = function () { + return "Ob"; + }; + sl.prototype.atSpace = function () { + return "Ob "; + }; + sl.prototype.atX0 = function () { + return "ob %s"; + }; + sl.prototype.atX0MinutesPastTheHour = function () { + return "ob %s."; + }; + sl.prototype.atX0SecondsPastTheMinute = function () { + return "ob %s."; + }; + sl.prototype.betweenX0AndX1 = function () { + return "od %s do %s"; + }; + sl.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", od %s. do %s. dne v mesecu"; + }; + sl.prototype.commaEveryDay = function () { + return ", vsak dan"; + }; + sl.prototype.commaEveryX0Days = function () { + return ", vsakih %s dni"; + }; + sl.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", vsakih %s dni v tednu"; + }; + sl.prototype.commaEveryX0Months = function () { + return ", vsakih %s mesecev"; + }; + sl.prototype.commaEveryX0Years = function () { + return ", vsakih %s let"; + }; + sl.prototype.commaOnDayX0OfTheMonth = function () { + return ", %s. dan v mesecu"; + }; + sl.prototype.commaOnlyInX0 = function () { + return ", samo v %s"; + }; + sl.prototype.commaOnlyOnX0 = function () { + return ", samo v %s"; + }; + sl.prototype.commaAndOnX0 = function () { + return "in naprej %s"; + }; + sl.prototype.commaOnThe = function () { + return ", "; + }; + sl.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", zadnji %s v mesecu"; + }; + sl.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", zadnji delovni dan v mesecu"; + }; + sl.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s dni pred koncem meseca"; + }; + sl.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", zadnji %s v mesecu"; + }; + sl.prototype.commaOnTheX0OfTheMonth = function () { + return ", %s v mesecu"; + }; + sl.prototype.commaX0ThroughX1 = function () { + return ", od %s do %s"; + }; + sl.prototype.everyHour = function () { + return "vsako uro"; + }; + sl.prototype.everyMinute = function () { + return "vsako minuto"; + }; + sl.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Vsako minuto od %s do %s"; + }; + sl.prototype.everySecond = function () { + return "vsako sekundo"; + }; + sl.prototype.everyX0Hours = function () { + return "vsakih %s ur"; + }; + sl.prototype.everyX0Minutes = function () { + return "vsakih %s minut"; + }; + sl.prototype.everyX0Seconds = function () { + return "vsakih %s sekund"; + }; + sl.prototype.fifth = function () { + return "peti"; + }; + sl.prototype.first = function () { + return "prvi"; + }; + sl.prototype.firstWeekday = function () { + return "prvi delovni dan"; + }; + sl.prototype.fourth = function () { + return "četrti"; + }; + sl.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minute od %s do %s"; + }; + sl.prototype.second = function () { + return "drugi"; + }; + sl.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunde od %s do %s"; + }; + sl.prototype.spaceAnd = function () { + return " in"; + }; + sl.prototype.spaceX0OfTheMonth = function () { + return " %s v mesecu"; + }; + sl.prototype.lastDay = function () { + return "zadnjič"; + }; + sl.prototype.third = function () { + return "tretji"; + }; + sl.prototype.weekdayNearestDayX0 = function () { + return "delovni dan, najbližji %s. dnevu"; + }; + sl.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sl.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sl.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sl.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sl.prototype.commaStartingX0 = function () { + return ", začenši %s"; + }; + sl.prototype.daysOfTheWeek = function () { + return ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota"]; + }; + sl.prototype.monthsOfTheYear = function () { + return [ + "januar", + "februar", + "marec", + "april", + "maj", + "junij", + "julij", + "avgust", + "september", + "oktober", + "november", + "december" + ]; + }; + return sl; +}()); +exports.sl = sl; + + +/***/ }), +/* 32 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var sw = (function () { + function sw() { + } + sw.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + sw.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + sw.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + sw.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + sw.prototype.use24HourTimeFormatByDefault = function () { + return false; + }; + sw.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "Kuna tatizo wakati wa kutunga msemo. Angalia cron expression syntax."; + }; + sw.prototype.everyMinute = function () { + return "kila dakika"; + }; + sw.prototype.everyHour = function () { + return "kila saa"; + }; + sw.prototype.atSpace = function () { + return "Kwa "; + }; + sw.prototype.everyMinuteBetweenX0AndX1 = function () { + return "Kila dakika kwanzia %s hadi %s"; + }; + sw.prototype.at = function () { + return "Kwa"; + }; + sw.prototype.spaceAnd = function () { + return " na"; + }; + sw.prototype.everySecond = function () { + return "kila sekunde"; + }; + sw.prototype.everyX0Seconds = function () { + return "kila sekunde %s"; + }; + sw.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "sekunde ya %s hadi %s baada ya dakika"; + }; + sw.prototype.atX0SecondsPastTheMinute = function () { + return "at %s seconds past the minute"; + return "sekunde %s baada ya dakika"; + }; + sw.prototype.everyX0Minutes = function () { + return "kila dakika %s"; + }; + sw.prototype.minutesX0ThroughX1PastTheHour = function () { + return "minutes %s through %s past the hour"; + }; + sw.prototype.atX0MinutesPastTheHour = function () { + return "at %s minutes past the hour"; + }; + sw.prototype.everyX0Hours = function () { + return "every %s hours"; + }; + sw.prototype.betweenX0AndX1 = function () { + return "kati ya %s na %s"; + }; + sw.prototype.atX0 = function () { + return "kwenye %s"; + }; + sw.prototype.commaEveryDay = function () { + return ", kila siku"; + }; + sw.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", kila siku %s ya wiki"; + }; + sw.prototype.commaX0ThroughX1 = function () { + return ", %s hadi %s"; + }; + sw.prototype.first = function () { + return "ya kwanza"; + }; + sw.prototype.second = function () { + return "ya pili"; + }; + sw.prototype.third = function () { + return "ya tatu"; + }; + sw.prototype.fourth = function () { + return "ya nne"; + }; + sw.prototype.fifth = function () { + return "ya tano"; + }; + sw.prototype.commaOnThe = function () { + return ", kwenye "; + }; + sw.prototype.spaceX0OfTheMonth = function () { + return " siku %s ya mwezi"; + }; + sw.prototype.lastDay = function () { + return "siku ya mwisho"; + }; + sw.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaOnlyOnX0 = function () { + return ", kwa %s tu"; + }; + sw.prototype.commaAndOnX0 = function () { + return ", na pia %s"; + }; + sw.prototype.commaEveryX0Months = function () { + return ", kila mwezi wa %s"; + }; + sw.prototype.commaOnlyInX0 = function () { + return ", kwa %s tu"; + }; + sw.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", siku ya mwisho wa mwezi"; + }; + sw.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", wikendi ya mwisho wa mwezi"; + }; + sw.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", siku ya %s kabla ya siku ya mwisho wa mwezi"; + }; + sw.prototype.firstWeekday = function () { + return "siku za kazi ya kwanza"; + }; + sw.prototype.weekdayNearestDayX0 = function () { + return "siku ya kazi karibu na siku ya %s"; + }; + sw.prototype.commaOnTheX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaEveryX0Days = function () { + return ", kila siku %s"; + }; + sw.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", kati ya siku %s na %s ya mwezi"; + }; + sw.prototype.commaOnDayX0OfTheMonth = function () { + return ", siku ya %s ya mwezi"; + }; + sw.prototype.commaEveryX0Years = function () { + return ", kila miaka %s"; + }; + sw.prototype.commaStartingX0 = function () { + return ", kwanzia %s"; + }; + sw.prototype.daysOfTheWeek = function () { + return ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"]; + }; + sw.prototype.monthsOfTheYear = function () { + return [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ]; + }; + return sw; +}()); +exports.sw = sw; + + +/***/ }), +/* 33 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var fa = (function () { + function fa() { + } + fa.prototype.atX0SecondsPastTheMinuteGt20 = function () { + return null; + }; + fa.prototype.atX0MinutesPastTheHourGt20 = function () { + return null; + }; + fa.prototype.commaMonthX0ThroughMonthX1 = function () { + return null; + }; + fa.prototype.commaYearX0ThroughYearX1 = function () { + return null; + }; + fa.prototype.use24HourTimeFormatByDefault = function () { + return true; + }; + fa.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () { + return "خطایی در نمایش توضیحات این وظیفه رخ داد. لطفا ساختار آن را بررسی کنید."; + }; + fa.prototype.everyMinute = function () { + return "هر دقیقه"; + }; + fa.prototype.everyHour = function () { + return "هر ساعت"; + }; + fa.prototype.atSpace = function () { + return "در "; + }; + fa.prototype.everyMinuteBetweenX0AndX1 = function () { + return "هر دقیقه بین %s و %s"; + }; + fa.prototype.at = function () { + return "در"; + }; + fa.prototype.spaceAnd = function () { + return " و"; + }; + fa.prototype.everySecond = function () { + return "هر ثانیه"; + }; + fa.prototype.everyX0Seconds = function () { + return "هر %s ثانیه"; + }; + fa.prototype.secondsX0ThroughX1PastTheMinute = function () { + return "ثانیه %s تا %s دقیقه گذشته"; + }; + fa.prototype.atX0SecondsPastTheMinute = function () { + return "در %s قانیه از دقیقه گذشته"; + }; + fa.prototype.everyX0Minutes = function () { + return "هر %s دقیقه"; + }; + fa.prototype.minutesX0ThroughX1PastTheHour = function () { + return "دقیقه %s تا %s ساعت گذشته"; + }; + fa.prototype.atX0MinutesPastTheHour = function () { + return "در %s دقیقه پس از ساعت"; + }; + fa.prototype.everyX0Hours = function () { + return "هر %s ساعت"; + }; + fa.prototype.betweenX0AndX1 = function () { + return "بین %s و %s"; + }; + fa.prototype.atX0 = function () { + return "در %s"; + }; + fa.prototype.commaEveryDay = function () { + return ", هر روز"; + }; + fa.prototype.commaEveryX0DaysOfTheWeek = function () { + return ", هر %s روز از هفته"; + }; + fa.prototype.commaX0ThroughX1 = function () { + return ", %s تا %s"; + }; + fa.prototype.first = function () { + return "اول"; + }; + fa.prototype.second = function () { + return "دوم"; + }; + fa.prototype.third = function () { + return "سوم"; + }; + fa.prototype.fourth = function () { + return "چهارم"; + }; + fa.prototype.fifth = function () { + return "پنجم"; + }; + fa.prototype.commaOnThe = function () { + return ", در "; + }; + fa.prototype.spaceX0OfTheMonth = function () { + return " %s ماه"; + }; + fa.prototype.lastDay = function () { + return "آخرین روز"; + }; + fa.prototype.commaOnTheLastX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaOnlyOnX0 = function () { + return ", فقط در %s"; + }; + fa.prototype.commaAndOnX0 = function () { + return ", و در %s"; + }; + fa.prototype.commaEveryX0Months = function () { + return ", هر %s ماه"; + }; + fa.prototype.commaOnlyInX0 = function () { + return ", فقط در %s"; + }; + fa.prototype.commaOnTheLastDayOfTheMonth = function () { + return ", در آخرین روز ماه"; + }; + fa.prototype.commaOnTheLastWeekdayOfTheMonth = function () { + return ", در آخرین روز ماه"; + }; + fa.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () { + return ", %s روز قبل از آخرین روز ماه"; + }; + fa.prototype.firstWeekday = function () { + return "اولین روز"; + }; + fa.prototype.weekdayNearestDayX0 = function () { + return "روز نزدیک به روز %s"; + }; + fa.prototype.commaOnTheX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaEveryX0Days = function () { + return ", هر %s روز"; + }; + fa.prototype.commaBetweenDayX0AndX1OfTheMonth = function () { + return ", بین روز %s و %s ماه"; + }; + fa.prototype.commaOnDayX0OfTheMonth = function () { + return ", در %s ماه"; + }; + fa.prototype.commaEveryMinute = function () { + return ", هر minute"; + }; + fa.prototype.commaEveryHour = function () { + return ", هر ساعت"; + }; + fa.prototype.commaEveryX0Years = function () { + return ", هر %s سال"; + }; + fa.prototype.commaStartingX0 = function () { + return ", آغاز %s"; + }; + fa.prototype.daysOfTheWeek = function () { + return ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه"]; + }; + fa.prototype.monthsOfTheYear = function () { + return [ + "ژانویه", + "فوریه", + "مارس", + "آپریل", + "مه", + "ژوئن", + "ژوئیه", + "آگوست", + "سپتامبر", + "اکتبر", + "نوامبر", + "دسامبر" + ]; + }; + return fa; +}()); +exports.fa = fa; + + +/***/ }) +/******/ ]); +}); + +/***/ }), + +/***/ "1276": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var isRegExp = __webpack_require__("44e7"); +var anObject = __webpack_require__("825a"); +var requireObjectCoercible = __webpack_require__("1d80"); +var speciesConstructor = __webpack_require__("4840"); +var advanceStringIndex = __webpack_require__("8aa5"); +var toLength = __webpack_require__("50c4"); +var callRegExpExec = __webpack_require__("14c3"); +var regexpExec = __webpack_require__("9263"); +var fails = __webpack_require__("d039"); + +var arrayPush = [].push; +var min = Math.min; +var MAX_UINT32 = 0xFFFFFFFF; + +// babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError +var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); }); + +// @@split logic +fixRegExpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) { + var internalSplit; + if ( + 'abbc'.split(/(b)*/)[1] == 'c' || + 'test'.split(/(?:)/, -1).length != 4 || + 'ab'.split(/(?:ab)*/).length != 2 || + '.'.split(/(.?)(.?)/).length != 4 || + '.'.split(/()()/).length > 1 || + ''.split(/.?/).length + ) { + // based on es5-shim implementation, need to rework it + internalSplit = function (separator, limit) { + var string = String(requireObjectCoercible(this)); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (separator === undefined) return [string]; + // If `separator` is not a regex, use native split + if (!isRegExp(separator)) { + return nativeSplit.call(string, separator, lim); + } + var output = []; + var flags = (separator.ignoreCase ? 'i' : '') + + (separator.multiline ? 'm' : '') + + (separator.unicode ? 'u' : '') + + (separator.sticky ? 'y' : ''); + var lastLastIndex = 0; + // Make `global` and avoid `lastIndex` issues by working with a copy + var separatorCopy = new RegExp(separator.source, flags + 'g'); + var match, lastIndex, lastLength; + while (match = regexpExec.call(separatorCopy, string)) { + lastIndex = separatorCopy.lastIndex; + if (lastIndex > lastLastIndex) { + output.push(string.slice(lastLastIndex, match.index)); + if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1)); + lastLength = match[0].length; + lastLastIndex = lastIndex; + if (output.length >= lim) break; + } + if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop + } + if (lastLastIndex === string.length) { + if (lastLength || !separatorCopy.test('')) output.push(''); + } else output.push(string.slice(lastLastIndex)); + return output.length > lim ? output.slice(0, lim) : output; + }; + // Chakra, V8 + } else if ('0'.split(undefined, 0).length) { + internalSplit = function (separator, limit) { + return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit); + }; + } else internalSplit = nativeSplit; + + return [ + // `String.prototype.split` method + // https://tc39.github.io/ecma262/#sec-string.prototype.split + function split(separator, limit) { + var O = requireObjectCoercible(this); + var splitter = separator == undefined ? undefined : separator[SPLIT]; + return splitter !== undefined + ? splitter.call(separator, O, limit) + : internalSplit.call(String(O), separator, limit); + }, + // `RegExp.prototype[@@split]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split + // + // NOTE: This cannot be properly polyfilled in engines that don't support + // the 'y' flag. + function (regexp, limit) { + var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit); + if (res.done) return res.value; + + var rx = anObject(regexp); + var S = String(this); + var C = speciesConstructor(rx, RegExp); + + var unicodeMatching = rx.unicode; + var flags = (rx.ignoreCase ? 'i' : '') + + (rx.multiline ? 'm' : '') + + (rx.unicode ? 'u' : '') + + (SUPPORTS_Y ? 'y' : 'g'); + + // ^(? + rx + ) is needed, in combination with some S slicing, to + // simulate the 'y' flag. + var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : []; + var p = 0; + var q = 0; + var A = []; + while (q < S.length) { + splitter.lastIndex = SUPPORTS_Y ? q : 0; + var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q)); + var e; + if ( + z === null || + (e = min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p + ) { + q = advanceStringIndex(S, q, unicodeMatching); + } else { + A.push(S.slice(p, q)); + if (A.length === lim) return A; + for (var i = 1; i <= z.length - 1; i++) { + A.push(z[i]); + if (A.length === lim) return A; + } + q = p = e; + } + } + A.push(S.slice(p)); + return A; + } + ]; +}, !SUPPORTS_Y); + + +/***/ }), + +/***/ "14c3": +/***/ (function(module, exports, __webpack_require__) { + +var classof = __webpack_require__("c6b6"); +var regexpExec = __webpack_require__("9263"); + +// `RegExpExec` abstract operation +// https://tc39.github.io/ecma262/#sec-regexpexec +module.exports = function (R, S) { + var exec = R.exec; + if (typeof exec === 'function') { + var result = exec.call(R, S); + if (typeof result !== 'object') { + throw TypeError('RegExp exec method returned something other than an Object or null'); + } + return result; + } + + if (classof(R) !== 'RegExp') { + throw TypeError('RegExp#exec called on incompatible receiver'); + } + + return regexpExec.call(R, S); +}; + + + +/***/ }), + +/***/ "159b": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var DOMIterables = __webpack_require__("fdbc"); +var forEach = __webpack_require__("17c2"); +var createNonEnumerableProperty = __webpack_require__("9112"); + +for (var COLLECTION_NAME in DOMIterables) { + var Collection = global[COLLECTION_NAME]; + var CollectionPrototype = Collection && Collection.prototype; + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try { + createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach); + } catch (error) { + CollectionPrototype.forEach = forEach; + } +} + + +/***/ }), + +/***/ "17c2": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $forEach = __webpack_require__("b727").forEach; +var arrayMethodIsStrict = __webpack_require__("a640"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var STRICT_METHOD = arrayMethodIsStrict('forEach'); +var USES_TO_LENGTH = arrayMethodUsesToLength('forEach'); + +// `Array.prototype.forEach` method implementation +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) { + return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +} : [].forEach; + + +/***/ }), + +/***/ "1be4": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); + +module.exports = getBuiltIn('document', 'documentElement'); + + +/***/ }), + +/***/ "1c0b": +/***/ (function(module, exports) { + +module.exports = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } return it; +}; + + +/***/ }), + +/***/ "1d80": +/***/ (function(module, exports) { + +// `RequireObjectCoercible` abstract operation +// https://tc39.github.io/ecma262/#sec-requireobjectcoercible +module.exports = function (it) { + if (it == undefined) throw TypeError("Can't call method on " + it); + return it; +}; + + +/***/ }), + +/***/ "1dde": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); +var wellKnownSymbol = __webpack_require__("b622"); +var V8_VERSION = __webpack_require__("2d00"); + +var SPECIES = wellKnownSymbol('species'); + +module.exports = function (METHOD_NAME) { + // We can't use this feature detection in V8 since it causes + // deoptimization and serious performance degradation + // https://github.com/zloirock/core-js/issues/677 + return V8_VERSION >= 51 || !fails(function () { + var array = []; + var constructor = array.constructor = {}; + constructor[SPECIES] = function () { + return { foo: 1 }; + }; + return array[METHOD_NAME](Boolean).foo !== 1; + }); +}; + + +/***/ }), + +/***/ "23cb": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); + +var max = Math.max; +var min = Math.min; + +// Helper for a popular repeating case of the spec: +// Let integer be ? ToInteger(index). +// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length). +module.exports = function (index, length) { + var integer = toInteger(index); + return integer < 0 ? max(integer + length, 0) : min(integer, length); +}; + + +/***/ }), + +/***/ "23e7": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var getOwnPropertyDescriptor = __webpack_require__("06cf").f; +var createNonEnumerableProperty = __webpack_require__("9112"); +var redefine = __webpack_require__("6eeb"); +var setGlobal = __webpack_require__("ce4e"); +var copyConstructorProperties = __webpack_require__("e893"); +var isForced = __webpack_require__("94ca"); + +/* + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.noTargetGet - prevent calling a getter on target +*/ +module.exports = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var FORCED, target, key, targetProperty, sourceProperty, descriptor; + if (GLOBAL) { + target = global; + } else if (STATIC) { + target = global[TARGET] || setGlobal(TARGET, {}); + } else { + target = (global[TARGET] || {}).prototype; + } + if (target) for (key in source) { + sourceProperty = source[key]; + if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor(target, key); + targetProperty = descriptor && descriptor.value; + } else targetProperty = target[key]; + FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); + // contained in target + if (!FORCED && targetProperty !== undefined) { + if (typeof sourceProperty === typeof targetProperty) continue; + copyConstructorProperties(sourceProperty, targetProperty); + } + // add a flag to not completely full polyfills + if (options.sham || (targetProperty && targetProperty.sham)) { + createNonEnumerableProperty(sourceProperty, 'sham', true); + } + // extend global + redefine(target, key, sourceProperty, options); + } +}; + + +/***/ }), + +/***/ "241c": +/***/ (function(module, exports, __webpack_require__) { + +var internalObjectKeys = __webpack_require__("ca84"); +var enumBugKeys = __webpack_require__("7839"); + +var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + +// `Object.getOwnPropertyNames` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertynames +exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return internalObjectKeys(O, hiddenKeys); +}; + + +/***/ }), + +/***/ "2d00": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var userAgent = __webpack_require__("342f"); + +var process = global.process; +var versions = process && process.versions; +var v8 = versions && versions.v8; +var match, version; + +if (v8) { + match = v8.split('.'); + version = match[0] + match[1]; +} else if (userAgent) { + match = userAgent.match(/Edge\/(\d+)/); + if (!match || match[1] >= 74) { + match = userAgent.match(/Chrome\/(\d+)/); + if (match) version = match[1]; + } +} + +module.exports = version && +version; + + +/***/ }), + +/***/ "2dd8": +/***/ (function(module, exports, __webpack_require__) { + +// extracted by mini-css-extract-plugin + +/***/ }), + +/***/ "342f": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); + +module.exports = getBuiltIn('navigator', 'userAgent') || ''; + + +/***/ }), + +/***/ "37e8": +/***/ (function(module, exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__("83ab"); +var definePropertyModule = __webpack_require__("9bf2"); +var anObject = __webpack_require__("825a"); +var objectKeys = __webpack_require__("df75"); + +// `Object.defineProperties` method +// https://tc39.github.io/ecma262/#sec-object.defineproperties +module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + var keys = objectKeys(Properties); + var length = keys.length; + var index = 0; + var key; + while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]); + return O; +}; + + +/***/ }), + +/***/ "3bbe": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); + +module.exports = function (it) { + if (!isObject(it) && it !== null) { + throw TypeError("Can't set " + String(it) + ' as a prototype'); + } return it; +}; + + +/***/ }), + +/***/ "4160": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var forEach = __webpack_require__("17c2"); + +// `Array.prototype.forEach` method +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach +$({ target: 'Array', proto: true, forced: [].forEach != forEach }, { + forEach: forEach +}); + + +/***/ }), + +/***/ "428f": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); + +module.exports = global; + + +/***/ }), + +/***/ "4362": +/***/ (function(module, exports, __webpack_require__) { + +exports.nextTick = function nextTick(fn) { + var args = Array.prototype.slice.call(arguments); + args.shift(); + setTimeout(function () { + fn.apply(null, args); + }, 0); +}; + +exports.platform = exports.arch = +exports.execPath = exports.title = 'browser'; +exports.pid = 1; +exports.browser = true; +exports.env = {}; +exports.argv = []; + +exports.binding = function (name) { + throw new Error('No such module. (Possibly not yet loaded)') +}; + +(function () { + var cwd = '/'; + var path; + exports.cwd = function () { return cwd }; + exports.chdir = function (dir) { + if (!path) path = __webpack_require__("df7c"); + cwd = path.resolve(dir, cwd); + }; +})(); + +exports.exit = exports.kill = +exports.umask = exports.dlopen = +exports.uptime = exports.memoryUsage = +exports.uvCounters = function() {}; +exports.features = {}; + + +/***/ }), + +/***/ "44ad": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); +var classof = __webpack_require__("c6b6"); + +var split = ''.split; + +// fallback for non-array-like ES3 and non-enumerable old V8 strings +module.exports = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins + return !Object('z').propertyIsEnumerable(0); +}) ? function (it) { + return classof(it) == 'String' ? split.call(it, '') : Object(it); +} : Object; + + +/***/ }), + +/***/ "44d2": +/***/ (function(module, exports, __webpack_require__) { + +var wellKnownSymbol = __webpack_require__("b622"); +var create = __webpack_require__("7c73"); +var definePropertyModule = __webpack_require__("9bf2"); + +var UNSCOPABLES = wellKnownSymbol('unscopables'); +var ArrayPrototype = Array.prototype; + +// Array.prototype[@@unscopables] +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +if (ArrayPrototype[UNSCOPABLES] == undefined) { + definePropertyModule.f(ArrayPrototype, UNSCOPABLES, { + configurable: true, + value: create(null) + }); +} + +// add a key to Array.prototype[@@unscopables] +module.exports = function (key) { + ArrayPrototype[UNSCOPABLES][key] = true; +}; + + +/***/ }), + +/***/ "44e7": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var classof = __webpack_require__("c6b6"); +var wellKnownSymbol = __webpack_require__("b622"); + +var MATCH = wellKnownSymbol('match'); + +// `IsRegExp` abstract operation +// https://tc39.github.io/ecma262/#sec-isregexp +module.exports = function (it) { + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +}; + + +/***/ }), + +/***/ "466d": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var anObject = __webpack_require__("825a"); +var toLength = __webpack_require__("50c4"); +var requireObjectCoercible = __webpack_require__("1d80"); +var advanceStringIndex = __webpack_require__("8aa5"); +var regExpExec = __webpack_require__("14c3"); + +// @@match logic +fixRegExpWellKnownSymbolLogic('match', 1, function (MATCH, nativeMatch, maybeCallNative) { + return [ + // `String.prototype.match` method + // https://tc39.github.io/ecma262/#sec-string.prototype.match + function match(regexp) { + var O = requireObjectCoercible(this); + var matcher = regexp == undefined ? undefined : regexp[MATCH]; + return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O)); + }, + // `RegExp.prototype[@@match]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match + function (regexp) { + var res = maybeCallNative(nativeMatch, regexp, this); + if (res.done) return res.value; + + var rx = anObject(regexp); + var S = String(this); + + if (!rx.global) return regExpExec(rx, S); + + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + var A = []; + var n = 0; + var result; + while ((result = regExpExec(rx, S)) !== null) { + var matchStr = String(result[0]); + A[n] = matchStr; + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + n++; + } + return n === 0 ? null : A; + } + ]; +}); + + +/***/ }), + +/***/ "4840": +/***/ (function(module, exports, __webpack_require__) { + +var anObject = __webpack_require__("825a"); +var aFunction = __webpack_require__("1c0b"); +var wellKnownSymbol = __webpack_require__("b622"); + +var SPECIES = wellKnownSymbol('species'); + +// `SpeciesConstructor` abstract operation +// https://tc39.github.io/ecma262/#sec-speciesconstructor +module.exports = function (O, defaultConstructor) { + var C = anObject(O).constructor; + var S; + return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S); +}; + + +/***/ }), + +/***/ "4930": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); + +module.exports = !!Object.getOwnPropertySymbols && !fails(function () { + // Chrome 38 Symbol has incorrect toString conversion + // eslint-disable-next-line no-undef + return !String(Symbol()); +}); + + +/***/ }), + +/***/ "4d64": +/***/ (function(module, exports, __webpack_require__) { + +var toIndexedObject = __webpack_require__("fc6a"); +var toLength = __webpack_require__("50c4"); +var toAbsoluteIndex = __webpack_require__("23cb"); + +// `Array.prototype.{ indexOf, includes }` methods implementation +var createMethod = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = toLength(O.length); + var index = toAbsoluteIndex(fromIndex, length); + var value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } else for (;length > index; index++) { + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; + } return !IS_INCLUDES && -1; + }; +}; + +module.exports = { + // `Array.prototype.includes` method + // https://tc39.github.io/ecma262/#sec-array.prototype.includes + includes: createMethod(true), + // `Array.prototype.indexOf` method + // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + indexOf: createMethod(false) +}; + + +/***/ }), + +/***/ "4de4": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var $filter = __webpack_require__("b727").filter; +var arrayMethodHasSpeciesSupport = __webpack_require__("1dde"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter'); +// Edge 14- issue +var USES_TO_LENGTH = arrayMethodUsesToLength('filter'); + +// `Array.prototype.filter` method +// https://tc39.github.io/ecma262/#sec-array.prototype.filter +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, { + filter: function filter(callbackfn /* , thisArg */) { + return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + + +/***/ }), + +/***/ "50c4": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); + +var min = Math.min; + +// `ToLength` abstract operation +// https://tc39.github.io/ecma262/#sec-tolength +module.exports = function (argument) { + return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 +}; + + +/***/ }), + +/***/ "5135": +/***/ (function(module, exports) { + +var hasOwnProperty = {}.hasOwnProperty; + +module.exports = function (it, key) { + return hasOwnProperty.call(it, key); +}; + + +/***/ }), + +/***/ "5319": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784"); +var anObject = __webpack_require__("825a"); +var toObject = __webpack_require__("7b0b"); +var toLength = __webpack_require__("50c4"); +var toInteger = __webpack_require__("a691"); +var requireObjectCoercible = __webpack_require__("1d80"); +var advanceStringIndex = __webpack_require__("8aa5"); +var regExpExec = __webpack_require__("14c3"); + +var max = Math.max; +var min = Math.min; +var floor = Math.floor; +var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g; +var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g; + +var maybeToString = function (it) { + return it === undefined ? it : String(it); +}; + +// @@replace logic +fixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) { + var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE; + var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0; + var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; + + return [ + // `String.prototype.replace` method + // https://tc39.github.io/ecma262/#sec-string.prototype.replace + function replace(searchValue, replaceValue) { + var O = requireObjectCoercible(this); + var replacer = searchValue == undefined ? undefined : searchValue[REPLACE]; + return replacer !== undefined + ? replacer.call(searchValue, O, replaceValue) + : nativeReplace.call(String(O), searchValue, replaceValue); + }, + // `RegExp.prototype[@@replace]` method + // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace + function (regexp, replaceValue) { + if ( + (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) || + (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1) + ) { + var res = maybeCallNative(nativeReplace, regexp, this, replaceValue); + if (res.done) return res.value; + } + + var rx = anObject(regexp); + var S = String(this); + + var functionalReplace = typeof replaceValue === 'function'; + if (!functionalReplace) replaceValue = String(replaceValue); + + var global = rx.global; + if (global) { + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + } + var results = []; + while (true) { + var result = regExpExec(rx, S); + if (result === null) break; + + results.push(result); + if (!global) break; + + var matchStr = String(result[0]); + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + } + + var accumulatedResult = ''; + var nextSourcePosition = 0; + for (var i = 0; i < results.length; i++) { + result = results[i]; + + var matched = String(result[0]); + var position = max(min(toInteger(result.index), S.length), 0); + var captures = []; + // NOTE: This is equivalent to + // captures = result.slice(1).map(maybeToString) + // but for some reason `nativeSlice.call(result, 1, result.length)` (called in + // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and + // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. + for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j])); + var namedCaptures = result.groups; + if (functionalReplace) { + var replacerArgs = [matched].concat(captures, position, S); + if (namedCaptures !== undefined) replacerArgs.push(namedCaptures); + var replacement = String(replaceValue.apply(undefined, replacerArgs)); + } else { + replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); + } + if (position >= nextSourcePosition) { + accumulatedResult += S.slice(nextSourcePosition, position) + replacement; + nextSourcePosition = position + matched.length; + } + } + return accumulatedResult + S.slice(nextSourcePosition); + } + ]; + + // https://tc39.github.io/ecma262/#sec-getsubstitution + function getSubstitution(matched, str, position, captures, namedCaptures, replacement) { + var tailPos = position + matched.length; + var m = captures.length; + var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; + if (namedCaptures !== undefined) { + namedCaptures = toObject(namedCaptures); + symbols = SUBSTITUTION_SYMBOLS; + } + return nativeReplace.call(replacement, symbols, function (match, ch) { + var capture; + switch (ch.charAt(0)) { + case '$': return '$'; + case '&': return matched; + case '`': return str.slice(0, position); + case "'": return str.slice(tailPos); + case '<': + capture = namedCaptures[ch.slice(1, -1)]; + break; + default: // \d\d? + var n = +ch; + if (n === 0) return match; + if (n > m) { + var f = floor(n / 10); + if (f === 0) return match; + if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1); + return match; + } + capture = captures[n - 1]; + } + return capture === undefined ? '' : capture; + }); + } +}); + + +/***/ }), + +/***/ "5692": +/***/ (function(module, exports, __webpack_require__) { + +var IS_PURE = __webpack_require__("c430"); +var store = __webpack_require__("c6cd"); + +(module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); +})('versions', []).push({ + version: '3.6.5', + mode: IS_PURE ? 'pure' : 'global', + copyright: '© 2020 Denis Pushkarev (zloirock.ru)' +}); + + +/***/ }), + +/***/ "56ef": +/***/ (function(module, exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__("d066"); +var getOwnPropertyNamesModule = __webpack_require__("241c"); +var getOwnPropertySymbolsModule = __webpack_require__("7418"); +var anObject = __webpack_require__("825a"); + +// all object keys, includes non-enumerable and symbols +module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) { + var keys = getOwnPropertyNamesModule.f(anObject(it)); + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys; +}; + + +/***/ }), + +/***/ "5899": +/***/ (function(module, exports) { + +// a string of all valid unicode whitespaces +// eslint-disable-next-line max-len +module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + + +/***/ }), + +/***/ "58a8": +/***/ (function(module, exports, __webpack_require__) { + +var requireObjectCoercible = __webpack_require__("1d80"); +var whitespaces = __webpack_require__("5899"); + +var whitespace = '[' + whitespaces + ']'; +var ltrim = RegExp('^' + whitespace + whitespace + '*'); +var rtrim = RegExp(whitespace + whitespace + '*$'); + +// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation +var createMethod = function (TYPE) { + return function ($this) { + var string = String(requireObjectCoercible($this)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; +}; + +module.exports = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart + start: createMethod(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimend + end: createMethod(2), + // `String.prototype.trim` method + // https://tc39.github.io/ecma262/#sec-string.prototype.trim + trim: createMethod(3) +}; + + +/***/ }), + +/***/ "5c6c": +/***/ (function(module, exports) { + +module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value + }; +}; + + +/***/ }), + +/***/ "60da": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var DESCRIPTORS = __webpack_require__("83ab"); +var fails = __webpack_require__("d039"); +var objectKeys = __webpack_require__("df75"); +var getOwnPropertySymbolsModule = __webpack_require__("7418"); +var propertyIsEnumerableModule = __webpack_require__("d1e7"); +var toObject = __webpack_require__("7b0b"); +var IndexedObject = __webpack_require__("44ad"); + +var nativeAssign = Object.assign; +var defineProperty = Object.defineProperty; + +// `Object.assign` method +// https://tc39.github.io/ecma262/#sec-object.assign +module.exports = !nativeAssign || fails(function () { + // should have correct order of operations (Edge bug) + if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', { + enumerable: true, + get: function () { + defineProperty(this, 'b', { + value: 3, + enumerable: false + }); + } + }), { b: 2 })).b !== 1) return true; + // should work with symbols and should have deterministic property order (V8 bug) + var A = {}; + var B = {}; + // eslint-disable-next-line no-undef + var symbol = Symbol(); + var alphabet = 'abcdefghijklmnopqrst'; + A[symbol] = 7; + alphabet.split('').forEach(function (chr) { B[chr] = chr; }); + return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet; +}) ? function assign(target, source) { // eslint-disable-line no-unused-vars + var T = toObject(target); + var argumentsLength = arguments.length; + var index = 1; + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + var propertyIsEnumerable = propertyIsEnumerableModule.f; + while (argumentsLength > index) { + var S = IndexedObject(arguments[index++]); + var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S); + var length = keys.length; + var j = 0; + var key; + while (length > j) { + key = keys[j++]; + if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key]; + } + } return T; +} : nativeAssign; + + +/***/ }), + +/***/ "6547": +/***/ (function(module, exports, __webpack_require__) { + +var toInteger = __webpack_require__("a691"); +var requireObjectCoercible = __webpack_require__("1d80"); + +// `String.prototype.{ codePointAt, at }` methods implementation +var createMethod = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = String(requireObjectCoercible($this)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size + || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING ? S.charAt(position) : first + : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; +}; + +module.exports = { + // `String.prototype.codePointAt` method + // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod(true) +}; + + +/***/ }), + +/***/ "65f0": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var isArray = __webpack_require__("e8b5"); +var wellKnownSymbol = __webpack_require__("b622"); + +var SPECIES = wellKnownSymbol('species'); + +// `ArraySpeciesCreate` abstract operation +// https://tc39.github.io/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray, length) { + var C; + if (isArray(originalArray)) { + C = originalArray.constructor; + // cross-realm fallback + if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined; + else if (isObject(C)) { + C = C[SPECIES]; + if (C === null) C = undefined; + } + } return new (C === undefined ? Array : C)(length === 0 ? 0 : length); +}; + + +/***/ }), + +/***/ "69f3": +/***/ (function(module, exports, __webpack_require__) { + +var NATIVE_WEAK_MAP = __webpack_require__("7f9a"); +var global = __webpack_require__("da84"); +var isObject = __webpack_require__("861d"); +var createNonEnumerableProperty = __webpack_require__("9112"); +var objectHas = __webpack_require__("5135"); +var sharedKey = __webpack_require__("f772"); +var hiddenKeys = __webpack_require__("d012"); + +var WeakMap = global.WeakMap; +var set, get, has; + +var enforce = function (it) { + return has(it) ? get(it) : set(it, {}); +}; + +var getterFor = function (TYPE) { + return function (it) { + var state; + if (!isObject(it) || (state = get(it)).type !== TYPE) { + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); + } return state; + }; +}; + +if (NATIVE_WEAK_MAP) { + var store = new WeakMap(); + var wmget = store.get; + var wmhas = store.has; + var wmset = store.set; + set = function (it, metadata) { + wmset.call(store, it, metadata); + return metadata; + }; + get = function (it) { + return wmget.call(store, it) || {}; + }; + has = function (it) { + return wmhas.call(store, it); + }; +} else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + set = function (it, metadata) { + createNonEnumerableProperty(it, STATE, metadata); + return metadata; + }; + get = function (it) { + return objectHas(it, STATE) ? it[STATE] : {}; + }; + has = function (it) { + return objectHas(it, STATE); + }; +} + +module.exports = { + set: set, + get: get, + has: has, + enforce: enforce, + getterFor: getterFor +}; + + +/***/ }), + +/***/ "6eeb": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var createNonEnumerableProperty = __webpack_require__("9112"); +var has = __webpack_require__("5135"); +var setGlobal = __webpack_require__("ce4e"); +var inspectSource = __webpack_require__("8925"); +var InternalStateModule = __webpack_require__("69f3"); + +var getInternalState = InternalStateModule.get; +var enforceInternalState = InternalStateModule.enforce; +var TEMPLATE = String(String).split('String'); + +(module.exports = function (O, key, value, options) { + var unsafe = options ? !!options.unsafe : false; + var simple = options ? !!options.enumerable : false; + var noTargetGet = options ? !!options.noTargetGet : false; + if (typeof value == 'function') { + if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key); + enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : ''); + } + if (O === global) { + if (simple) O[key] = value; + else setGlobal(key, value); + return; + } else if (!unsafe) { + delete O[key]; + } else if (!noTargetGet && O[key]) { + simple = true; + } + if (simple) O[key] = value; + else createNonEnumerableProperty(O, key, value); +// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative +})(Function.prototype, 'toString', function toString() { + return typeof this == 'function' && getInternalState(this).source || inspectSource(this); +}); + + +/***/ }), + +/***/ "7156": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); +var setPrototypeOf = __webpack_require__("d2bb"); + +// makes subclassing work correct for wrapped built-ins +module.exports = function ($this, dummy, Wrapper) { + var NewTarget, NewTargetPrototype; + if ( + // it can work only with native `setPrototypeOf` + setPrototypeOf && + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this + typeof (NewTarget = dummy.constructor) == 'function' && + NewTarget !== Wrapper && + isObject(NewTargetPrototype = NewTarget.prototype) && + NewTargetPrototype !== Wrapper.prototype + ) setPrototypeOf($this, NewTargetPrototype); + return $this; +}; + + +/***/ }), + +/***/ "7418": +/***/ (function(module, exports) { + +exports.f = Object.getOwnPropertySymbols; + + +/***/ }), + +/***/ "746f": +/***/ (function(module, exports, __webpack_require__) { + +var path = __webpack_require__("428f"); +var has = __webpack_require__("5135"); +var wrappedWellKnownSymbolModule = __webpack_require__("e538"); +var defineProperty = __webpack_require__("9bf2").f; + +module.exports = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wrappedWellKnownSymbolModule.f(NAME) + }); +}; + + +/***/ }), + +/***/ "7839": +/***/ (function(module, exports) { + +// IE8- don't enum bug keys +module.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf' +]; + + +/***/ }), + +/***/ "7aa9": +/***/ (function(module, exports, __webpack_require__) { + +// This file allows dist/cronstrue-i18n.js to be required from Node as: +// var cronstrue = require('cronstrue/i18n'); + +var cronstrueWithLocales = __webpack_require__("122c"); +module.exports = cronstrueWithLocales; + + +/***/ }), + +/***/ "7b0b": +/***/ (function(module, exports, __webpack_require__) { + +var requireObjectCoercible = __webpack_require__("1d80"); + +// `ToObject` abstract operation +// https://tc39.github.io/ecma262/#sec-toobject +module.exports = function (argument) { + return Object(requireObjectCoercible(argument)); +}; + + +/***/ }), + +/***/ "7c73": +/***/ (function(module, exports, __webpack_require__) { + +var anObject = __webpack_require__("825a"); +var defineProperties = __webpack_require__("37e8"); +var enumBugKeys = __webpack_require__("7839"); +var hiddenKeys = __webpack_require__("d012"); +var html = __webpack_require__("1be4"); +var documentCreateElement = __webpack_require__("cc12"); +var sharedKey = __webpack_require__("f772"); + +var GT = '>'; +var LT = '<'; +var PROTOTYPE = 'prototype'; +var SCRIPT = 'script'; +var IE_PROTO = sharedKey('IE_PROTO'); + +var EmptyConstructor = function () { /* empty */ }; + +var scriptTag = function (content) { + return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; +}; + +// Create object with fake `null` prototype: use ActiveX Object with cleared prototype +var NullProtoObjectViaActiveX = function (activeXDocument) { + activeXDocument.write(scriptTag('')); + activeXDocument.close(); + var temp = activeXDocument.parentWindow.Object; + activeXDocument = null; // avoid memory leak + return temp; +}; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var NullProtoObjectViaIFrame = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var JS = 'java' + SCRIPT + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + // https://github.com/zloirock/core-js/issues/475 + iframe.src = String(JS); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(scriptTag('document.F=Object')); + iframeDocument.close(); + return iframeDocument.F; +}; + +// Check for document.domain and active x support +// No need to use active x approach when document.domain is not set +// see https://github.com/es-shims/es5-shim/issues/150 +// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 +// avoid IE GC bug +var activeXDocument; +var NullProtoObject = function () { + try { + /* global ActiveXObject */ + activeXDocument = document.domain && new ActiveXObject('htmlfile'); + } catch (error) { /* ignore */ } + NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame(); + var length = enumBugKeys.length; + while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; + return NullProtoObject(); +}; + +hiddenKeys[IE_PROTO] = true; + +// `Object.create` method +// https://tc39.github.io/ecma262/#sec-object.create +module.exports = Object.create || function create(O, Properties) { + var result; + if (O !== null) { + EmptyConstructor[PROTOTYPE] = anObject(O); + result = new EmptyConstructor(); + EmptyConstructor[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = NullProtoObject(); + return Properties === undefined ? result : defineProperties(result, Properties); +}; + + +/***/ }), + +/***/ "7db0": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__("23e7"); +var $find = __webpack_require__("b727").find; +var addToUnscopables = __webpack_require__("44d2"); +var arrayMethodUsesToLength = __webpack_require__("ae40"); + +var FIND = 'find'; +var SKIPS_HOLES = true; + +var USES_TO_LENGTH = arrayMethodUsesToLength(FIND); + +// Shouldn't skip holes +if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; }); + +// `Array.prototype.find` method +// https://tc39.github.io/ecma262/#sec-array.prototype.find +$({ target: 'Array', proto: true, forced: SKIPS_HOLES || !USES_TO_LENGTH }, { + find: function find(callbackfn /* , that = undefined */) { + return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables(FIND); + + +/***/ }), + +/***/ "7f9a": +/***/ (function(module, exports, __webpack_require__) { + +var global = __webpack_require__("da84"); +var inspectSource = __webpack_require__("8925"); + +var WeakMap = global.WeakMap; + +module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap)); + + +/***/ }), + +/***/ "825a": +/***/ (function(module, exports, __webpack_require__) { + +var isObject = __webpack_require__("861d"); + +module.exports = function (it) { + if (!isObject(it)) { + throw TypeError(String(it) + ' is not an object'); + } return it; +}; + + +/***/ }), + +/***/ "83ab": +/***/ (function(module, exports, __webpack_require__) { + +var fails = __webpack_require__("d039"); + +// Thank's IE8 for his funny defineProperty +module.exports = !fails(function () { + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; +}); + + +/***/ }), + +/***/ "8418": +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var toPrimitive = __webpack_require__("c04e"); +var definePropertyModule = __webpack_require__("9bf2"); +var createPropertyDescriptor = __webpack_require__("5c6c"); + +module.exports = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); + else object[propertyKey] = value; +}; + + +/***/ }), + +/***/ "861d": +/***/ (function(module, exports) { + +module.exports = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; +}; + + +/***/ }), + +/***/ "8875": +/***/ (function(module, exports, __webpack_require__) { + +var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// addapted from the document.currentScript polyfill by Adam Miller +// MIT license +// source: https://github.com/amiller-gh/currentScript-polyfill + +// added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505 + +(function (root, factory) { + if (true) { + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), + __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? + (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), + __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else {} +}(typeof self !== 'undefined' ? self : this, function () { + function getCurrentScript () { + if (document.currentScript) { + return document.currentScript + } + + // IE 8-10 support script readyState + // IE 11+ & Firefox support stack trace + try { + throw new Error(); + } + catch (err) { + // Find the second match for the "at" string to get file src url from stack. + var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig, + ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig, + stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack), + scriptLocation = (stackDetails && stackDetails[1]) || false, + line = (stackDetails && stackDetails[2]) || false, + currentLocation = document.location.href.replace(document.location.hash, ''), + pageSource, + inlineScriptSourceRegExp, + inlineScriptSource, + scripts = document.getElementsByTagName('script'); // Live NodeList collection + + if (scriptLocation === currentLocation) { + pageSource = document.documentElement.outerHTML; + inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*\r\n\r\n\r\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./VueCronEditorBootstrap.vue?vue&type=template&id=0a36a7b8&\"\nimport script from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\nexport * from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","'use strict';\nvar $ = require('../internals/export');\nvar isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toLength = require('../internals/to-length');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar createProperty = require('../internals/create-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 });\n\nvar SPECIES = wellKnownSymbol('species');\nvar nativeSlice = [].slice;\nvar max = Math.max;\n\n// `Array.prototype.slice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.slice\n// fallback for not array-like ES3 strings and DOM objects\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n slice: function slice(start, end) {\n var O = toIndexedObject(this);\n var length = toLength(O.length);\n var k = toAbsoluteIndex(start, length);\n var fin = toAbsoluteIndex(end === undefined ? length : end, length);\n // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible\n var Constructor, result, n;\n if (isArray(O)) {\n Constructor = O.constructor;\n // cross-realm fallback\n if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {\n Constructor = undefined;\n } else if (isObject(Constructor)) {\n Constructor = Constructor[SPECIES];\n if (Constructor === null) Constructor = undefined;\n }\n if (Constructor === Array || Constructor === undefined) {\n return nativeSlice.call(O, k, fin);\n }\n }\n result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));\n for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);\n result.length = n;\n return result;\n }\n});\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/vueCronEditorBootstrap.umd.min.js b/dist/vueCronEditorBootstrap.umd.min.js new file mode 100644 index 0000000..71b3a63 --- /dev/null +++ b/dist/vueCronEditorBootstrap.umd.min.js @@ -0,0 +1,34 @@ +(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e(require("vue")):"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["vueCronEditorBootstrap"]=e(require("vue")):t["vueCronEditorBootstrap"]=e(t["Vue"])})("undefined"!==typeof self?self:this,(function(t){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="fb15")}({"01a8":function(t,e,n){"use strict";var r=this&&this.__assign||function(){return r=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=e&&t<=n},s=function(t,e,n){var r=t.split("-");switch(r.length){case 1:return i(t)||a(o(t),e,n);case 2:var u=r.map((function(t){return o(t)})),s=u[0],c=u[1];return s<=c&&a(s,e,n)&&a(c,e,n);default:return!1}},c=function(t){return void 0===t||-1===t.search(/[^\d]/)},p=function(t,e,n){if(-1!==t.search(/[^\d-,\/*]/))return!1;var r=t.split(",");return r.every((function(t){var r=t.split("/");if(t.trim().endsWith("/"))return!1;if(r.length>2)return!1;var o=r[0],i=r[1];return s(o,e,n)&&c(i)}))},l=function(t){return p(t,0,59)},f=function(t){return p(t,0,59)},d=function(t){return p(t,0,23)},h=function(t,e){return e&&u(t)||p(t,1,31)},y={jan:"1",feb:"2",mar:"3",apr:"4",may:"5",jun:"6",jul:"7",aug:"8",sep:"9",oct:"10",nov:"11",dec:"12"},m=function(t,e){if(-1!==t.search(/\/[a-zA-Z]/))return!1;if(e){var n=t.toLowerCase().replace(/[a-z]{3}/g,(function(t){return void 0===y[t]?t:y[t]}));return p(n,1,12)}return p(t,1,12)},v={sun:"0",mon:"1",tue:"2",wed:"3",thu:"4",fri:"5",sat:"6"},b=function(t,e,n){if(n&&u(t))return!0;if(!n&&u(t))return!1;if(-1!==t.search(/\/[a-zA-Z]/))return!1;if(e){var r=t.toLowerCase().replace(/[a-z]{3}/g,(function(t){return void 0===v[t]?t:v[t]}));return p(r,0,6)}return p(t,0,6)},g=function(t,e,n){return!(n&&u(t)&&u(e))},O=function(t){return t.trim().split(/\s+/)},T={alias:!1,seconds:!1,allowBlankDay:!1};e.isValidCron=function(t,e){e=r(r({},T),e);var n=O(t);if(n.length>(e.seconds?6:5)||n.length<5)return!1;var o=[];if(6===n.length){var i=n.shift();i&&o.push(l(i))}var u=n[0],a=n[1],s=n[2],c=n[3],p=n[4];return o.push(f(u)),o.push(d(a)),o.push(h(s,e.allowBlankDay)),o.push(m(c,e.alias)),o.push(b(p,e.alias,e.allowBlankDay)),o.push(g(s,p,e.allowBlankDay)),o.every(Boolean)}},"0366":function(t,e,n){var r=n("1c0b");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},"057f":function(t,e,n){var r=n("fc6a"),o=n("241c").f,i={}.toString,u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(t){try{return o(t)}catch(e){return u.slice()}};t.exports.f=function(t){return u&&"[object Window]"==i.call(t)?a(t):o(r(t))}},"06cf":function(t,e,n){var r=n("83ab"),o=n("d1e7"),i=n("5c6c"),u=n("fc6a"),a=n("c04e"),s=n("5135"),c=n("0cfb"),p=Object.getOwnPropertyDescriptor;e.f=r?p:function(t,e){if(t=u(t),e=a(e,!0),c)try{return p(t,e)}catch(n){}if(s(t,e))return i(!o.f.call(t,e),t[e])}},"0cfb":function(t,e,n){var r=n("83ab"),o=n("d039"),i=n("cc12");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},"122c":function(t,e,n){(function(e,n){t.exports=n()})("undefined"!==typeof self&&self,(function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=6)}([function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(1),o=n(2),i=function(){function t(e,n){this.expression=e,this.options=n,this.expressionParts=new Array(5),t.locales[n.locale]?this.i18n=t.locales[n.locale]:(console.warn("Locale '"+n.locale+"' could not be found; falling back to 'en'."),this.i18n=t.locales["en"]),void 0===n.use24HourTimeFormat&&(n.use24HourTimeFormat=this.i18n.use24HourTimeFormatByDefault())}return t.toString=function(e,n){var r=void 0===n?{}:n,o=r.throwExceptionOnParseError,i=void 0===o||o,u=r.verbose,a=void 0!==u&&u,s=r.dayOfWeekStartIndexZero,c=void 0===s||s,p=r.use24HourTimeFormat,l=r.locale,f=void 0===l?"en":l,d={throwExceptionOnParseError:i,verbose:a,dayOfWeekStartIndexZero:c,use24HourTimeFormat:p,locale:f},h=new t(e,d);return h.getFullDescription()},t.initialize=function(e){t.specialCharacters=["/","-",",","*"],e.load(t.locales)},t.prototype.getFullDescription=function(){var t="";try{var e=new o.CronParser(this.expression,this.options.dayOfWeekStartIndexZero);this.expressionParts=e.parse();var n=this.getTimeOfDayDescription(),r=this.getDayOfMonthDescription(),i=this.getMonthDescription(),u=this.getDayOfWeekDescription(),a=this.getYearDescription();t+=n+r+u+i+a,t=this.transformVerbosity(t,this.options.verbose),t=t.charAt(0).toLocaleUpperCase()+t.substr(1)}catch(s){if(this.options.throwExceptionOnParseError)throw""+s;t=this.i18n.anErrorOccuredWhenGeneratingTheExpressionD()}return t},t.prototype.getTimeOfDayDescription=function(){var e=this.expressionParts[0],n=this.expressionParts[1],o=this.expressionParts[2],i="";if(r.StringUtilities.containsAny(n,t.specialCharacters)||r.StringUtilities.containsAny(o,t.specialCharacters)||r.StringUtilities.containsAny(e,t.specialCharacters))if(e||!(n.indexOf("-")>-1)||n.indexOf(",")>-1||n.indexOf("/")>-1||r.StringUtilities.containsAny(o,t.specialCharacters))if(!e&&o.indexOf(",")>-1&&-1==o.indexOf("-")&&-1==o.indexOf("/")&&!r.StringUtilities.containsAny(n,t.specialCharacters)){var u=o.split(",");i+=this.i18n.at();for(var a=0;a0&&c.length>0&&(i+=", "),i+=c,i.length>0&&p.length>0&&(i+=", "),i+=p}else{var l=n.split("-");i+=r.StringUtilities.format(this.i18n.everyMinuteBetweenX0AndX1(),this.formatTime(o,l[0],""),this.formatTime(o,l[1],""))}else i+=this.i18n.atSpace()+this.formatTime(o,n,e);return i},t.prototype.getSecondsDescription=function(){var t=this,e=this.getSegmentDescription(this.expressionParts[0],this.i18n.everySecond(),(function(t){return t}),(function(e){return r.StringUtilities.format(t.i18n.everyX0Seconds(),e)}),(function(e){return t.i18n.secondsX0ThroughX1PastTheMinute()}),(function(e){return"0"==e?"":parseInt(e)<20?t.i18n.atX0SecondsPastTheMinute():t.i18n.atX0SecondsPastTheMinuteGt20()||t.i18n.atX0SecondsPastTheMinute()}));return e},t.prototype.getMinutesDescription=function(){var t=this,e=this.expressionParts[0],n=this.expressionParts[2],o=this.getSegmentDescription(this.expressionParts[1],this.i18n.everyMinute(),(function(t){return t}),(function(e){return r.StringUtilities.format(t.i18n.everyX0Minutes(),e)}),(function(e){return t.i18n.minutesX0ThroughX1PastTheHour()}),(function(r){try{return"0"==r&&-1==n.indexOf("/")&&""==e?t.i18n.everyHour():parseInt(r)<20?t.i18n.atX0MinutesPastTheHour():t.i18n.atX0MinutesPastTheHourGt20()||t.i18n.atX0MinutesPastTheHour()}catch(o){return t.i18n.atX0MinutesPastTheHour()}}));return o},t.prototype.getHoursDescription=function(){var t=this,e=this.expressionParts[2],n=this.getSegmentDescription(e,this.i18n.everyHour(),(function(e){return t.formatTime(e,"0","")}),(function(e){return r.StringUtilities.format(t.i18n.everyX0Hours(),e)}),(function(e){return t.i18n.betweenX0AndX1()}),(function(e){return t.i18n.atX0()}));return n},t.prototype.getDayOfWeekDescription=function(){var t=this,e=this.i18n.daysOfTheWeek(),n=null;return n="*"==this.expressionParts[5]?"":this.getSegmentDescription(this.expressionParts[5],this.i18n.commaEveryDay(),(function(t){var n=t;return t.indexOf("#")>-1?n=t.substr(0,t.indexOf("#")):t.indexOf("L")>-1&&(n=n.replace("L","")),e[parseInt(n)]}),(function(e){return 1==parseInt(e)?"":r.StringUtilities.format(t.i18n.commaEveryX0DaysOfTheWeek(),e)}),(function(e){return t.i18n.commaX0ThroughX1()}),(function(e){var n=null;if(e.indexOf("#")>-1){var r=e.substring(e.indexOf("#")+1),o=null;switch(r){case"1":o=t.i18n.first();break;case"2":o=t.i18n.second();break;case"3":o=t.i18n.third();break;case"4":o=t.i18n.fourth();break;case"5":o=t.i18n.fifth();break}n=t.i18n.commaOnThe()+o+t.i18n.spaceX0OfTheMonth()}else if(e.indexOf("L")>-1)n=t.i18n.commaOnTheLastX0OfTheMonth();else{var i="*"!=t.expressionParts[3];n=i?t.i18n.commaAndOnX0():t.i18n.commaOnlyOnX0()}return n})),n},t.prototype.getMonthDescription=function(){var t=this,e=this.i18n.monthsOfTheYear(),n=this.getSegmentDescription(this.expressionParts[4],"",(function(t){return e[parseInt(t)-1]}),(function(e){return 1==parseInt(e)?"":r.StringUtilities.format(t.i18n.commaEveryX0Months(),e)}),(function(e){return t.i18n.commaMonthX0ThroughMonthX1()||t.i18n.commaX0ThroughX1()}),(function(e){return t.i18n.commaOnlyInMonthX0?t.i18n.commaOnlyInMonthX0():t.i18n.commaOnlyInX0()}));return n},t.prototype.getDayOfMonthDescription=function(){var t=this,e=null,n=this.expressionParts[3];switch(n){case"L":e=this.i18n.commaOnTheLastDayOfTheMonth();break;case"WL":case"LW":e=this.i18n.commaOnTheLastWeekdayOfTheMonth();break;default:var o=n.match(/(\d{1,2}W)|(W\d{1,2})/);if(o){var i=parseInt(o[0].replace("W","")),u=1==i?this.i18n.firstWeekday():r.StringUtilities.format(this.i18n.weekdayNearestDayX0(),i.toString());e=r.StringUtilities.format(this.i18n.commaOnTheX0OfTheMonth(),u);break}var a=n.match(/L-(\d{1,2})/);if(a){var s=a[1];e=r.StringUtilities.format(this.i18n.commaDaysBeforeTheLastDayOfTheMonth(),s);break}if("*"==n&&"*"!=this.expressionParts[5])return"";e=this.getSegmentDescription(n,this.i18n.commaEveryDay(),(function(e){return"L"==e?t.i18n.lastDay():t.i18n.dayX0?r.StringUtilities.format(t.i18n.dayX0(),e):e}),(function(e){return"1"==e?t.i18n.commaEveryDay():t.i18n.commaEveryX0Days()}),(function(e){return t.i18n.commaBetweenDayX0AndX1OfTheMonth()}),(function(e){return t.i18n.commaOnDayX0OfTheMonth()}));break}return e},t.prototype.getYearDescription=function(){var t=this,e=this.getSegmentDescription(this.expressionParts[6],"",(function(t){return/^\d+$/.test(t)?new Date(parseInt(t),1).getFullYear().toString():t}),(function(e){return r.StringUtilities.format(t.i18n.commaEveryX0Years(),e)}),(function(e){return t.i18n.commaYearX0ThroughYearX1()||t.i18n.commaX0ThroughX1()}),(function(e){return t.i18n.commaOnlyInYearX0?t.i18n.commaOnlyInYearX0():t.i18n.commaOnlyInX0()}));return e},t.prototype.getSegmentDescription=function(t,e,n,o,i,u){var a=this,s=null;if(t)if("*"===t)s=e;else if(r.StringUtilities.containsAny(t,["/","-",","]))if(t.indexOf("/")>-1){var c=t.split("/");if(s=r.StringUtilities.format(o(c[1]),c[1]),c[0].indexOf("-")>-1){var p=this.generateBetweenSegmentDescription(c[0],i,n);0!=p.indexOf(", ")&&(s+=", "),s+=p}else if(!r.StringUtilities.containsAny(c[0],["*",","])){var l=r.StringUtilities.format(u(c[0]),n(c[0]));l=l.replace(", ",""),s+=r.StringUtilities.format(this.i18n.commaStartingX0(),l)}}else if(t.indexOf(",")>-1){c=t.split(",");for(var f="",d=0;d0&&c.length>2&&(f+=",",d0&&c.length>1&&(d==c.length-1||2==c.length)&&(f+=this.i18n.spaceAnd()+" "),c[d].indexOf("-")>-1){p=this.generateBetweenSegmentDescription(c[d],(function(t){return a.i18n.commaX0ThroughX1()}),n);p=p.replace(", ",""),f+=p}else f+=n(c[d]);s=r.StringUtilities.format(u(t),f)}else t.indexOf("-")>-1&&(s=this.generateBetweenSegmentDescription(t,i,n));else s=r.StringUtilities.format(u(t),n(t));else s="";return s},t.prototype.generateBetweenSegmentDescription=function(t,e,n){var o="",i=t.split("-"),u=n(i[0]),a=n(i[1]);a=a.replace(":00",":59");var s=e(t);return o+=r.StringUtilities.format(s,u,a),o},t.prototype.formatTime=function(t,e,n){var r=parseInt(t),o="",i=!1;this.options.use24HourTimeFormat||(i=this.i18n.setPeriodBeforeTime&&this.i18n.setPeriodBeforeTime(),o=i?this.getPeriod(r)+" ":" "+this.getPeriod(r),r>12&&(r-=12),0===r&&(r=12));var u=e,a="";return n&&(a=":"+("00"+n).substring(n.length)),""+(i?o:"")+("00"+r.toString()).substring(r.toString().length)+":"+("00"+u.toString()).substring(u.toString().length)+a+(i?"":o)},t.prototype.transformVerbosity=function(t,e){return e||(t=t.replace(new RegExp(", "+this.i18n.everyMinute(),"g"),""),t=t.replace(new RegExp(", "+this.i18n.everyHour(),"g"),""),t=t.replace(new RegExp(this.i18n.commaEveryDay(),"g"),""),t=t.replace(/\, ?$/,"")),t},t.prototype.getPeriod=function(t){return t>=12?this.i18n.pm&&this.i18n.pm()||"PM":this.i18n.am&&this.i18n.am()||"AM"},t.locales={},t}();e.ExpressionDescriptor=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.format=function(t){for(var e=[],n=1;n-1}))},t}();e.StringUtilities=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){void 0===e&&(e=!0),this.expression=t,this.dayOfWeekStartIndexZero=e}return t.prototype.parse=function(){var t=this.extractParts(this.expression);return this.normalize(t),this.validate(t),t},t.prototype.extractParts=function(t){if(!this.expression)throw new Error("Expression is empty");var e=t.trim().split(/[ ]+/);if(e.length<5)throw new Error("Expression has only "+e.length+" part"+(1==e.length?"":"s")+". At least 5 parts are required.");if(5==e.length)e.unshift(""),e.push("");else if(6==e.length)/\d{4}$/.test(e[5])?e.unshift(""):e.push("");else if(e.length>7)throw new Error("Expression has "+e.length+" parts; too many!");return e},t.prototype.normalize=function(t){var e=this;if(t[3]=t[3].replace("?","*"),t[5]=t[5].replace("?","*"),t[2]=t[2].replace("?","*"),0==t[0].indexOf("0/")&&(t[0]=t[0].replace("0/","*/")),0==t[1].indexOf("0/")&&(t[1]=t[1].replace("0/","*/")),0==t[2].indexOf("0/")&&(t[2]=t[2].replace("0/","*/")),0==t[3].indexOf("1/")&&(t[3]=t[3].replace("1/","*/")),0==t[4].indexOf("1/")&&(t[4]=t[4].replace("1/","*/")),0==t[5].indexOf("1/")&&(t[5]=t[5].replace("1/","*/")),0==t[6].indexOf("1/")&&(t[6]=t[6].replace("1/","*/")),t[5]=t[5].replace(/(^\d)|([^#/\s]\d)/g,(function(t){var n=t.replace(/\D/,""),r=n;return e.dayOfWeekStartIndexZero?"7"==n&&(r="0"):r=(parseInt(n)-1).toString(),t.replace(n,r)})),"L"==t[5]&&(t[5]="6"),"?"==t[3]&&(t[3]="*"),t[3].indexOf("W")>-1&&(t[3].indexOf(",")>-1||t[3].indexOf("-")>-1))throw new Error("The 'W' character can be specified only when the day-of-month is a single day, not a range or list of days.");var n={SUN:0,MON:1,TUE:2,WED:3,THU:4,FRI:5,SAT:6};for(var r in n)t[5]=t[5].replace(new RegExp(r,"gi"),n[r].toString());var o={JAN:1,FEB:2,MAR:3,APR:4,MAY:5,JUN:6,JUL:7,AUG:8,SEP:9,OCT:10,NOV:11,DEC:12};for(var i in o)t[4]=t[4].replace(new RegExp(i,"gi"),o[i].toString());"0"==t[0]&&(t[0]=""),/\*|\-|\,|\//.test(t[2])||!/\*|\//.test(t[1])&&!/\*|\//.test(t[0])||(t[2]+="-"+t[2]);for(var u=0;u-1&&!/^\*|\-|\,/.test(t[u])){var a=null;switch(u){case 4:a="12";break;case 5:a="6";break;case 6:a="9999";break;default:a=null;break}if(null!=a){var s=t[u].split("/");t[u]=s[0]+"-"+a+"/"+s[1]}}},t.prototype.validate=function(t){this.assertNoInvalidCharacters("DOW",t[5]),this.assertNoInvalidCharacters("DOM",t[3])},t.prototype.assertNoInvalidCharacters=function(t,e){var n=e.match(/[A-KM-VX-Z]+/gi);if(n&&n.length)throw new Error(t+" part contains invalid values: '"+n.toString()+"'")},t}();e.CronParser=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"An error occured when generating the expression description. Check the cron expression syntax."},t.prototype.everyMinute=function(){return"every minute"},t.prototype.everyHour=function(){return"every hour"},t.prototype.atSpace=function(){return"At "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Every minute between %s and %s"},t.prototype.at=function(){return"At"},t.prototype.spaceAnd=function(){return" and"},t.prototype.everySecond=function(){return"every second"},t.prototype.everyX0Seconds=function(){return"every %s seconds"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"seconds %s through %s past the minute"},t.prototype.atX0SecondsPastTheMinute=function(){return"at %s seconds past the minute"},t.prototype.everyX0Minutes=function(){return"every %s minutes"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutes %s through %s past the hour"},t.prototype.atX0MinutesPastTheHour=function(){return"at %s minutes past the hour"},t.prototype.everyX0Hours=function(){return"every %s hours"},t.prototype.betweenX0AndX1=function(){return"between %s and %s"},t.prototype.atX0=function(){return"at %s"},t.prototype.commaEveryDay=function(){return", every day"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", every %s days of the week"},t.prototype.commaX0ThroughX1=function(){return", %s through %s"},t.prototype.first=function(){return"first"},t.prototype.second=function(){return"second"},t.prototype.third=function(){return"third"},t.prototype.fourth=function(){return"fourth"},t.prototype.fifth=function(){return"fifth"},t.prototype.commaOnThe=function(){return", on the "},t.prototype.spaceX0OfTheMonth=function(){return" %s of the month"},t.prototype.lastDay=function(){return"the last day"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", on the last %s of the month"},t.prototype.commaOnlyOnX0=function(){return", only on %s"},t.prototype.commaAndOnX0=function(){return", and on %s"},t.prototype.commaEveryX0Months=function(){return", every %s months"},t.prototype.commaOnlyInX0=function(){return", only in %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", on the last day of the month"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", on the last weekday of the month"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s days before the last day of the month"},t.prototype.firstWeekday=function(){return"first weekday"},t.prototype.weekdayNearestDayX0=function(){return"weekday nearest day %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", on the %s of the month"},t.prototype.commaEveryX0Days=function(){return", every %s days"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", between day %s and %s of the month"},t.prototype.commaOnDayX0OfTheMonth=function(){return", on day %s of the month"},t.prototype.commaEveryHour=function(){return", every hour"},t.prototype.commaEveryX0Years=function(){return", every %s years"},t.prototype.commaStartingX0=function(){return", starting %s"},t.prototype.daysOfTheWeek=function(){return["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},t.prototype.monthsOfTheYear=function(){return["January","February","March","April","May","June","July","August","September","October","November","December"]},t}();e.en=r},,,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(0),o=n(7);r.ExpressionDescriptor.initialize(new o.allLocalesLoader),e.default=r.ExpressionDescriptor;var i=r.ExpressionDescriptor.toString;e.toString=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(8),o=function(){function t(){}return t.prototype.load=function(t){for(var e in r)r.hasOwnProperty(e)&&(t[e]=new r[e])},t}();e.allLocalesLoader=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(3);e.en=r.en;var o=n(9);e.da=o.da;var i=n(10);e.de=i.de;var u=n(11);e.es=u.es;var a=n(12);e.fr=a.fr;var s=n(13);e.it=s.it;var c=n(14);e.ko=c.ko;var p=n(15);e.nl=p.nl;var l=n(16);e.nb=l.nb;var f=n(17);e.sv=f.sv;var d=n(18);e.pl=d.pl;var h=n(19);e.pt_BR=h.pt_BR;var y=n(20);e.ro=y.ro;var m=n(21);e.ru=m.ru;var v=n(22);e.tr=v.tr;var b=n(23);e.uk=b.uk;var g=n(24);e.zh_CN=g.zh_CN;var O=n(25);e.zh_TW=O.zh_TW;var T=n(26);e.ja=T.ja;var X=n(27);e.he=X.he;var S=n(28);e.cs=S.cs;var w=n(29);e.sk=w.sk;var M=n(30);e.fi=M.fi;var k=n(31);e.sl=k.sl;var D=n(32);e.sw=D.sw;var P=n(33);e.fa=P.fa},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."},t.prototype.at=function(){return"kl"},t.prototype.atSpace=function(){return"kl "},t.prototype.atX0=function(){return"kl %s"},t.prototype.atX0MinutesPastTheHour=function(){return"%s minutter efter timeskift"},t.prototype.atX0SecondsPastTheMinute=function(){return"%s sekunder efter minutskift"},t.prototype.betweenX0AndX1=function(){return"mellem %s og %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellem dag %s og %s i måneden"},t.prototype.commaEveryDay=function(){return", hver dag"},t.prototype.commaEveryX0Days=function(){return", hver %s. dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s. ugedag"},t.prototype.commaEveryX0Months=function(){return", hver %s. måned"},t.prototype.commaEveryX0Years=function(){return", hvert %s. år"},t.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s i måneden"},t.prototype.commaOnlyInX0=function(){return", kun i %s"},t.prototype.commaOnlyOnX0=function(){return", kun på %s"},t.prototype.commaAndOnX0=function(){return", og på %s"},t.prototype.commaOnThe=function(){return", på den "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den sidste dag i måneden"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", på den sidste hverdag i måneden"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dage før den sidste dag i måneden"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den sidste %s i måneden"},t.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s i måneden"},t.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},t.prototype.everyHour=function(){return"hver time"},t.prototype.everyMinute=function(){return"hvert minut"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"hvert minut mellem %s og %s"},t.prototype.everySecond=function(){return"hvert sekund"},t.prototype.everyX0Hours=function(){return"hver %s. time"},t.prototype.everyX0Minutes=function(){return"hvert %s. minut"},t.prototype.everyX0Seconds=function(){return"hvert %s. sekund"},t.prototype.fifth=function(){return"femte"},t.prototype.first=function(){return"første"},t.prototype.firstWeekday=function(){return"første hverdag"},t.prototype.fourth=function(){return"fjerde"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutterne fra %s til og med %s hver time"},t.prototype.second=function(){return"anden"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunderne fra %s til og med %s hvert minut"},t.prototype.spaceAnd=function(){return" og"},t.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},t.prototype.lastDay=function(){return"sidste dag"},t.prototype.third=function(){return"tredje"},t.prototype.weekdayNearestDayX0=function(){return"hverdag nærmest dag %s"},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaStartingX0=function(){return", startende %s"},t.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},t.prototype.monthsOfTheYear=function(){return["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"]},t}();e.da=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"jede Minute"},t.prototype.everyHour=function(){return"jede Stunde"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."},t.prototype.atSpace=function(){return"Um "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Jede Minute zwischen %s und %s"},t.prototype.at=function(){return"Um"},t.prototype.spaceAnd=function(){return" und"},t.prototype.everySecond=function(){return"Jede Sekunde"},t.prototype.everyX0Seconds=function(){return"alle %s Sekunden"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"Sekunden %s bis %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"bei Sekunde %s"},t.prototype.everyX0Minutes=function(){return"alle %s Minuten"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"Minuten %s bis %s"},t.prototype.atX0MinutesPastTheHour=function(){return"bei Minute %s"},t.prototype.everyX0Hours=function(){return"alle %s Stunden"},t.prototype.betweenX0AndX1=function(){return"zwischen %s und %s"},t.prototype.atX0=function(){return"um %s"},t.prototype.commaEveryDay=function(){return", jeden Tag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", alle %s Tage der Woche"},t.prototype.commaX0ThroughX1=function(){return", %s bis %s"},t.prototype.first=function(){return"ersten"},t.prototype.second=function(){return"zweiten"},t.prototype.third=function(){return"dritten"},t.prototype.fourth=function(){return"vierten"},t.prototype.fifth=function(){return"fünften"},t.prototype.commaOnThe=function(){return", am "},t.prototype.spaceX0OfTheMonth=function(){return" %s des Monats"},t.prototype.lastDay=function(){return"der letzte Tag"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", am letzten %s des Monats"},t.prototype.commaOnlyOnX0=function(){return", nur am %s"},t.prototype.commaAndOnX0=function(){return", und am %s"},t.prototype.commaEveryX0Months=function(){return", alle %s Monate"},t.prototype.commaOnlyInX0=function(){return", nur im %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", am letzten Tag des Monats"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", am letzten Werktag des Monats"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s tage vor dem letzten Tag des Monats"},t.prototype.firstWeekday=function(){return"ersten Werktag"},t.prototype.weekdayNearestDayX0=function(){return"Werktag am nächsten zum %s Tag"},t.prototype.commaOnTheX0OfTheMonth=function(){return", am %s des Monats"},t.prototype.commaEveryX0Days=function(){return", alle %s Tage"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", zwischen Tag %s und %s des Monats"},t.prototype.commaOnDayX0OfTheMonth=function(){return", am %s Tag des Monats"},t.prototype.commaEveryX0Years=function(){return", alle %s Jahre"},t.prototype.commaStartingX0=function(){return", beginnend %s"},t.prototype.daysOfTheWeek=function(){return["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},t.prototype.monthsOfTheYear=function(){return["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]},t}();e.de=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron."},t.prototype.at=function(){return"A las"},t.prototype.atSpace=function(){return"A las "},t.prototype.atX0=function(){return"a las %s"},t.prototype.atX0MinutesPastTheHour=function(){return"a los %s minutos de la hora"},t.prototype.atX0SecondsPastTheMinute=function(){return"a los %s segundos del minuto"},t.prototype.betweenX0AndX1=function(){return"entre las %s y las %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre los días %s y %s del mes"},t.prototype.commaEveryDay=function(){return", cada día"},t.prototype.commaEveryX0Days=function(){return", cada %s días"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", cada %s días de la semana"},t.prototype.commaEveryX0Months=function(){return", cada %s meses"},t.prototype.commaOnDayX0OfTheMonth=function(){return", el día %s del mes"},t.prototype.commaOnlyInX0=function(){return", sólo en %s"},t.prototype.commaOnlyOnX0=function(){return", sólo el %s"},t.prototype.commaAndOnX0=function(){return", y el %s"},t.prototype.commaOnThe=function(){return", en el "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", en el último día del mes"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", en el último día de la semana del mes"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s días antes del último día del mes"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", en el último %s del mes"},t.prototype.commaOnTheX0OfTheMonth=function(){return", en el %s del mes"},t.prototype.commaX0ThroughX1=function(){return", de %s a %s"},t.prototype.everyHour=function(){return"cada hora"},t.prototype.everyMinute=function(){return"cada minuto"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"cada minuto entre las %s y las %s"},t.prototype.everySecond=function(){return"cada segundo"},t.prototype.everyX0Hours=function(){return"cada %s horas"},t.prototype.everyX0Minutes=function(){return"cada %s minutos"},t.prototype.everyX0Seconds=function(){return"cada %s segundos"},t.prototype.fifth=function(){return"quinto"},t.prototype.first=function(){return"primero"},t.prototype.firstWeekday=function(){return"primer día de la semana"},t.prototype.fourth=function(){return"cuarto"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"del minuto %s al %s pasada la hora"},t.prototype.second=function(){return"segundo"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"En los segundos %s al %s de cada minuto"},t.prototype.spaceAnd=function(){return" y"},t.prototype.spaceX0OfTheMonth=function(){return" %s del mes"},t.prototype.lastDay=function(){return"el último día"},t.prototype.third=function(){return"tercer"},t.prototype.weekdayNearestDayX0=function(){return"día de la semana más próximo al %s"},t.prototype.commaEveryX0Years=function(){return", cada %s años"},t.prototype.commaStartingX0=function(){return", comenzando %s"},t.prototype.daysOfTheWeek=function(){return["domingo","lunes","martes","miércoles","jueves","viernes","sábado"]},t.prototype.monthsOfTheYear=function(){return["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]},t}();e.es=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"toutes les minutes"},t.prototype.everyHour=function(){return"toutes les heures"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe."},t.prototype.atSpace=function(){return"À "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Toutes les minutes entre %s et %s"},t.prototype.at=function(){return"À"},t.prototype.spaceAnd=function(){return" et"},t.prototype.everySecond=function(){return"toutes les secondes"},t.prototype.everyX0Seconds=function(){return"toutes les %s secondes"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"les secondes entre %s et %s après la minute"},t.prototype.atX0SecondsPastTheMinute=function(){return"%s secondes après la minute"},t.prototype.everyX0Minutes=function(){return"toutes les %s minutes"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"les minutes entre %s et %s après l'heure"},t.prototype.atX0MinutesPastTheHour=function(){return"%s minutes après l'heure"},t.prototype.everyX0Hours=function(){return"toutes les %s heures"},t.prototype.betweenX0AndX1=function(){return"de %s à %s"},t.prototype.atX0=function(){return"à %s"},t.prototype.commaEveryDay=function(){return", tous les jours"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", every %s days of the week"},t.prototype.commaX0ThroughX1=function(){return", de %s à %s"},t.prototype.first=function(){return"premier"},t.prototype.second=function(){return"second"},t.prototype.third=function(){return"troisième"},t.prototype.fourth=function(){return"quatrième"},t.prototype.fifth=function(){return"cinquième"},t.prototype.commaOnThe=function(){return", le "},t.prototype.spaceX0OfTheMonth=function(){return" %s du mois"},t.prototype.lastDay=function(){return"le dernier jour"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", le dernier %s du mois"},t.prototype.commaOnlyOnX0=function(){return", uniquement le %s"},t.prototype.commaAndOnX0=function(){return", et %s"},t.prototype.commaEveryX0Months=function(){return", tous les %s mois"},t.prototype.commaOnlyInX0=function(){return", uniquement en %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", le dernier jour du mois"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", le dernier jour ouvrable du mois"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s jours avant le dernier jour du mois"},t.prototype.firstWeekday=function(){return"premier jour ouvrable"},t.prototype.weekdayNearestDayX0=function(){return"jour ouvrable le plus proche du %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", le %s du mois"},t.prototype.commaEveryX0Days=function(){return", tous les %s jours"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", du %s au %s du mois"},t.prototype.commaOnDayX0OfTheMonth=function(){return", le %s du mois"},t.prototype.commaEveryX0Years=function(){return", tous les %s ans"},t.prototype.commaDaysX0ThroughX1=function(){return", du %s au %s"},t.prototype.commaStartingX0=function(){return", départ %s"},t.prototype.daysOfTheWeek=function(){return["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"]},t.prototype.monthsOfTheYear=function(){return["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"]},t}();e.fr=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron."},t.prototype.at=function(){return"Alle"},t.prototype.atSpace=function(){return"Alle "},t.prototype.atX0=function(){return"alle %s"},t.prototype.atX0MinutesPastTheHour=function(){return"al %s minuto passata l'ora"},t.prototype.atX0SecondsPastTheMinute=function(){return"al %s secondo passato il minuto"},t.prototype.betweenX0AndX1=function(){return"tra le %s e le %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tra il giorno %s e %s del mese"},t.prototype.commaEveryDay=function(){return", ogni giorno"},t.prototype.commaEveryX0Days=function(){return", ogni %s giorni"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", ogni %s giorni della settimana"},t.prototype.commaEveryX0Months=function(){return", ogni %s mesi"},t.prototype.commaEveryX0Years=function(){return", ogni %s anni"},t.prototype.commaOnDayX0OfTheMonth=function(){return", il giorno %s del mese"},t.prototype.commaOnlyInX0=function(){return", solo in %s"},t.prototype.commaOnlyOnX0=function(){return", solo il %s"},t.prototype.commaAndOnX0=function(){return", e il %s"},t.prototype.commaOnThe=function(){return", il "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", l'ultimo giorno del mese"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", nell'ultima settimana del mese"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s giorni prima dell'ultimo giorno del mese"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", l'ultimo %s del mese"},t.prototype.commaOnTheX0OfTheMonth=function(){return", il %s del mese"},t.prototype.commaX0ThroughX1=function(){return", %s al %s"},t.prototype.everyHour=function(){return"ogni ora"},t.prototype.everyMinute=function(){return"ogni minuto"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Ogni minuto tra le %s e le %s"},t.prototype.everySecond=function(){return"ogni secondo"},t.prototype.everyX0Hours=function(){return"ogni %s ore"},t.prototype.everyX0Minutes=function(){return"ogni %s minuti"},t.prototype.everyX0Seconds=function(){return"ogni %s secondi"},t.prototype.fifth=function(){return"quinto"},t.prototype.first=function(){return"primo"},t.prototype.firstWeekday=function(){return"primo giorno della settimana"},t.prototype.fourth=function(){return"quarto"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuti %s al %s dopo l'ora"},t.prototype.second=function(){return"secondo"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"secondi %s al %s oltre il minuto"},t.prototype.spaceAnd=function(){return" e"},t.prototype.spaceX0OfTheMonth=function(){return" %s del mese"},t.prototype.lastDay=function(){return"l'ultimo giorno"},t.prototype.third=function(){return"terzo"},t.prototype.weekdayNearestDayX0=function(){return"giorno della settimana più vicino al %s"},t.prototype.commaStartingX0=function(){return", a partire %s"},t.prototype.daysOfTheWeek=function(){return["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"]},t.prototype.monthsOfTheYear=function(){return["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]},t}();e.it=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.setPeriodBeforeTime=function(){return!0},t.prototype.pm=function(){return"오후"},t.prototype.am=function(){return"오전"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"표현식 설명을 생성하는 중 오류가 발생했습니다. cron 표현식 구문을 확인하십시오."},t.prototype.everyMinute=function(){return"1분마다"},t.prototype.everyHour=function(){return"1시간마다"},t.prototype.atSpace=function(){return"에서 "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"%s 및 %s 사이에 매 분"},t.prototype.at=function(){return"에서"},t.prototype.spaceAnd=function(){return" 및"},t.prototype.everySecond=function(){return"1초마다"},t.prototype.everyX0Seconds=function(){return"%s초마다"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"정분 후 %s초에서 %s초까지"},t.prototype.atX0SecondsPastTheMinute=function(){return"정분 후 %s초에서"},t.prototype.everyX0Minutes=function(){return"%s분마다"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"정시 후 %s분에서 %s까지"},t.prototype.atX0MinutesPastTheHour=function(){return"정시 후 %s분에서"},t.prototype.everyX0Hours=function(){return"%s시간마다"},t.prototype.betweenX0AndX1=function(){return"%s에서 %s 사이"},t.prototype.atX0=function(){return"%s에서"},t.prototype.commaEveryDay=function(){return", 매일"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 주 중 %s일마다"},t.prototype.commaX0ThroughX1=function(){return", %s에서 %s가지"},t.prototype.first=function(){return"첫 번째"},t.prototype.second=function(){return"두 번째"},t.prototype.third=function(){return"세 번째"},t.prototype.fourth=function(){return"네 번째"},t.prototype.fifth=function(){return"다섯 번째"},t.prototype.commaOnThe=function(){return", 해당 "},t.prototype.spaceX0OfTheMonth=function(){return" 해당 월의 %s"},t.prototype.lastDay=function(){return"마지막 날"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 해당 월의 마지막 %s"},t.prototype.commaOnlyOnX0=function(){return", %s에만"},t.prototype.commaAndOnX0=function(){return", 및 %s에"},t.prototype.commaEveryX0Months=function(){return", %s개월마다"},t.prototype.commaOnlyInX0=function(){return", %s에서만"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 해당 월의 마지막 날에"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 해당 월의 마지막 평일에"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", 해당 월의 마지막 날 %s일 전"},t.prototype.firstWeekday=function(){return"첫 번째 평일"},t.prototype.weekdayNearestDayX0=function(){return"평일 가장 가까운 날 %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 해당 월의 %s에"},t.prototype.commaEveryX0Days=function(){return", %s일마다"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 해당 월의 %s일 및 %s일 사이"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 해당 월의 %s일에"},t.prototype.commaEveryMinute=function(){return", 1분마다"},t.prototype.commaEveryHour=function(){return", 1시간마다"},t.prototype.commaEveryX0Years=function(){return", %s년마다"},t.prototype.commaStartingX0=function(){return", %s부터"},t.prototype.daysOfTheWeek=function(){return["일요일","월요일","화요일","수요일","목요일","금요일","토요일"]},t.prototype.monthsOfTheYear=function(){return["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]},t}();e.ko=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"elke minuut"},t.prototype.everyHour=function(){return"elk uur"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Er is een fout opgetreden bij het vertalen van de gegevens. Controleer de gegevens."},t.prototype.atSpace=function(){return"Op "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Elke minuut tussen %s en %s"},t.prototype.at=function(){return"Op"},t.prototype.spaceAnd=function(){return" en"},t.prototype.everySecond=function(){return"elke seconde"},t.prototype.everyX0Seconds=function(){return"elke %s seconden"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"seconden %s t/m %s na de minuut"},t.prototype.atX0SecondsPastTheMinute=function(){return"op %s seconden na de minuut"},t.prototype.everyX0Minutes=function(){return"elke %s minuten"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuut %s t/m %s na het uur"},t.prototype.atX0MinutesPastTheHour=function(){return"op %s minuten na het uur"},t.prototype.everyX0Hours=function(){return"elke %s uur"},t.prototype.betweenX0AndX1=function(){return"tussen %s en %s"},t.prototype.atX0=function(){return"op %s"},t.prototype.commaEveryDay=function(){return", elke dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", elke %s dagen van de week"},t.prototype.commaX0ThroughX1=function(){return", %s t/m %s"},t.prototype.first=function(){return"eerste"},t.prototype.second=function(){return"tweede"},t.prototype.third=function(){return"derde"},t.prototype.fourth=function(){return"vierde"},t.prototype.fifth=function(){return"vijfde"},t.prototype.commaOnThe=function(){return", op de "},t.prototype.spaceX0OfTheMonth=function(){return" %s van de maand"},t.prototype.lastDay=function(){return"de laatste dag"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", op de laatste %s van de maand"},t.prototype.commaOnlyOnX0=function(){return", alleen op %s"},t.prototype.commaAndOnX0=function(){return", en op %s"},t.prototype.commaEveryX0Months=function(){return", elke %s maanden"},t.prototype.commaOnlyInX0=function(){return", alleen in %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", op de laatste dag van de maand"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", op de laatste werkdag van de maand"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dagen vóór de laatste dag van de maand"},t.prototype.firstWeekday=function(){return"eerste werkdag"},t.prototype.weekdayNearestDayX0=function(){return"werkdag dichtst bij dag %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", op de %s van de maand"},t.prototype.commaEveryX0Days=function(){return", elke %s dagen"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tussen dag %s en %s van de maand"},t.prototype.commaOnDayX0OfTheMonth=function(){return", op dag %s van de maand"},t.prototype.commaEveryX0Years=function(){return", elke %s jaren"},t.prototype.commaStartingX0=function(){return", beginnend %s"},t.prototype.daysOfTheWeek=function(){return["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"]},t.prototype.monthsOfTheYear=function(){return["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"]},t}();e.nl=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."},t.prototype.at=function(){return"Kl."},t.prototype.atSpace=function(){return"Kl."},t.prototype.atX0=function(){return"på %s"},t.prototype.atX0MinutesPastTheHour=function(){return"på %s minutter etter timen"},t.prototype.atX0SecondsPastTheMinute=function(){return"på %s sekunder etter minuttet"},t.prototype.betweenX0AndX1=function(){return"mellom %s og %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellom dag %s og %s av måneden"},t.prototype.commaEveryDay=function(){return", hver dag"},t.prototype.commaEveryX0Days=function(){return", hver %s dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s ukedag"},t.prototype.commaEveryX0Months=function(){return", hver %s måned"},t.prototype.commaEveryX0Years=function(){return", hvert %s år"},t.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s av måneden"},t.prototype.commaOnlyInX0=function(){return", bare i %s"},t.prototype.commaOnlyOnX0=function(){return", på %s"},t.prototype.commaAndOnX0=function(){return", og på %s"},t.prototype.commaOnThe=function(){return", på "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den siste dagen i måneden"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", den siste ukedagen i måneden"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dager før den siste dagen i måneden"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den siste %s av måneden"},t.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s av måneden"},t.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},t.prototype.everyHour=function(){return"hver time"},t.prototype.everyMinute=function(){return"hvert minutt"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Hvert minutt mellom %s og %s"},t.prototype.everySecond=function(){return"hvert sekund"},t.prototype.everyX0Hours=function(){return"hver %s time"},t.prototype.everyX0Minutes=function(){return"hvert %s minutt"},t.prototype.everyX0Seconds=function(){return"hvert %s sekund"},t.prototype.fifth=function(){return"femte"},t.prototype.first=function(){return"første"},t.prototype.firstWeekday=function(){return"første ukedag"},t.prototype.fourth=function(){return"fjerde"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuttene fra %s til og med %s etter timen"},t.prototype.second=function(){return"sekund"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundene fra %s til og med %s etter minuttet"},t.prototype.spaceAnd=function(){return" og"},t.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},t.prototype.lastDay=function(){return"den siste dagen"},t.prototype.third=function(){return"tredje"},t.prototype.weekdayNearestDayX0=function(){return"ukedag nærmest dag %s"},t.prototype.commaStartingX0=function(){return", starter %s"},t.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},t.prototype.monthsOfTheYear=function(){return["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]},t}();e.nb=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Ett fel inträffade vid generering av uttryckets beskrivning. Kontrollera cron-uttryckets syntax."},t.prototype.everyMinute=function(){return"varje minut"},t.prototype.everyHour=function(){return"varje timme"},t.prototype.atSpace=function(){return"Kl "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Varje minut mellan %s och %s"},t.prototype.at=function(){return"Kl"},t.prototype.spaceAnd=function(){return" och"},t.prototype.everySecond=function(){return"varje sekund"},t.prototype.everyX0Seconds=function(){return"varje %s sekund"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunderna från %s till och med %s efter minuten"},t.prototype.atX0SecondsPastTheMinute=function(){return"på %s sekunder efter minuten"},t.prototype.everyX0Minutes=function(){return"var %s minut"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuterna från %s till och med %s efter timmen"},t.prototype.atX0MinutesPastTheHour=function(){return"på %s minuten efter timmen"},t.prototype.everyX0Hours=function(){return"var %s timme"},t.prototype.betweenX0AndX1=function(){return"mellan %s och %s"},t.prototype.atX0=function(){return"kl %s"},t.prototype.commaEveryDay=function(){return", varje dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", var %s dag i veckan"},t.prototype.commaX0ThroughX1=function(){return", %s till %s"},t.prototype.first=function(){return"första"},t.prototype.second=function(){return"andra"},t.prototype.third=function(){return"tredje"},t.prototype.fourth=function(){return"fjärde"},t.prototype.fifth=function(){return"femte"},t.prototype.commaOnThe=function(){return", den "},t.prototype.spaceX0OfTheMonth=function(){return" %sen av månaden"},t.prototype.lastDay=function(){return"den sista dagen"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", på sista %s av månaden"},t.prototype.commaOnlyOnX0=function(){return", varje %s"},t.prototype.commaAndOnX0=function(){return", och på %s"},t.prototype.commaEveryX0Months=function(){return", var %s månad"},t.prototype.commaOnlyInX0=function(){return", bara på %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", på sista dagen av månaden"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", på sista veckodag av månaden"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dagar före den sista dagen i månaden"},t.prototype.firstWeekday=function(){return"första veckodag"},t.prototype.weekdayNearestDayX0=function(){return"veckodagen närmast dag %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s av månaden"},t.prototype.commaEveryX0Days=function(){return", var %s dag"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellan dag %s och %s av månaden"},t.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s av månaden"},t.prototype.commaEveryX0Years=function(){return", var %s år"},t.prototype.commaStartingX0=function(){return", startar %s"},t.prototype.daysOfTheWeek=function(){return["söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag"]},t.prototype.monthsOfTheYear=function(){return["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"]},t}();e.sv=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Wystąpił błąd podczas generowania opisu wyrażenia cron. Sprawdź składnię wyrażenia cron."},t.prototype.at=function(){return"O"},t.prototype.atSpace=function(){return"O "},t.prototype.atX0=function(){return"o %s"},t.prototype.atX0MinutesPastTheHour=function(){return"w %s minucie"},t.prototype.atX0SecondsPastTheMinute=function(){return"w %s sekundzie"},t.prototype.betweenX0AndX1=function(){return"od %s do %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", od %s-ego do %s-ego dnia miesiąca"},t.prototype.commaEveryDay=function(){return", co dzień"},t.prototype.commaEveryX0Days=function(){return", co %s dni"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", co %s dni tygodnia"},t.prototype.commaEveryX0Months=function(){return", co %s miesięcy"},t.prototype.commaEveryX0Years=function(){return", co %s lat"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s-ego dnia miesiąca"},t.prototype.commaOnlyInX0=function(){return", tylko %s"},t.prototype.commaOnlyOnX0=function(){return", tylko %s"},t.prototype.commaAndOnX0=function(){return", i %s"},t.prototype.commaOnThe=function(){return", "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", ostatni dzień miesiąca"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", ostatni dzień roboczy miesiąca"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dni przed ostatnim dniem miesiąca"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", ostatni %s miesiąca"},t.prototype.commaOnTheX0OfTheMonth=function(){return", %s miesiąca"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.everyHour=function(){return"co godzinę"},t.prototype.everyMinute=function(){return"co minutę"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Co minutę od %s do %s"},t.prototype.everySecond=function(){return"co sekundę"},t.prototype.everyX0Hours=function(){return"co %s godzin"},t.prototype.everyX0Minutes=function(){return"co %s minut"},t.prototype.everyX0Seconds=function(){return"co %s sekund"},t.prototype.fifth=function(){return"piąty"},t.prototype.first=function(){return"pierwszy"},t.prototype.firstWeekday=function(){return"pierwszy dzień roboczy"},t.prototype.fourth=function(){return"czwarty"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuty od %s do %s"},t.prototype.second=function(){return"drugi"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundy od %s do %s"},t.prototype.spaceAnd=function(){return" i"},t.prototype.spaceX0OfTheMonth=function(){return" %s miesiąca"},t.prototype.lastDay=function(){return"ostatni dzień"},t.prototype.third=function(){return"trzeci"},t.prototype.weekdayNearestDayX0=function(){return"dzień roboczy najbliższy %s-ego dnia"},t.prototype.commaStartingX0=function(){return", startowy %s"},t.prototype.daysOfTheWeek=function(){return["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"]},t.prototype.monthsOfTheYear=function(){return["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"]},t}();e.pl=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Ocorreu um erro ao gerar a descrição da expressão Cron."},t.prototype.at=function(){return"às"},t.prototype.atSpace=function(){return"às "},t.prototype.atX0=function(){return"Às %s"},t.prototype.atX0MinutesPastTheHour=function(){return"aos %s minutos da hora"},t.prototype.atX0SecondsPastTheMinute=function(){return"aos %s segundos do minuto"},t.prototype.betweenX0AndX1=function(){return"entre %s e %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre os dias %s e %s do mês"},t.prototype.commaEveryDay=function(){return", a cada dia"},t.prototype.commaEveryX0Days=function(){return", a cada %s dias"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", a cada %s dias de semana"},t.prototype.commaEveryX0Months=function(){return", a cada %s meses"},t.prototype.commaOnDayX0OfTheMonth=function(){return", no dia %s do mês"},t.prototype.commaOnlyInX0=function(){return", somente em %s"},t.prototype.commaOnlyOnX0=function(){return", somente de %s"},t.prototype.commaAndOnX0=function(){return", e de %s"},t.prototype.commaOnThe=function(){return", na "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", no último dia do mês"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", no último dia da semana do mês"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dias antes do último dia do mês"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", na última %s do mês"},t.prototype.commaOnTheX0OfTheMonth=function(){return", no %s do mês"},t.prototype.commaX0ThroughX1=function(){return", de %s a %s"},t.prototype.everyHour=function(){return"a cada hora"},t.prototype.everyMinute=function(){return"a cada minuto"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"a cada minuto entre %s e %s"},t.prototype.everySecond=function(){return"a cada segundo"},t.prototype.everyX0Hours=function(){return"a cada %s horas"},t.prototype.everyX0Minutes=function(){return"a cada %s minutos"},t.prototype.everyX0Seconds=function(){return"a cada %s segundos"},t.prototype.fifth=function(){return"quinta"},t.prototype.first=function(){return"primeira"},t.prototype.firstWeekday=function(){return"primeiro dia da semana"},t.prototype.fourth=function(){return"quarta"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"do minuto %s até %s de cada hora"},t.prototype.second=function(){return"segunda"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"No segundo %s até %s de cada minuto"},t.prototype.spaceAnd=function(){return" e"},t.prototype.spaceX0OfTheMonth=function(){return" %s do mês"},t.prototype.lastDay=function(){return"o último dia"},t.prototype.third=function(){return"terceira"},t.prototype.weekdayNearestDayX0=function(){return"dia da semana mais próximo do dia %s"},t.prototype.commaEveryX0Years=function(){return", a cada %s anos"},t.prototype.commaStartingX0=function(){return", iniciando %s"},t.prototype.daysOfTheWeek=function(){return["domingo","segunda-feira","terça-feira","quarta-feira","quinta-feira","sexta-feira","sábado"]},t.prototype.monthsOfTheYear=function(){return["janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"]},t}();e.pt_BR=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Eroare la generarea descrierii. Verificați sintaxa."},t.prototype.at=function(){return"La"},t.prototype.atSpace=function(){return"La "},t.prototype.atX0=function(){return"la %s"},t.prototype.atX0MinutesPastTheHour=function(){return"la și %s minute"},t.prototype.atX0SecondsPastTheMinute=function(){return"la și %s secunde"},t.prototype.betweenX0AndX1=function(){return"între %s și %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", între zilele %s și %s ale lunii"},t.prototype.commaEveryDay=function(){return", în fiecare zi"},t.prototype.commaEveryX0Days=function(){return", la fiecare %s zile"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", la fiecare a %s-a zi a săptămânii"},t.prototype.commaEveryX0Months=function(){return", la fiecare %s luni"},t.prototype.commaEveryX0Years=function(){return", o dată la %s ani"},t.prototype.commaOnDayX0OfTheMonth=function(){return", în ziua %s a lunii"},t.prototype.commaOnlyInX0=function(){return", doar în %s"},t.prototype.commaOnlyOnX0=function(){return", doar %s"},t.prototype.commaAndOnX0=function(){return", și %s"},t.prototype.commaOnThe=function(){return", în "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", în ultima zi a lunii"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", în ultima zi lucrătoare a lunii"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s zile înainte de ultima zi a lunii"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", în ultima %s a lunii"},t.prototype.commaOnTheX0OfTheMonth=function(){return", în %s a lunii"},t.prototype.commaX0ThroughX1=function(){return", de %s până %s"},t.prototype.everyHour=function(){return"în fiecare oră"},t.prototype.everyMinute=function(){return"în fiecare minut"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"În fiecare minut între %s și %s"},t.prototype.everySecond=function(){return"în fiecare secundă"},t.prototype.everyX0Hours=function(){return"la fiecare %s ore"},t.prototype.everyX0Minutes=function(){return"la fiecare %s minute"},t.prototype.everyX0Seconds=function(){return"la fiecare %s secunde"},t.prototype.fifth=function(){return"a cincea"},t.prototype.first=function(){return"prima"},t.prototype.firstWeekday=function(){return"prima zi a săptămânii"},t.prototype.fourth=function(){return"a patra"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"între minutele %s și %s"},t.prototype.second=function(){return"a doua"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"între secunda %s și secunda %s"},t.prototype.spaceAnd=function(){return" și"},t.prototype.spaceX0OfTheMonth=function(){return" %s a lunii"},t.prototype.lastDay=function(){return"ultima zi"},t.prototype.third=function(){return"a treia"},t.prototype.weekdayNearestDayX0=function(){return"cea mai apropiată zi a săptămânii de ziua %s"},t.prototype.commaMonthX0ThroughMonthX1=function(){return", din %s până în %s"},t.prototype.commaYearX0ThroughYearX1=function(){return", din %s până în %s"},t.prototype.atX0MinutesPastTheHourGt20=function(){return"la și %s de minute"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return"la și %s de secunde"},t.prototype.commaStartingX0=function(){return", pornire %s"},t.prototype.daysOfTheWeek=function(){return["duminică","luni","marți","miercuri","joi","vineri","sâmbătă"]},t.prototype.monthsOfTheYear=function(){return["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie"]},t}();e.ro=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"каждую минуту"},t.prototype.everyHour=function(){return"каждый час"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Произошла ошибка во время генерации описания выражения. Проверьте синтаксис крон-выражения."},t.prototype.atSpace=function(){return"В "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Каждую минуту с %s по %s"},t.prototype.at=function(){return"В"},t.prototype.spaceAnd=function(){return" и"},t.prototype.everySecond=function(){return"каждую секунду"},t.prototype.everyX0Seconds=function(){return"каждые %s секунд"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"секунды с %s по %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"в %s секунд"},t.prototype.everyX0Minutes=function(){return"каждые %s минут"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"минуты с %s по %s"},t.prototype.atX0MinutesPastTheHour=function(){return"в %s минут"},t.prototype.everyX0Hours=function(){return"каждые %s часов"},t.prototype.betweenX0AndX1=function(){return"с %s по %s"},t.prototype.atX0=function(){return"в %s"},t.prototype.commaEveryDay=function(){return", каждый день"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", каждые %s дней недели"},t.prototype.commaX0ThroughX1=function(){return", %s по %s"},t.prototype.first=function(){return"первый"},t.prototype.second=function(){return"второй"},t.prototype.third=function(){return"третий"},t.prototype.fourth=function(){return"четвертый"},t.prototype.fifth=function(){return"пятый"},t.prototype.commaOnThe=function(){return", в "},t.prototype.spaceX0OfTheMonth=function(){return" %s месяца"},t.prototype.lastDay=function(){return"последний день"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", в последний %s месяца"},t.prototype.commaOnlyOnX0=function(){return", только в %s"},t.prototype.commaAndOnX0=function(){return", и в %s"},t.prototype.commaEveryX0Months=function(){return", каждые %s месяцев"},t.prototype.commaOnlyInX0=function(){return", только в %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", в последний день месяца"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", в последний будний день месяца"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s дней до последнего дня месяца"},t.prototype.firstWeekday=function(){return"первый будний день"},t.prototype.weekdayNearestDayX0=function(){return"ближайший будний день к %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", в %s месяца"},t.prototype.commaEveryX0Days=function(){return", каждые %s дней"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", с %s по %s число месяца"},t.prototype.commaOnDayX0OfTheMonth=function(){return", в %s число месяца"},t.prototype.commaEveryX0Years=function(){return", каждые %s лет"},t.prototype.commaStartingX0=function(){return", начало %s"},t.prototype.daysOfTheWeek=function(){return["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"]},t.prototype.monthsOfTheYear=function(){return["январь","февраль","март","апрель","май","июнь","июль","август","сентябрь","октябрь","ноябрь","декабрь"]},t}();e.ru=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"her dakika"},t.prototype.everyHour=function(){return"her saat"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"İfade açıklamasını oluştururken bir hata oluştu. Cron ifadesini gözden geçirin."},t.prototype.atSpace=function(){return"Saat "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Saat %s ve %s arasındaki her dakika"},t.prototype.at=function(){return"Saat"},t.prototype.spaceAnd=function(){return" ve"},t.prototype.everySecond=function(){return"her saniye"},t.prototype.everyX0Seconds=function(){return"her %s saniyede bir"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"dakikaların %s. ve %s. saniyeleri arası"},t.prototype.atX0SecondsPastTheMinute=function(){return"dakikaların %s. saniyesinde"},t.prototype.everyX0Minutes=function(){return"her %s dakikada bir"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"saatlerin %s. ve %s. dakikaları arası"},t.prototype.atX0MinutesPastTheHour=function(){return"saatlerin %s. dakikasında"},t.prototype.everyX0Hours=function(){return"her %s saatte"},t.prototype.betweenX0AndX1=function(){return"%s ile %s arasında"},t.prototype.atX0=function(){return"saat %s"},t.prototype.commaEveryDay=function(){return", her gün"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", ayın her %s günü"},t.prototype.commaX0ThroughX1=function(){return", %s ile %s arasında"},t.prototype.first=function(){return"ilk"},t.prototype.second=function(){return"ikinci"},t.prototype.third=function(){return"üçüncü"},t.prototype.fourth=function(){return"dördüncü"},t.prototype.fifth=function(){return"beşinci"},t.prototype.commaOnThe=function(){return", ayın "},t.prototype.spaceX0OfTheMonth=function(){return" %s günü"},t.prototype.lastDay=function(){return"son gün"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", ayın son %s günü"},t.prototype.commaOnlyOnX0=function(){return", sadece %s günü"},t.prototype.commaAndOnX0=function(){return", ve %s"},t.prototype.commaEveryX0Months=function(){return", %s ayda bir"},t.prototype.commaOnlyInX0=function(){return", sadece %s için"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", ayın son günü"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", ayın son iş günü"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s ayın son gününden önceki günler"},t.prototype.firstWeekday=function(){return"ilk iş günü"},t.prototype.weekdayNearestDayX0=function(){return"%s. günü sonrasındaki ilk iş günü"},t.prototype.commaOnTheX0OfTheMonth=function(){return", ayın %s"},t.prototype.commaEveryX0Days=function(){return", %s günde bir"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", ayın %s. ve %s. günleri arası"},t.prototype.commaOnDayX0OfTheMonth=function(){return", ayın %s. günü"},t.prototype.commaEveryX0Years=function(){return", %s yılda bir"},t.prototype.commaStartingX0=function(){return", başlangıç %s"},t.prototype.daysOfTheWeek=function(){return["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"]},t.prototype.monthsOfTheYear=function(){return["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"]},t}();e.tr=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"щохвилини"},t.prototype.everyHour=function(){return"щогодини"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"ВІдбулася помилка підчас генерації опису. Перевірта правильність написання cron виразу."},t.prototype.atSpace=function(){return"О "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Щохвилини між %s та %s"},t.prototype.at=function(){return"О"},t.prototype.spaceAnd=function(){return" та"},t.prototype.everySecond=function(){return"Щосекунди"},t.prototype.everyX0Seconds=function(){return"кожні %s секунд"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"з %s по %s секунду"},t.prototype.atX0SecondsPastTheMinute=function(){return"о %s секунді"},t.prototype.everyX0Minutes=function(){return"кожні %s хвилин"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"з %s по %s хвилину"},t.prototype.atX0MinutesPastTheHour=function(){return"о %s хвилині"},t.prototype.everyX0Hours=function(){return"кожні %s годин"},t.prototype.betweenX0AndX1=function(){return"між %s та %s"},t.prototype.atX0=function(){return"о %s"},t.prototype.commaEveryDay=function(){return", щоденно"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", кожен %s день тижня"},t.prototype.commaX0ThroughX1=function(){return", %s по %s"},t.prototype.first=function(){return"перший"},t.prototype.second=function(){return"другий"},t.prototype.third=function(){return"третій"},t.prototype.fourth=function(){return"четвертий"},t.prototype.fifth=function(){return"п'ятий"},t.prototype.commaOnThe=function(){return", в "},t.prototype.spaceX0OfTheMonth=function(){return" %s місяця"},t.prototype.lastDay=function(){return"останній день"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", в останній %s місяця"},t.prototype.commaOnlyOnX0=function(){return", тільки в %s"},t.prototype.commaAndOnX0=function(){return", і в %s"},t.prototype.commaEveryX0Months=function(){return", кожен %s місяць"},t.prototype.commaOnlyInX0=function(){return", тільки в %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", в останній день місяця"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", в останній будень місяця"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s днів до останнього дня місяця"},t.prototype.firstWeekday=function(){return"перший будень"},t.prototype.weekdayNearestDayX0=function(){return"будень найближчий до %s дня"},t.prototype.commaOnTheX0OfTheMonth=function(){return", в %s місяця"},t.prototype.commaEveryX0Days=function(){return", кожен %s день"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", між %s та %s днями місяця"},t.prototype.commaOnDayX0OfTheMonth=function(){return", на %s день місяця"},t.prototype.commaEveryX0Years=function(){return", кожні %s роки"},t.prototype.commaStartingX0=function(){return", початок %s"},t.prototype.daysOfTheWeek=function(){return["неділя","понеділок","вівторок","середа","четвер","п'ятниця","субота"]},t.prototype.monthsOfTheYear=function(){return["січень","лютий","березень","квітень","травень","червень","липень","серпень","вересень","жовтень","листопад","грудень"]},t}();e.uk=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.setPeriodBeforeTime=function(){return!0},t.prototype.pm=function(){return"下午"},t.prototype.am=function(){return"上午"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 从%s年至%s年"},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"每分钟"},t.prototype.everyHour=function(){return"每小时"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"生成表达式描述时发生了错误,请检查cron表达式语法。"},t.prototype.atSpace=function(){return"在"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 至 %s 之间的每分钟"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每隔 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在每分钟的第 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在每分钟的第 %s 秒"},t.prototype.everyX0Minutes=function(){return"每隔 %s 分钟"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在每小时的第 %s 到 %s 分钟"},t.prototype.atX0MinutesPastTheHour=function(){return"在每小时的第 %s 分钟"},t.prototype.everyX0Hours=function(){return"每隔 %s 小时"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之间"},t.prototype.atX0=function(){return"在%s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每周的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s至%s"},t.prototype.first=function(){return"第一个"},t.prototype.second=function(){return"第二个"},t.prototype.third=function(){return"第三个"},t.prototype.fourth=function(){return"第四个"},t.prototype.fifth=function(){return"第五个"},t.prototype.commaOnThe=function(){return", 限每月的"},t.prototype.spaceX0OfTheMonth=function(){return"%s"},t.prototype.lastDay=function(){return"本月最后一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 限每月的最后一个%s"},t.prototype.commaOnlyOnX0=function(){return", 仅%s"},t.prototype.commaAndOnX0=function(){return", 并且为%s"},t.prototype.commaEveryX0Months=function(){return", 每隔 %s 个月"},t.prototype.commaOnlyInX0=function(){return", 仅限%s"},t.prototype.commaOnlyInMonthX0=function(){return", 仅于%s份"},t.prototype.commaOnlyInYearX0=function(){return", 仅于 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 限每月的最后一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 限每月的最后一个工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", 限每月最后%s天"},t.prototype.firstWeekday=function(){return"第一个工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 号的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 限每月的%s"},t.prototype.commaEveryX0Days=function(){return", 每隔 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 限每月的 %s 至 %s 之间"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 限每月%s"},t.prototype.commaEveryX0Years=function(){return", 每隔 %s 年"},t.prototype.commaStartingX0=function(){return", %s开始"},t.prototype.dayX0=function(){return" %s 号"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();e.zh_CN=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 从%s年至%s年"},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"每分鐘"},t.prototype.everyHour=function(){return"每小時"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"產生正規表達式描述時發生了錯誤,請檢查 cron 表達式語法。"},t.prototype.atSpace=function(){return"在 "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 和 %s 之間的每分鐘"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在每分鐘的 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在每分鐘的 %s 秒"},t.prototype.everyX0Minutes=function(){return"每 %s 分鐘"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在每小時的 %s 到 %s 分鐘"},t.prototype.atX0MinutesPastTheHour=function(){return"在每小時的 %s 分"},t.prototype.everyX0Hours=function(){return"每 %s 小時"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之間"},t.prototype.atX0=function(){return"在 %s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每週的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s 到 %s"},t.prototype.first=function(){return"第一個"},t.prototype.second=function(){return"第二個"},t.prototype.third=function(){return"第三個"},t.prototype.fourth=function(){return"第四個"},t.prototype.fifth=function(){return"第五個"},t.prototype.commaOnThe=function(){return", 在每月 "},t.prototype.spaceX0OfTheMonth=function(){return"%s "},t.prototype.lastDay=function(){return"最後一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 每月的最後一個 %s "},t.prototype.commaOnlyOnX0=function(){return", 僅在 %s"},t.prototype.commaAndOnX0=function(){return", 和 %s"},t.prototype.commaEveryX0Months=function(){return", 每 %s 月"},t.prototype.commaOnlyInX0=function(){return", 僅在 %s"},t.prototype.commaOnlyInMonthX0=function(){return", 僅在%s"},t.prototype.commaOnlyInYearX0=function(){return", 僅在 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 每月的最後一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 每月的最後一個工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s 這個月的最後一天的前幾天"},t.prototype.firstWeekday=function(){return"第一個工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 號的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 每月的 %s "},t.prototype.commaEveryX0Days=function(){return", 每 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 在每月的 %s 和 %s 之間"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 每月的 %s"},t.prototype.commaEveryX0Years=function(){return", 每 %s 年"},t.prototype.commaStartingX0=function(){return", %s 開始"},t.prototype.dayX0=function(){return" %s 號"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();e.zh_TW=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"毎分"},t.prototype.everyHour=function(){return"毎時"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"式の記述を生成する際にエラーが発生しました。Cron 式の構文を確認してください。"},t.prototype.atSpace=function(){return"次において実施"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"%s から %s まで毎分"},t.prototype.at=function(){return"次において実施"},t.prototype.spaceAnd=function(){return"と"},t.prototype.everySecond=function(){return"毎秒"},t.prototype.everyX0Seconds=function(){return"%s 秒ごと"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"毎分 %s 秒から %s 秒まで"},t.prototype.atX0SecondsPastTheMinute=function(){return"毎分 %s 秒過ぎ"},t.prototype.everyX0Minutes=function(){return"%s 分ごと"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"毎時 %s 分から %s 分まで"},t.prototype.atX0MinutesPastTheHour=function(){return"毎時 %s 分過ぎ"},t.prototype.everyX0Hours=function(){return"%s 時間ごと"},t.prototype.betweenX0AndX1=function(){return"%s と %s の間"},t.prototype.atX0=function(){return"次において実施 %s"},t.prototype.commaEveryDay=function(){return"、毎日"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return"、週のうち %s 日ごと"},t.prototype.commaX0ThroughX1=function(){return"、%s から %s まで"},t.prototype.first=function(){return"1 番目"},t.prototype.second=function(){return"2 番目"},t.prototype.third=function(){return"3 番目"},t.prototype.fourth=function(){return"4 番目"},t.prototype.fifth=function(){return"5 番目"},t.prototype.commaOnThe=function(){return"次に"},t.prototype.spaceX0OfTheMonth=function(){return"月のうち %s"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return"月の最後の %s に"},t.prototype.commaOnlyOnX0=function(){return"%s にのみ"},t.prototype.commaEveryX0Months=function(){return"、%s か月ごと"},t.prototype.commaOnlyInX0=function(){return"%s でのみ"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return"次の最終日に"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return"月の最後の平日に"},t.prototype.firstWeekday=function(){return"最初の平日"},t.prototype.weekdayNearestDayX0=function(){return"%s 日の直近の平日"},t.prototype.commaOnTheX0OfTheMonth=function(){return"月の %s に"},t.prototype.commaEveryX0Days=function(){return"、%s 日ごと"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return"、月の %s 日から %s 日の間"},t.prototype.commaOnDayX0OfTheMonth=function(){return"、月の %s 日目"},t.prototype.spaceAndSpace=function(){return"と"},t.prototype.commaEveryMinute=function(){return"、毎分"},t.prototype.commaEveryHour=function(){return"、毎時"},t.prototype.commaEveryX0Years=function(){return"、%s 年ごと"},t.prototype.commaStartingX0=function(){return"、%s に開始"},t.prototype.aMPeriod=function(){return"AM"},t.prototype.pMPeriod=function(){return"PM"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return"月の最終日の %s 日前"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.lastDay=function(){return"最終日"},t.prototype.commaAndOnX0=function(){return"、〜と %s"},t.prototype.daysOfTheWeek=function(){return["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"]},t.prototype.monthsOfTheYear=function(){return["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"]},t}();e.ja=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"אירעה שגיאה בעת יצירת תיאור הביטוי. בדוק את תחביר הביטוי cron."},t.prototype.everyMinute=function(){return"כל דקה"},t.prototype.everyHour=function(){return"כל שעה"},t.prototype.atSpace=function(){return"ב "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"כל דקה %s עד %s"},t.prototype.at=function(){return"ב"},t.prototype.spaceAnd=function(){return" ו"},t.prototype.everySecond=function(){return"כל שניה"},t.prototype.everyX0Seconds=function(){return"כל %s שניות"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"%s עד %s שניות של הדקה"},t.prototype.atX0SecondsPastTheMinute=function(){return"ב %s שניות של הדקה"},t.prototype.everyX0Minutes=function(){return"כל %s דקות"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"%s עד %s דקות של השעה"},t.prototype.atX0MinutesPastTheHour=function(){return"ב %s דקות של השעה"},t.prototype.everyX0Hours=function(){return"כל %s שעות"},t.prototype.betweenX0AndX1=function(){return"%s עד %s"},t.prototype.atX0=function(){return"ב %s"},t.prototype.commaEveryDay=function(){return", כל יום"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", כל %s ימים בשבוע"},t.prototype.commaX0ThroughX1=function(){return", %s עד %s"},t.prototype.first=function(){return"ראשון"},t.prototype.second=function(){return"שני"},t.prototype.third=function(){return"שלישי"},t.prototype.fourth=function(){return"רביעי"},t.prototype.fifth=function(){return"חמישי"},t.prototype.commaOnThe=function(){return", ב "},t.prototype.spaceX0OfTheMonth=function(){return" %s של החודש"},t.prototype.lastDay=function(){return"היום האחרון"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", רק ב %s של החודש"},t.prototype.commaOnlyOnX0=function(){return", רק ב %s"},t.prototype.commaAndOnX0=function(){return", וב %s"},t.prototype.commaEveryX0Months=function(){return", כל %s חודשים"},t.prototype.commaOnlyInX0=function(){return", רק ב %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", ביום האחרון של החודש"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", ביום החול האחרון של החודש"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s ימים לפני היום האחרון בחודש"},t.prototype.firstWeekday=function(){return"יום החול הראשון"},t.prototype.weekdayNearestDayX0=function(){return"יום החול הראשון הקרוב אל %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", ביום ה%s של החודש"},t.prototype.commaEveryX0Days=function(){return", כל %s ימים"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", בין היום ה%s וה%s של החודש"},t.prototype.commaOnDayX0OfTheMonth=function(){return", ביום ה%s של החודש"},t.prototype.commaEveryX0Years=function(){return", כל %s שנים"},t.prototype.commaStartingX0=function(){return", החל מ %s"},t.prototype.daysOfTheWeek=function(){return["יום ראשון","יום שני","יום שלישי","יום רביעי","יום חמישי","יום שישי","יום שבת"]},t.prototype.monthsOfTheYear=function(){return["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"]},t}();e.he=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu."},t.prototype.everyMinute=function(){return"každou minutu"},t.prototype.everyHour=function(){return"každou hodinu"},t.prototype.atSpace=function(){return"V "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Každou minutu mezi %s a %s"},t.prototype.at=function(){return"V"},t.prototype.spaceAnd=function(){return" a"},t.prototype.everySecond=function(){return"každou sekundu"},t.prototype.everyX0Seconds=function(){return"každých %s sekund"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundy od %s do %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"v %s sekund"},t.prototype.everyX0Minutes=function(){return"každých %s minut"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuty od %s do %s"},t.prototype.atX0MinutesPastTheHour=function(){return"v %s minut"},t.prototype.everyX0Hours=function(){return"každých %s hodin"},t.prototype.betweenX0AndX1=function(){return"mezi %s a %s"},t.prototype.atX0=function(){return"v %s"},t.prototype.commaEveryDay=function(){return", každý den"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", každých %s dní v týdnu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.first=function(){return"první"},t.prototype.second=function(){return"druhý"},t.prototype.third=function(){return"třetí"},t.prototype.fourth=function(){return"čtvrtý"},t.prototype.fifth=function(){return"pátý"},t.prototype.commaOnThe=function(){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s v měsíci"},t.prototype.lastDay=function(){return"poslední den"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", poslední %s v měsíci"},t.prototype.commaOnlyOnX0=function(){return", pouze v %s"},t.prototype.commaAndOnX0=function(){return", a v %s"},t.prototype.commaEveryX0Months=function(){return", každých %s měsíců"},t.prototype.commaOnlyInX0=function(){return", pouze v %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", poslední den v měsíci"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", poslední pracovní den v měsíci"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dní před posledním dnem v měsíci"},t.prototype.firstWeekday=function(){return"první pracovní den"},t.prototype.weekdayNearestDayX0=function(){return"pracovní den nejblíže %s. dni"},t.prototype.commaOnTheX0OfTheMonth=function(){return", v %s v měsíci"},t.prototype.commaEveryX0Days=function(){return", každých %s dnů"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mezi dny %s a %s v měsíci"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. den v měsíci"},t.prototype.commaEveryX0Years=function(){return", každých %s roků"},t.prototype.commaStartingX0=function(){return", začínající %s"},t.prototype.daysOfTheWeek=function(){return["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"]},t.prototype.monthsOfTheYear=function(){return["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"]},t}();e.cs=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Pri vytváraní popisu došlo k chybe. Skontrolujte prosím správnosť syntaxe cronu."},t.prototype.everyMinute=function(){return"každú minútu"},t.prototype.everyHour=function(){return"každú hodinu"},t.prototype.atSpace=function(){return"V "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Každú minútu medzi %s a %s"},t.prototype.at=function(){return"V"},t.prototype.spaceAnd=function(){return" a"},t.prototype.everySecond=function(){return"každú sekundu"},t.prototype.everyX0Seconds=function(){return"každých %s sekúnd"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundy od %s do %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"v %s sekúnd"},t.prototype.everyX0Minutes=function(){return"každých %s minút"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minúty od %s do %s"},t.prototype.atX0MinutesPastTheHour=function(){return"v %s minút"},t.prototype.everyX0Hours=function(){return"každých %s hodín"},t.prototype.betweenX0AndX1=function(){return"medzi %s a %s"},t.prototype.atX0=function(){return"v %s"},t.prototype.commaEveryDay=function(){return", každý deň"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", každých %s dní v týždni"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.first=function(){return"prvý"},t.prototype.second=function(){return"druhý"},t.prototype.third=function(){return"tretí"},t.prototype.fourth=function(){return"štvrtý"},t.prototype.fifth=function(){return"piaty"},t.prototype.commaOnThe=function(){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s v mesiaci"},t.prototype.lastDay=function(){return"posledný deň"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", posledný %s v mesiaci"},t.prototype.commaOnlyOnX0=function(){return", iba v %s"},t.prototype.commaAndOnX0=function(){return", a v %s"},t.prototype.commaEveryX0Months=function(){return", každých %s mesiacov"},t.prototype.commaOnlyInX0=function(){return", iba v %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", posledný deň v mesiaci"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", posledný pracovný deň v mesiaci"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dní pred posledným dňom v mesiaci"},t.prototype.firstWeekday=function(){return"prvý pracovný deň"},t.prototype.weekdayNearestDayX0=function(){return"pracovný deň najbližšie %s. dňu"},t.prototype.commaOnTheX0OfTheMonth=function(){return", v %s v mesiaci"},t.prototype.commaEveryX0Days=function(){return", každých %s dní"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", medzi dňami %s a %s v mesiaci"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. deň v mesiaci"},t.prototype.commaEveryX0Years=function(){return", každých %s rokov"},t.prototype.commaStartingX0=function(){return", začínajúcich %s"},t.prototype.daysOfTheWeek=function(){return["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"]},t.prototype.monthsOfTheYear=function(){return["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"]},t}();e.sk=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Virhe kuvauksen generoinnissa. Tarkista cron-syntaksi."},t.prototype.at=function(){return"Klo"},t.prototype.atSpace=function(){return"Klo "},t.prototype.atX0=function(){return"klo %s"},t.prototype.atX0MinutesPastTheHour=function(){return"%s minuuttia yli"},t.prototype.atX0MinutesPastTheHourGt20=function(){return"%s minuuttia yli"},t.prototype.atX0SecondsPastTheMinute=function(){return"%s sekunnnin jälkeen"},t.prototype.betweenX0AndX1=function(){return"%s - %s välillä"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", kuukauden päivien %s ja %s välillä"},t.prototype.commaEveryDay=function(){return", joka päivä"},t.prototype.commaEveryHour=function(){return", joka tunti"},t.prototype.commaEveryMinute=function(){return", joka minuutti"},t.prototype.commaEveryX0Days=function(){return", joka %s. päivä"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", joka %s. viikonpäivä"},t.prototype.commaEveryX0Months=function(){return", joka %s. kuukausi"},t.prototype.commaEveryX0Years=function(){return", joka %s. vuosi"},t.prototype.commaOnDayX0OfTheMonth=function(){return", kuukauden %s päivä"},t.prototype.commaOnlyInX0=function(){return", vain %s"},t.prototype.commaOnlyOnX0=function(){return", vain %s"},t.prototype.commaOnThe=function(){return","},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", kuukauden viimeisenä päivänä"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", kuukauden viimeisenä viikonpäivänä"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", kuukauden viimeinen %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", kuukauden %s"},t.prototype.commaX0ThroughX1=function(){return", %s - %s"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s päivää ennen kuukauden viimeistä päivää"},t.prototype.commaStartingX0=function(){return", alkaen %s"},t.prototype.everyHour=function(){return"joka tunti"},t.prototype.everyMinute=function(){return"joka minuutti"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"joka minuutti %s - %s välillä"},t.prototype.everySecond=function(){return"joka sekunti"},t.prototype.everyX0Hours=function(){return"joka %s. tunti"},t.prototype.everyX0Minutes=function(){return"joka %s. minuutti"},t.prototype.everyX0Seconds=function(){return"joka %s. sekunti"},t.prototype.fifth=function(){return"viides"},t.prototype.first=function(){return"ensimmäinen"},t.prototype.firstWeekday=function(){return"ensimmäinen viikonpäivä"},t.prototype.fourth=function(){return"neljäs"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"joka tunti minuuttien %s - %s välillä"},t.prototype.second=function(){return"toinen"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"joka minuutti sekunttien %s - %s välillä"},t.prototype.spaceAnd=function(){return" ja"},t.prototype.spaceAndSpace=function(){return" ja "},t.prototype.spaceX0OfTheMonth=function(){return" %s kuukaudessa"},t.prototype.third=function(){return"kolmas"},t.prototype.weekdayNearestDayX0=function(){return"viikonpäivä lähintä %s päivää"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.lastDay=function(){return"viimeinen päivä"},t.prototype.commaAndOnX0=function(){return", ja edelleen %s"},t.prototype.daysOfTheWeek=function(){return["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"]},t.prototype.monthsOfTheYear=function(){return["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"]},t}();e.fi=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Pri generiranju opisa izraza je prišlo do napake. Preverite sintakso izraza cron."},t.prototype.at=function(){return"Ob"},t.prototype.atSpace=function(){return"Ob "},t.prototype.atX0=function(){return"ob %s"},t.prototype.atX0MinutesPastTheHour=function(){return"ob %s."},t.prototype.atX0SecondsPastTheMinute=function(){return"ob %s."},t.prototype.betweenX0AndX1=function(){return"od %s do %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", od %s. do %s. dne v mesecu"},t.prototype.commaEveryDay=function(){return", vsak dan"},t.prototype.commaEveryX0Days=function(){return", vsakih %s dni"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", vsakih %s dni v tednu"},t.prototype.commaEveryX0Months=function(){return", vsakih %s mesecev"},t.prototype.commaEveryX0Years=function(){return", vsakih %s let"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. dan v mesecu"},t.prototype.commaOnlyInX0=function(){return", samo v %s"},t.prototype.commaOnlyOnX0=function(){return", samo v %s"},t.prototype.commaAndOnX0=function(){return"in naprej %s"},t.prototype.commaOnThe=function(){return", "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", zadnji %s v mesecu"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", zadnji delovni dan v mesecu"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dni pred koncem meseca"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", zadnji %s v mesecu"},t.prototype.commaOnTheX0OfTheMonth=function(){return", %s v mesecu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.everyHour=function(){return"vsako uro"},t.prototype.everyMinute=function(){return"vsako minuto"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Vsako minuto od %s do %s"},t.prototype.everySecond=function(){return"vsako sekundo"},t.prototype.everyX0Hours=function(){return"vsakih %s ur"},t.prototype.everyX0Minutes=function(){return"vsakih %s minut"},t.prototype.everyX0Seconds=function(){return"vsakih %s sekund"},t.prototype.fifth=function(){return"peti"},t.prototype.first=function(){return"prvi"},t.prototype.firstWeekday=function(){return"prvi delovni dan"},t.prototype.fourth=function(){return"četrti"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minute od %s do %s"},t.prototype.second=function(){return"drugi"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunde od %s do %s"},t.prototype.spaceAnd=function(){return" in"},t.prototype.spaceX0OfTheMonth=function(){return" %s v mesecu"},t.prototype.lastDay=function(){return"zadnjič"},t.prototype.third=function(){return"tretji"},t.prototype.weekdayNearestDayX0=function(){return"delovni dan, najbližji %s. dnevu"},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaStartingX0=function(){return", začenši %s"},t.prototype.daysOfTheWeek=function(){return["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"]},t.prototype.monthsOfTheYear=function(){return["januar","februar","marec","april","maj","junij","julij","avgust","september","oktober","november","december"]},t}();e.sl=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Kuna tatizo wakati wa kutunga msemo. Angalia cron expression syntax."},t.prototype.everyMinute=function(){return"kila dakika"},t.prototype.everyHour=function(){return"kila saa"},t.prototype.atSpace=function(){return"Kwa "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Kila dakika kwanzia %s hadi %s"},t.prototype.at=function(){return"Kwa"},t.prototype.spaceAnd=function(){return" na"},t.prototype.everySecond=function(){return"kila sekunde"},t.prototype.everyX0Seconds=function(){return"kila sekunde %s"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunde ya %s hadi %s baada ya dakika"},t.prototype.atX0SecondsPastTheMinute=function(){return"at %s seconds past the minute"},t.prototype.everyX0Minutes=function(){return"kila dakika %s"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutes %s through %s past the hour"},t.prototype.atX0MinutesPastTheHour=function(){return"at %s minutes past the hour"},t.prototype.everyX0Hours=function(){return"every %s hours"},t.prototype.betweenX0AndX1=function(){return"kati ya %s na %s"},t.prototype.atX0=function(){return"kwenye %s"},t.prototype.commaEveryDay=function(){return", kila siku"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", kila siku %s ya wiki"},t.prototype.commaX0ThroughX1=function(){return", %s hadi %s"},t.prototype.first=function(){return"ya kwanza"},t.prototype.second=function(){return"ya pili"},t.prototype.third=function(){return"ya tatu"},t.prototype.fourth=function(){return"ya nne"},t.prototype.fifth=function(){return"ya tano"},t.prototype.commaOnThe=function(){return", kwenye "},t.prototype.spaceX0OfTheMonth=function(){return" siku %s ya mwezi"},t.prototype.lastDay=function(){return"siku ya mwisho"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", siku ya %s ya mwezi"},t.prototype.commaOnlyOnX0=function(){return", kwa %s tu"},t.prototype.commaAndOnX0=function(){return", na pia %s"},t.prototype.commaEveryX0Months=function(){return", kila mwezi wa %s"},t.prototype.commaOnlyInX0=function(){return", kwa %s tu"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", siku ya mwisho wa mwezi"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", wikendi ya mwisho wa mwezi"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", siku ya %s kabla ya siku ya mwisho wa mwezi"},t.prototype.firstWeekday=function(){return"siku za kazi ya kwanza"},t.prototype.weekdayNearestDayX0=function(){return"siku ya kazi karibu na siku ya %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", siku ya %s ya mwezi"},t.prototype.commaEveryX0Days=function(){return", kila siku %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", kati ya siku %s na %s ya mwezi"},t.prototype.commaOnDayX0OfTheMonth=function(){return", siku ya %s ya mwezi"},t.prototype.commaEveryX0Years=function(){return", kila miaka %s"},t.prototype.commaStartingX0=function(){return", kwanzia %s"},t.prototype.daysOfTheWeek=function(){return["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"]},t.prototype.monthsOfTheYear=function(){return["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"]},t}();e.sw=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"خطایی در نمایش توضیحات این وظیفه رخ داد. لطفا ساختار آن را بررسی کنید."},t.prototype.everyMinute=function(){return"هر دقیقه"},t.prototype.everyHour=function(){return"هر ساعت"},t.prototype.atSpace=function(){return"در "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"هر دقیقه بین %s و %s"},t.prototype.at=function(){return"در"},t.prototype.spaceAnd=function(){return" و"},t.prototype.everySecond=function(){return"هر ثانیه"},t.prototype.everyX0Seconds=function(){return"هر %s ثانیه"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"ثانیه %s تا %s دقیقه گذشته"},t.prototype.atX0SecondsPastTheMinute=function(){return"در %s قانیه از دقیقه گذشته"},t.prototype.everyX0Minutes=function(){return"هر %s دقیقه"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"دقیقه %s تا %s ساعت گذشته"},t.prototype.atX0MinutesPastTheHour=function(){return"در %s دقیقه پس از ساعت"},t.prototype.everyX0Hours=function(){return"هر %s ساعت"},t.prototype.betweenX0AndX1=function(){return"بین %s و %s"},t.prototype.atX0=function(){return"در %s"},t.prototype.commaEveryDay=function(){return", هر روز"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", هر %s روز از هفته"},t.prototype.commaX0ThroughX1=function(){return", %s تا %s"},t.prototype.first=function(){return"اول"},t.prototype.second=function(){return"دوم"},t.prototype.third=function(){return"سوم"},t.prototype.fourth=function(){return"چهارم"},t.prototype.fifth=function(){return"پنجم"},t.prototype.commaOnThe=function(){return", در "},t.prototype.spaceX0OfTheMonth=function(){return" %s ماه"},t.prototype.lastDay=function(){return"آخرین روز"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", در %s ماه"},t.prototype.commaOnlyOnX0=function(){return", فقط در %s"},t.prototype.commaAndOnX0=function(){return", و در %s"},t.prototype.commaEveryX0Months=function(){return", هر %s ماه"},t.prototype.commaOnlyInX0=function(){return", فقط در %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", در آخرین روز ماه"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", در آخرین روز ماه"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s روز قبل از آخرین روز ماه"},t.prototype.firstWeekday=function(){return"اولین روز"},t.prototype.weekdayNearestDayX0=function(){return"روز نزدیک به روز %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", در %s ماه"},t.prototype.commaEveryX0Days=function(){return", هر %s روز"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", بین روز %s و %s ماه"},t.prototype.commaOnDayX0OfTheMonth=function(){return", در %s ماه"},t.prototype.commaEveryMinute=function(){return", هر minute"},t.prototype.commaEveryHour=function(){return", هر ساعت"},t.prototype.commaEveryX0Years=function(){return", هر %s سال"},t.prototype.commaStartingX0=function(){return", آغاز %s"},t.prototype.daysOfTheWeek=function(){return["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه"]},t.prototype.monthsOfTheYear=function(){return["ژانویه","فوریه","مارس","آپریل","مه","ژوئن","ژوئیه","آگوست","سپتامبر","اکتبر","نوامبر","دسامبر"]},t}();e.fa=r}])}))},1276:function(t,e,n){"use strict";var r=n("d784"),o=n("44e7"),i=n("825a"),u=n("1d80"),a=n("4840"),s=n("8aa5"),c=n("50c4"),p=n("14c3"),l=n("9263"),f=n("d039"),d=[].push,h=Math.min,y=4294967295,m=!f((function(){return!RegExp(y,"y")}));r("split",2,(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=String(u(this)),i=void 0===n?y:n>>>0;if(0===i)return[];if(void 0===t)return[r];if(!o(t))return e.call(r,t,i);var a,s,c,p=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),h=0,m=new RegExp(t.source,f+"g");while(a=l.call(m,r)){if(s=m.lastIndex,s>h&&(p.push(r.slice(h,a.index)),a.length>1&&a.index=i))break;m.lastIndex===a.index&&m.lastIndex++}return h===r.length?!c&&m.test("")||p.push(""):p.push(r.slice(h)),p.length>i?p.slice(0,i):p}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var o=u(this),i=void 0==e?void 0:e[t];return void 0!==i?i.call(e,o,n):r.call(String(o),e,n)},function(t,o){var u=n(r,t,this,o,r!==e);if(u.done)return u.value;var l=i(t),f=String(this),d=a(l,RegExp),v=l.unicode,b=(l.ignoreCase?"i":"")+(l.multiline?"m":"")+(l.unicode?"u":"")+(m?"y":"g"),g=new d(m?l:"^(?:"+l.source+")",b),O=void 0===o?y:o>>>0;if(0===O)return[];if(0===f.length)return null===p(g,f)?[f]:[];var T=0,X=0,S=[];while(X1?arguments[1]:void 0)}},"1be4":function(t,e,n){var r=n("d066");t.exports=r("document","documentElement")},"1c0b":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},"1d80":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"1dde":function(t,e,n){var r=n("d039"),o=n("b622"),i=n("2d00"),u=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[],n=e.constructor={};return n[u]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},"23cb":function(t,e,n){var r=n("a691"),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},"23e7":function(t,e,n){var r=n("da84"),o=n("06cf").f,i=n("9112"),u=n("6eeb"),a=n("ce4e"),s=n("e893"),c=n("94ca");t.exports=function(t,e){var n,p,l,f,d,h,y=t.target,m=t.global,v=t.stat;if(p=m?r:v?r[y]||a(y,{}):(r[y]||{}).prototype,p)for(l in e){if(d=e[l],t.noTargetGet?(h=o(p,l),f=h&&h.value):f=p[l],n=c(m?l:y+(v?".":"#")+l,t.forced),!n&&void 0!==f){if(typeof d===typeof f)continue;s(d,f)}(t.sham||f&&f.sham)&&i(d,"sham",!0),u(p,l,d,t)}}},"241c":function(t,e,n){var r=n("ca84"),o=n("7839"),i=o.concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},"2d00":function(t,e,n){var r,o,i=n("da84"),u=n("342f"),a=i.process,s=a&&a.versions,c=s&&s.v8;c?(r=c.split("."),o=r[0]+r[1]):u&&(r=u.match(/Edge\/(\d+)/),(!r||r[1]>=74)&&(r=u.match(/Chrome\/(\d+)/),r&&(o=r[1]))),t.exports=o&&+o},"2dd8":function(t,e,n){},"342f":function(t,e,n){var r=n("d066");t.exports=r("navigator","userAgent")||""},"37e8":function(t,e,n){var r=n("83ab"),o=n("9bf2"),i=n("825a"),u=n("df75");t.exports=r?Object.defineProperties:function(t,e){i(t);var n,r=u(e),a=r.length,s=0;while(a>s)o.f(t,n=r[s++],e[n]);return t}},"3bbe":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},4160:function(t,e,n){"use strict";var r=n("23e7"),o=n("17c2");r({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},"428f":function(t,e,n){var r=n("da84");t.exports=r},4362:function(t,e,n){e.nextTick=function(t){var e=Array.prototype.slice.call(arguments);e.shift(),setTimeout((function(){t.apply(null,e)}),0)},e.platform=e.arch=e.execPath=e.title="browser",e.pid=1,e.browser=!0,e.env={},e.argv=[],e.binding=function(t){throw new Error("No such module. (Possibly not yet loaded)")},function(){var t,r="/";e.cwd=function(){return r},e.chdir=function(e){t||(t=n("df7c")),r=t.resolve(e,r)}}(),e.exit=e.kill=e.umask=e.dlopen=e.uptime=e.memoryUsage=e.uvCounters=function(){},e.features={}},"44ad":function(t,e,n){var r=n("d039"),o=n("c6b6"),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},"44d2":function(t,e,n){var r=n("b622"),o=n("7c73"),i=n("9bf2"),u=r("unscopables"),a=Array.prototype;void 0==a[u]&&i.f(a,u,{configurable:!0,value:o(null)}),t.exports=function(t){a[u][t]=!0}},"44e7":function(t,e,n){var r=n("861d"),o=n("c6b6"),i=n("b622"),u=i("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[u])?!!e:"RegExp"==o(t))}},"466d":function(t,e,n){"use strict";var r=n("d784"),o=n("825a"),i=n("50c4"),u=n("1d80"),a=n("8aa5"),s=n("14c3");r("match",1,(function(t,e,n){return[function(e){var n=u(this),r=void 0==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var u=o(t),c=String(this);if(!u.global)return s(u,c);var p=u.unicode;u.lastIndex=0;var l,f=[],d=0;while(null!==(l=s(u,c))){var h=String(l[0]);f[d]=h,""===h&&(u.lastIndex=a(c,i(u.lastIndex),p)),d++}return 0===d?null:f}]}))},4840:function(t,e,n){var r=n("825a"),o=n("1c0b"),i=n("b622"),u=i("species");t.exports=function(t,e){var n,i=r(t).constructor;return void 0===i||void 0==(n=r(i)[u])?e:o(n)}},4930:function(t,e,n){var r=n("d039");t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},"4d64":function(t,e,n){var r=n("fc6a"),o=n("50c4"),i=n("23cb"),u=function(t){return function(e,n,u){var a,s=r(e),c=o(s.length),p=i(u,c);if(t&&n!=n){while(c>p)if(a=s[p++],a!=a)return!0}else for(;c>p;p++)if((t||p in s)&&s[p]===n)return t||p||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},"4de4":function(t,e,n){"use strict";var r=n("23e7"),o=n("b727").filter,i=n("1dde"),u=n("ae40"),a=i("filter"),s=u("filter");r({target:"Array",proto:!0,forced:!a||!s},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},"50c4":function(t,e,n){var r=n("a691"),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},5135:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},5319:function(t,e,n){"use strict";var r=n("d784"),o=n("825a"),i=n("7b0b"),u=n("50c4"),a=n("a691"),s=n("1d80"),c=n("8aa5"),p=n("14c3"),l=Math.max,f=Math.min,d=Math.floor,h=/\$([$&'`]|\d\d?|<[^>]*>)/g,y=/\$([$&'`]|\d\d?)/g,m=function(t){return void 0===t?t:String(t)};r("replace",2,(function(t,e,n,r){var v=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,b=r.REPLACE_KEEPS_$0,g=v?"$":"$0";return[function(n,r){var o=s(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,r){if(!v&&b||"string"===typeof r&&-1===r.indexOf(g)){var i=n(e,t,this,r);if(i.done)return i.value}var s=o(t),d=String(this),h="function"===typeof r;h||(r=String(r));var y=s.global;if(y){var T=s.unicode;s.lastIndex=0}var X=[];while(1){var S=p(s,d);if(null===S)break;if(X.push(S),!y)break;var w=String(S[0]);""===w&&(s.lastIndex=c(d,u(s.lastIndex),T))}for(var M="",k=0,D=0;D=k&&(M+=d.slice(k,E)+C,k=E+P.length)}return M+d.slice(k)}];function O(t,n,r,o,u,a){var s=r+t.length,c=o.length,p=y;return void 0!==u&&(u=i(u),p=h),e.call(a,p,(function(e,i){var a;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(s);case"<":a=u[i.slice(1,-1)];break;default:var p=+i;if(0===p)return e;if(p>c){var l=d(p/10);return 0===l?e:l<=c?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}a=o[p-1]}return void 0===a?"":a}))}}))},5692:function(t,e,n){var r=n("c430"),o=n("c6cd");(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.6.5",mode:r?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,e,n){var r=n("d066"),o=n("241c"),i=n("7418"),u=n("825a");t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(u(t)),n=i.f;return n?e.concat(n(t)):e}},5899:function(t,e){t.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},"58a8":function(t,e,n){var r=n("1d80"),o=n("5899"),i="["+o+"]",u=RegExp("^"+i+i+"*"),a=RegExp(i+i+"*$"),s=function(t){return function(e){var n=String(r(e));return 1&t&&(n=n.replace(u,"")),2&t&&(n=n.replace(a,"")),n}};t.exports={start:s(1),end:s(2),trim:s(3)}},"5c6c":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"60da":function(t,e,n){"use strict";var r=n("83ab"),o=n("d039"),i=n("df75"),u=n("7418"),a=n("d1e7"),s=n("7b0b"),c=n("44ad"),p=Object.assign,l=Object.defineProperty;t.exports=!p||o((function(){if(r&&1!==p({b:1},p(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol(),o="abcdefghijklmnopqrst";return t[n]=7,o.split("").forEach((function(t){e[t]=t})),7!=p({},t)[n]||i(p({},e)).join("")!=o}))?function(t,e){var n=s(t),o=arguments.length,p=1,l=u.f,f=a.f;while(o>p){var d,h=c(arguments[p++]),y=l?i(h).concat(l(h)):i(h),m=y.length,v=0;while(m>v)d=y[v++],r&&!f.call(h,d)||(n[d]=h[d])}return n}:p},6547:function(t,e,n){var r=n("a691"),o=n("1d80"),i=function(t){return function(e,n){var i,u,a=String(o(e)),s=r(n),c=a.length;return s<0||s>=c?t?"":void 0:(i=a.charCodeAt(s),i<55296||i>56319||s+1===c||(u=a.charCodeAt(s+1))<56320||u>57343?t?a.charAt(s):i:t?a.slice(s,s+2):u-56320+(i-55296<<10)+65536)}};t.exports={codeAt:i(!1),charAt:i(!0)}},"65f0":function(t,e,n){var r=n("861d"),o=n("e8b5"),i=n("b622"),u=i("species");t.exports=function(t,e){var n;return o(t)&&(n=t.constructor,"function"!=typeof n||n!==Array&&!o(n.prototype)?r(n)&&(n=n[u],null===n&&(n=void 0)):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},"69f3":function(t,e,n){var r,o,i,u=n("7f9a"),a=n("da84"),s=n("861d"),c=n("9112"),p=n("5135"),l=n("f772"),f=n("d012"),d=a.WeakMap,h=function(t){return i(t)?o(t):r(t,{})},y=function(t){return function(e){var n;if(!s(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}};if(u){var m=new d,v=m.get,b=m.has,g=m.set;r=function(t,e){return g.call(m,t,e),e},o=function(t){return v.call(m,t)||{}},i=function(t){return b.call(m,t)}}else{var O=l("state");f[O]=!0,r=function(t,e){return c(t,O,e),e},o=function(t){return p(t,O)?t[O]:{}},i=function(t){return p(t,O)}}t.exports={set:r,get:o,has:i,enforce:h,getterFor:y}},"6eeb":function(t,e,n){var r=n("da84"),o=n("9112"),i=n("5135"),u=n("ce4e"),a=n("8925"),s=n("69f3"),c=s.get,p=s.enforce,l=String(String).split("String");(t.exports=function(t,e,n,a){var s=!!a&&!!a.unsafe,c=!!a&&!!a.enumerable,f=!!a&&!!a.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),p(n).source=l.join("string"==typeof e?e:"")),t!==r?(s?!f&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:u(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||a(this)}))},7156:function(t,e,n){var r=n("861d"),o=n("d2bb");t.exports=function(t,e,n){var i,u;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(u=i.prototype)&&u!==n.prototype&&o(t,u),t}},7418:function(t,e){e.f=Object.getOwnPropertySymbols},"746f":function(t,e,n){var r=n("428f"),o=n("5135"),i=n("e538"),u=n("9bf2").f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});o(e,t)||u(e,t,{value:i.f(t)})}},7839:function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7aa9":function(t,e,n){var r=n("122c");t.exports=r},"7b0b":function(t,e,n){var r=n("1d80");t.exports=function(t){return Object(r(t))}},"7c73":function(t,e,n){var r,o=n("825a"),i=n("37e8"),u=n("7839"),a=n("d012"),s=n("1be4"),c=n("cc12"),p=n("f772"),l=">",f="<",d="prototype",h="script",y=p("IE_PROTO"),m=function(){},v=function(t){return f+h+l+t+f+"/"+h+l},b=function(t){t.write(v("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){var t,e=c("iframe"),n="java"+h+":";return e.style.display="none",s.appendChild(e),e.src=String(n),t=e.contentWindow.document,t.open(),t.write(v("document.F=Object")),t.close(),t.F},O=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(e){}O=r?b(r):g();var t=u.length;while(t--)delete O[d][u[t]];return O()};a[y]=!0,t.exports=Object.create||function(t,e){var n;return null!==t?(m[d]=o(t),n=new m,m[d]=null,n[y]=t):n=O(),void 0===e?n:i(n,e)}},"7db0":function(t,e,n){"use strict";var r=n("23e7"),o=n("b727").find,i=n("44d2"),u=n("ae40"),a="find",s=!0,c=u(a);a in[]&&Array(1)[a]((function(){s=!1})),r({target:"Array",proto:!0,forced:s||!c},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},"7f9a":function(t,e,n){var r=n("da84"),o=n("8925"),i=r.WeakMap;t.exports="function"===typeof i&&/native code/.test(o(i))},"825a":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},"83ab":function(t,e,n){var r=n("d039");t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8418:function(t,e,n){"use strict";var r=n("c04e"),o=n("9bf2"),i=n("5c6c");t.exports=function(t,e,n){var u=r(e);u in t?o.f(t,u,i(0,n)):t[u]=n}},"861d":function(t,e){t.exports=function(t){return"object"===typeof t?null!==t:"function"===typeof t}},8875:function(t,e,n){var r,o,i;(function(n,u){o=[],r=u,i="function"===typeof r?r.apply(e,o):r,void 0===i||(t.exports=i)})("undefined"!==typeof self&&self,(function(){function t(){if(document.currentScript)return document.currentScript;try{throw new Error}catch(l){var t,e,n,r=/.*at [^(]*\((.*):(.+):(.+)\)$/gi,o=/@([^@]*):(\d+):(\d+)\s*$/gi,i=r.exec(l.stack)||o.exec(l.stack),u=i&&i[1]||!1,a=i&&i[2]||!1,s=document.location.href.replace(document.location.hash,""),c=document.getElementsByTagName("script");u===s&&(t=document.documentElement.outerHTML,e=new RegExp("(?:[^\\n]+?\\n){0,"+(a-2)+"}[^<]*\r\n\r\n\r\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./VueCronEditorBootstrap.vue?vue&type=template&id=0a36a7b8&\"\nimport script from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\nexport * from \"./VueCronEditorBootstrap.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","'use strict';\nvar $ = require('../internals/export');\nvar isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toLength = require('../internals/to-length');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar createProperty = require('../internals/create-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 });\n\nvar SPECIES = wellKnownSymbol('species');\nvar nativeSlice = [].slice;\nvar max = Math.max;\n\n// `Array.prototype.slice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.slice\n// fallback for not array-like ES3 strings and DOM objects\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n slice: function slice(start, end) {\n var O = toIndexedObject(this);\n var length = toLength(O.length);\n var k = toAbsoluteIndex(start, length);\n var fin = toAbsoluteIndex(end === undefined ? length : end, length);\n // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible\n var Constructor, result, n;\n if (isArray(O)) {\n Constructor = O.constructor;\n // cross-realm fallback\n if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {\n Constructor = undefined;\n } else if (isObject(Constructor)) {\n Constructor = Constructor[SPECIES];\n if (Constructor === null) Constructor = undefined;\n }\n if (Constructor === Array || Constructor === undefined) {\n return nativeSlice.call(O, k, fin);\n }\n }\n result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));\n for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);\n result.length = n;\n return result;\n }\n});\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/package.json b/package.json index e7ef9a0..f607b33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-cron-editor-bootstrap", - "version": "0.1.2", + "version": "0.1.3", "private": false, "main": "dist/vueCronEditorBootstrap.umd.js", "module": "dist/vueCronEditorBootstrap.esm.js",